
/* -------------------------------------------------
    1. ROOT VARIABLES
------------------------------------------------- */
:root {
  --bg-dark: #080808;
  --accent-bronze: #c5a059;
  --text-white: #ffffff;
  --text-grey: #a0a0a0;
  --border-thin: 1px solid rgba(255, 255, 255, 0.03);
}

/* -------------------------------------------------
    2. GLOBAL RESET + TYPOGRAPHY
------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand-font {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 4rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

/* Small uniform heading */
.global-heading,
h1,
h2,
.about-title,
.about-heading,
.services-section h2,
.projects-section h2,
.testimonials-section h2 {
  font-size: 3rem;
  line-height: 1.15;
  font-family: "Raleway", sans-serif;
}

 .bg-grid {
      position: relative;
    }

    .bg-grid::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(197, 160, 89, 0.12) 1px,
          transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.12) 1px, transparent 1px);
      background-size: 100px 100px;
      opacity: 0.8;
      pointer-events: none;
      z-index: 0;
    }



/* -------------------------------------------------
    3. HEADER
------------------------------------------------- */
/* --- 2. HEADER --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: var(--bg-dark);
  backdrop-filter: blur(12px);
  /* border-bottom: var(--border-thin); */
}

.logo-container img {
  height: 60px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-item {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-grey);
  position: relative;
}

/* default: desktop view */
.desktop-only {
  display: flex;
  /* or inline-flex / block depending on your layout */
  align-items: center;
}

.mobile-only {
  display: none;
}

/* mobile breakpoint */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
    margin-top: -20px;
    /* or flex if you want them inline with gap */
  }

  /* optional: make sure dropdown doesn't randomly show on mobile */
  .dropdown-menu {
    display: none !important;
  }
}

/* Highlight active page */
.nav-item.active {
  color: var(--accent-bronze) !important;
  /* font-weight: 600; */
}

/* Hover effect on top-level nav */
.nav-item:hover {
  color: var(--accent-bronze) !important;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: flex;
}

/* Dropdown button behaves like nav-item */
.dropdown-btn {
  display: inline-block;
}

/* --- DROPDOWN MENU STYLES --- */
.dropdown-parent {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -15px;
  /* Align slightly left */
  background: rgba(10, 11, 14, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid var(--accent-bronze);

  width: 180px;
  padding: 15px 0;
  display: none;
  /* Hidden by default */
  flex-direction: column;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

@media (max-width: 900px) {
  /* Divider below Contact Us */
  .nav-links a[href="contact.html"] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 15px;
    margin-bottom: px;
    display: block;
  }

  /* Reduce spacing between Realty & Arte */
  .nav-links a[href*="uctrealty"] {
    margin-top: -20px;
  }

  .nav-links a[href*="uctarte"] {
    margin-top: -25px !important;
  }
}

/* Show on Hover */
.dropdown-parent:hover .dropdown-menu {
  display: flex;
}

.dropdown-link {
  padding: 12px 25px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-grey);
  transition: 0.3s;
}

.dropdown-link:hover {
  background: rgba(255, 255, 255, 0.05);
  /*color: var(--accent-bronze);*/
  padding-left: 30px;
  /* Slight shift effect */
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
}

.bar {
  height: 2px;
  width: 100%;
  background: #fff;
  margin-bottom: 6px;
}

/* --- 3. HERO SLIDER --- */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

/* Grid Overlay */
/* ====================================================
   UNIVERSAL IMAGE GRID OVERLAY (MATCHES HERO GRID)
   Use class: .img-grid-wrapper
=====================================================*/

.img-grid-wrapper {
    position: relative;
    width: 100%;
    height: 500px;          /* change height if needed */
    overflow: hidden;
}

.img-grid-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Grid overlay */
.img-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 1fr);
    pointer-events: none;
}

.img-grid-block {
    border: 1px solid rgba(255,255,255,0.04);     /* soft elegant grid */
    transition: background-color 1s ease;
}

.img-grid-block.active-glow {
    background-color: rgba(197, 160, 89, 0.06);   /* same bronze glow tone */
}

/* Mobile – grid OFF for performance */
@media (max-width: 768px) {
    .img-grid-overlay { display: none; }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(7, 1fr);
    pointer-events: none;
}
.grid-block {
    border: 1px solid rgba(200, 200, 200, 0.03);
    transition: background-color 1s ease;
}
.grid-block.active-glow {
    background-color: rgba(53, 52, 52, 0.08);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}
.slide.active { opacity: 1; }
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-dark) 0%, transparent 60%);
    background-color: rgba(0,0,0,0.3);
}
.slider-progress {
    display: none !important;
}

.hero-content {
    position: absolute;
    bottom: 15%;
    margin-left: 60px;
    z-index: 10;
    max-width: 800px;
}
.hero-subtitle {
    color: var(--accent-bronze);
    letter-spacing: 6px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}
.hero-title {
    font-size: 4rem;
    font-family: 'Raleway',serif;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out 0.5s;

}
.slide.active .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.slider-progress {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    z-index: 20;
}
.progress-bar {
    width: 100px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    position: relative;
}
.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--accent-bronze);
    width: 0%;
    transition: width 5s linear;
}



/* ===============================
   ABOUT SPLIT SECTION (PREMIUM)
================================*/
.about-split-section {
  background: #000;
  padding: 60px 0px;
  
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT IMAGE */
.about-left {
  flex: 1;
}

.about-left img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.9;
}

/* RIGHT CONTENT */
.about-right {
  flex: 1;
  max-width: 550px;
}

.about-right h2 {
  font-size: 3rem;
  font-family: "Raleway", sans-serif;
  margin-bottom: 25px;
}

.about-right p {
  color: #bbb;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ===============================
   RESPONSIVE
================================*/
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-right {
    text-align: center;
    padding: 0px 30px;
      
    
  }

  .about-right h2 {
    font-size: 2rem;
  }
}


/* -------------------------------------------------
    6. SERVICES
------------------------------------------------- */
.services-section {
  background: var(--bg-panel);
  padding: 100px 60px;
  text-align: center;
}

.srv-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.srv-card {
  background: var(--bg-dark);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.srv-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-bronze);
}

.srv-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* -------------------------------------------------
    7. PROJECTS — STATIC INFO + GALLERY MODAL
------------------------------------------------- */

.projects-section .carousel-wrapper {
  max-width: 1500px;   /* adjust if needed */
  margin: 50px auto 50px auto;
}

.projects-section {
  padding: 0px 60px;
  text-align: center;
  position: relative;
}

/* WRAPPER */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  padding: 20px 0;
}

/* TRACK */
.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: max-content;
}

/* PROJECT CARD */
.project-card {
  position: relative;
  width: 450px;
  height: 500px;
  cursor: pointer;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* IMAGE — STATIC, NO HOVER */
.p-img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: none !important;
}

/* INFO ALWAYS AT BOTTOM */
.p-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: #000 !important;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;

  /* remove hover slide */
  transition: none !important;
}

/* TEXT */
.p-name {
  font-size: 1.4rem;
  color: #fff;
  font-family: "Raleway", sans-serif;
  margin-bottom: 5px;
}

.p-client {
  color: var(--accent-bronze);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.p-loc {
  color: #ccc;
  font-size: 12px;
  display: flex;
  gap: 5px;
}

.p-arch {
  color: #aaa;
  font-size: 12px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 8px;
}

/* Hide Swiper's default big arrow icon */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/* ============================================
   FINAL FIX — MOBILE PROJECT CARDS & ARROWS
============================================ */
/* ============================================
   FULLY RESPONSIVE — PROJECT CARDS (MOBILE)
=============================================== */
@media (max-width: 768px) {
  .projects-section {
    padding: 60px 20px !important;
    text-align: center;
  }

  /* Make each card fit mobile width */
  .project-card {
    width: 100% !important;
    max-width: 360px;
    height: 420px !important;
    margin: 0 auto !important;
    border-radius: 0px;
  }

  /* Image area adjusts proportionally */
  .p-img {
    height: 65% !important;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  /* Info area stays readable */
  .p-info {
    padding: 18px !important;
    gap: 5px !important;
  }

  .p-name {
    font-size: 1.2rem !important;
  }

  .p-client {
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
  }

  .p-loc,
  .p-arch {
    font-size: 11px !important;
  }

  /* Track spacing */
  .carousel-track {
    gap: 14px !important;
    /*padding: 0 5px;*/
  }

  /* Fix wrapper so slider centers properly */
  .carousel-wrapper {
    padding: 10px 0 !important;
    overflow: hidden;
  }

  /* Center arrows & resize */
  .carousel-arrow {
    top: 58% !important;
    transform: translateY(-50%);
    width: 36px !important;
    height: 36px !important;
    border-radius: 0%;
    /* background: rgba(0, 0, 0, 0.4); */
    /* backdrop-filter: blur(3px); */
  }

  .arrow-left {
    left: 10px !important;
  }

  .arrow-right {
    right: 10px !important;
  }
}

/* -------------------------------------------------
    SLIDER ARROWS
------------------------------------------------- */

/* -------------------------------------------------
    FEATURED PROJECTS ARROWS — MOVE BELOW & CENTER
------------------------------------------------- */

/* -------------------------------------------------
   FEATURED PROJECTS — ARROWS BELOW + CENTER
------------------------------------------------- */
/* -----------------------------------------------
   FEATURED PROJECTS — ARROWS LEFT & RIGHT CENTERED
-----------------------------------------------*/
.carousel-arrow {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: var(--accent-bronze);
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  transition: 0.3s;
  z-index: 5;
}

/* .carousel-arrow:hover {
    background: var(--accent-bronze);
    color: #000;
} */

.arrow-left {
  left: 5px;
}

/* adjust this to move more inside (e.g. -30px or 10px) */
.arrow-right {
  right: 5px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -45px);
  left: auto;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -45px);
  right: auto;
}

/* ===== OPTION B: arrows outside the slider on desktop ===== */
@media (min-width: 769px) {
  /* Let arrows go outside instead of being clipped */
  .projects-section .carousel-wrapper {
    overflow: visible;
  }

  /* Vertical alignment tweak */
  .projects-section .carousel-arrow {
    top: 50%;
    transform: translateY(-50%);
  }

  /* Push arrows outside left/right */
  .projects-section .arrow-left {
    left: -60px;
    /* adjust: -70px / -80px if needed */
  }

  .projects-section .arrow-right {
    right: -60px;
  }
}

/* -------------------------------------------------
   MOBILE FIXES FOR PROJECT CAROUSEL
-------------------------------------------------- */
@media (max-width: 768px) {
  .p-img {
    height: 65% !important;
  }

  /* Fix the track overflow so cards stay visible */
  .carousel-track {
    gap: 20px !important;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, -5px);
    left: auto;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, -5px);
    right: auto;
  }
}

/* -------------------------------------------------
    8. GALLERY MODAL
------------------------------------------------- */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  z-index: 2000;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* IMAGE */
.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-img {
  max-width: 100%;
  max-height: 80vh;
  border: 1px solid #333;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

/* NEXT / PREV BUTTONS */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;

  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #666;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-nav:hover {
  background: var(--accent-bronze);
  border-color: var(--accent-bronze);
}

.prev-btn {
  left: -80px;
}

.next-btn {
  right: -80px;
}

/* CLOSE BUTTON */
.close-modal {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 2001;
  transition: 0.3s;
}

.close-modal:hover {
  color: var(--accent-bronze);
  transform: rotate(90deg);
}

/* IMAGE COUNTER */
.img-counter {
  margin-top: 15px;
  color: #aaa;
  letter-spacing: 2px;
  font-size: 14px;
}

/* -------------------------------------------------
    MOBILE RESPONSIVE
------------------------------------------------- */

@media (max-width: 768px) {
  /* arrows inside */
  .arrow-prev {
    left: 0;
  }

  .arrow-next {
    right: 0;
  }

  /* modal arrows */
  .modal-nav {
    width: 45px;
    height: 45px;
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }
}

/* ===============================
   CLIENTS SECTION
================================*/
.clients-section {
  padding: 60px 0;
  text-align: center;
  /* background: #0F1115; */
}

.clients-title {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
}

.clients-container {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

/*.client-voices-heading-wrap {*/
/*  margin-top: -75px;*/
/*   margin-bottom: 80px;*/
/*  text-align: center;*/
/*  width: 100%;*/
/*}*/
.client-voices-heading-wrap {
  margin-top: -75px;
  margin-bottom: 80px;
  text-align: center;
  width: 100%;
}

@media (max-width: 768px) {
  .client-voices-heading-wrap {
    margin-top: 0;
    margin-bottom: 40px;
    padding-top: 60px;
  }

  .test-viewport {
    padding-top: 30px;
  }
}


/* ===============================
   SINGLE LOGO
================================*/
.client-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-slide img {
  width: 110px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* FINAL CLIENTS FIX — OVERRIDE ALL OLD CSS */
/* ===============================
   CLIENTS FIX — FINAL VERSION
================================*/

/* Outer wrapper (no change) */
.clients-slider {
  width: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.client-slide {
  flex: 0 0 auto;
}

.client-slide img {
  width: 110px;
  filter: grayscale(100%);
  opacity: 0.8;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* -------------------------------------------------
    9. FOOTER
------------------------------------------------- */
footer {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  border-top: var(--border-thin);
  color: var(--text-grey);
  background-color: var(--bg-dark);
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--accent-bronze);
}

.center-align {
  text-align: center;
  width: 100%;
}

/* -------------------------------------------------
    10. RESPONSIVE
------------------------------------------------- */
@media (max-width: 768px) {
  .global-heading,
  h1,
  h2 {
    font-size: 1.9rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  header {
    padding: 20px 30px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .split-hero {
    flex-direction: column-reverse;
    height: auto;
  }

  .hero-left {
    padding: 55px 15px;
  }

  .hero-right {
    height: 70vh;
  }

  .services-section,
  .projects-section {
    padding: 60px 20px;
  }

  .srv-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    width: 100%;
  }

  footer {
    flex-direction: column;
    gap: 30px;
    padding: 40px 30px;
  }
}

/* --------------------------------------
   CONTACT SECTION (Only this part)
--------------------------------------- */

/* ------------------------------
   GLOBAL
------------------------------ */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body {
    background: #0F1115;
    color: #fff;
    line-height: 1.6;
} */

a {
  text-decoration: none;
  color: #c5a059;
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

/* Accent Variables */
:root {
  --accent: #c5a059;
  --panel: #181a1f;
  --dark: #0f1115;
}

/* ------------------------------
   HEADER
------------------------------ */
/* .header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 20;
}

.header img {
    height: 45px;
}

.nav a {
    margin: 0 18px;
    color: #fff;
    font-weight: 500;
}

.nav .active {
    color: var(--accent);
}

/* Hamburger (mobile only) 
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
} */

/* ------------------------------
   CONTACT CONTAINER
------------------------------ */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 60px;
  align-items: flex-start;
}

/* ---- LEFT SIDE ---- */
.contact-left h1 {
  font-family: "Playfair Display", serif;
  font-size: 45px;
}

.contact-left p {
  color: #b5b5b5;
  margin: 15px 0 25px;
  max-width: 450px;
}

.c-box {
  background: var(--panel);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.c-box h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

.c-box a {
  color: var(--accent);
  font-size: 12.5px;
}

/* Social Icons in 4th Row */
.social-icons-row {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.icon-circle img {
  width: 32px;
  height: 32px;
  filter: invert(1);
  opacity: 0.8;
  transition: 0.3s;
}

.icon-circle img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ---- RIGHT FORM ---- */
.contact-form-area h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
}

.contact-form-area p {
  color: #bdbdbd;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  background: #111317;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 6px;
}

.contact-form input::file-selector-button {
  background: var(--accent);
  border: 0;
  padding: 7px 14px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.two {
  display: flex;
  gap: 15px;
}

.two input {
  flex: 1;
}

.upload-field {
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  border: 0;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  opacity: 0.85;
}

/* FOOTER */
.contaact-footer {
  background: #181a1f;
  padding: 50px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.f-links {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin: 20px 0;
}

.f-links a {
  color: #fff;
}

/* RESPONSIVE */
/* --- FIX: Prevent Get in Touch heading from hiding under header on mobile --- */
@media (max-width: 768px) {
  .contact-wrapper {
    padding-top: 170px !important;
    /* Adjusted to match your header height */
  }
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 60px 30px;
  }
}

/* ------------------------------
   FOOTER
------------------------------ */
.footer {
  padding: 50px;
  text-align: center;
  background: var(--panel);
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer img {
  margin-bottom: 10px;
}

.f-row p {
  color: #bdbdbd;
  margin-bottom: 25px;
}

.f-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.f-links a {
  color: #fff;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 1000px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 60px 30px;
  }
}

@media (max-width: 650px) {
  .nav {
    display: none;
  }

  /* .hamburger {
        display: flex;
    } */

  .header {
    padding: 18px 25px;
  }

  .two {
    flex-direction: column;
    gap: 0;
  }
}

/* -------------------------------------------------
   JOIN OUR TEAM - FORM SECTION
-------------------------------------------------- */
.join-team-section {
  padding: 80px 20px;
  background: var(--bg-panel);
  color: #fff;
  text-align: center;
}

.join-title {
  font-size: 32px;
  font-family: "Playfair Display", serif;
}

.join-underline {
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 10px auto 25px auto;
}

.join-subtext {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 40px;
}

/* FORM GRID */
.join-form {
  max-width: 800px;
  margin: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns */
  gap: 25px;
}

/* Inputs */
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 1px solid #bbb;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  outline: none;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #bbb;
}

/* SPAN 2 COLUMNS */
.full-row {
  grid-column: span 2;
}

/* FILE INPUT */
.file-wrapper {
  border: 1px solid #bbb;
  border-radius: 8px;
  padding: 12px;
  color: #bbb;
}

.file-wrapper input[type="file"] {
  width: 100%;
  color: #fff;
}

.file-wrapper label {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #ccc;
}

/* SUBMIT BUTTON */
.submit-btn {
  grid-column: span 2;
  margin-top: 30px;
  padding: 12px 36px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--accent-bronze);
  color: var(--accent-bronze);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: var(--accent-bronze);
  color: #000;
}

/*---------------------------------------------
 ---------------- Testimonials -----------------
 --------------------------------------------- */
.testimonials-section {
  padding: 100px 60px;
  background: var(--bg-panel);
  /* Dark Panel Background */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.client-voices-heading {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  /* Stronger & more premium */
  letter-spacing: 1px;
  font-size: 3rem;
  color: #fff;
}

.test-nav {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.test-arrow {
  width: 50px;
  height: 50px;
  /* border: 1px solid #C5A059; */
  color: #c5a059;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

/* .test-arrow:hover {
    background: #C5A059;
    color: #FFFFFF;
} */

.test-viewport {
  overflow: hidden;
  width: 100%;
}

/* Testimonials Container */
.test-viewport {
  width: 100%;
  overflow: hidden;
}

.test-card {
  width: 350px;
  /* Fixed Width per card */
  background: var(--bg-dark);
  /* Darker card bg */
  padding: 40px;
  border-left: 2px solid #c5a059;
  flex-shrink: 0;
  /* Prevent shrinking */
}

.quote-icon {
  font-size: 60px;
  color: #c5a059;
  font-family: serif;
  line-height: 0.5;
  margin-bottom: 20px;
}

.quote-text {
  font-size: 1rem;
  color: #ccc;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 30px;
  min-height: 80px;
  font-family: "Manrope", sans-serif;
}

.quote-info {
  display: flex;
  flex-direction: column;
}

.quote-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Manrope", sans-serif;
}

.quote-role {
  font-size: 0.8rem;
  color: #888;
  font-family: "Manrope", sans-serif;
  margin-top: 5px;
}
/* Track must be horizontal */
/* === TESTIMONIALS — FINAL GAP FIX === */
.test-track {
  display: flex;
  gap: 30px !important;
  padding: 20px 60px;
 
}

.test-card {
  margin-right: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 20px;
  }

  .test-card {
    width: 300px;
    padding: 30px;
  }

  .test-track{
    padding: 0px 30px;
  }
}


