/* -------------------------------------------------
    1. ROOT VARIABLES
------------------------------------------------- */
:root {
  --bg-dark: #080808;
  --bg-panel: #16181d;
  --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;
}

/* Hero title */
.hero-title {
  font-size: 4rem;
  margin-bottom: 10px;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

/* -------------------------------------------------
    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;
}

/* -------------------------------------------------
    4. HERO SECTION
------------------------------------------------- */
.split-hero {
  height: 100vh;
  display: flex;
  padding-top: 85px;
}

.hero-left {
  flex: 1;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-slide {
  display: none;
  animation: fadeSlideUp 1s ease;
}

.text-slide.active {
  display: block;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-num {
  color: var(--accent-bronze);
  border-bottom: 1px solid var(--accent-bronze);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.hero-subtitle {
  color: var(--text-grey);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 3px;
}

.hero-desc {
  max-width: 500px;
  margin: 20px 0 20px;
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.6;
}

.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 {
    display: none;
  }
}

.hero-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;
}

@media (max-width: 768px) {
  #gridOverlay,
  .hero-grid-overlay {
    display: none !important;
  }
}

.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);
}

.hero-btn {
  border: 1px solid var(--accent-bronze);
  padding: 12px 32px;
  color: var(--accent-bronze);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
}

.hero-btn:hover {
  background: var(--accent-bronze);
  color: #000;
}

.hero-controls {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

/* .ctrl-btn {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

.ctrl-btn:hover {
    color: var(--accent-bronze);
    border-color: var(--accent-bronze);
} */

/* Hero Right */
.hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.img-slide {
  position: absolute;
  /* width: 80%;
    margin-left:100px; */
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: 1s opacity, 6s transform;
}

@media (min-width: 768px) {
  .img-slide {
    width: 60%;
    margin-left: 280px;
  }
}

.img-slide.active {
  opacity: 1;
  transform: scale(1);
}

.img-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

/* MOBILE: Full background hero section */
@media (max-width: 768px) {
  /* SPLIT HERO MOBILE FIX */
  .split-hero {
    flex-direction: column-reverse;
    height: auto;
    min-height: 100vh;
    padding-top: 80px;
  }

  .hero-left {
    padding: 60px 30px;
    min-height: auto;
    flex: 0 0 auto;
  }

  .hero-right {
    height: 50vh;
    width: 100%;
    flex: 0 0 auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

/* ===========================
   FULL HERO — SINGLE BACKGROUND
=========================== */
.full-hero {
  height: 80vh;
  width: 100%;
  background-image: url("img/construction_uct.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;

  /* REMOVE these */
  /* display: flex; */
  /* align-items: center; */
  /* padding-left: 80px; */
}

/* Dark overlay */
.full-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  max-width: 600px;
  position: absolute;
  bottom: 90px;   /* distance from bottom */
  left: 80px;    /* distance from right */
  text-align: left;
  z-index: 4;
}

.text-slide {
  display: none;
  animation: fadeSlideUp 1s ease;
  position: relative;
  z-index: 3 !important;
}

.text-slide.active {
  display: block;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 3.5rem;
  color: #fff;
}

.hero-desc {
  margin: 20px 0;
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-controls {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  display:none;
}

.ctrl-btn {
  width: 45px;
  height: 45px;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

.ctrl-btn:hover {
  color: var(--accent-bronze);
  /* border-color: var(--accent-bronze); */
}

/* Mobile */
@media (max-width: 768px) {
  .full-hero {
    padding-left: 30px;
    text-align: left;
    background-image: url("img/wire.png");
  }
    .hero-content {
    left: 20px;
    bottom: 150px;
    text-align: left;
}
  .hero-title {
    font-size: 2.6rem;
  }
}

/* -------------------------------------------------
    5. ABOUT SECTION
------------------------------------------------- */
.about-bg-section {
  position: relative;
  height: 80vh;
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1500");
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.912);
}

.about-bg-content {
  position: relative;
  max-width: 700px;
}

.about-title {
  margin-bottom: 20px;
  font-size: 48px;
}

.about-text {
  color: #ddd;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

.about-btn {
  padding: 14px 35px;
  /* border: 1px solid var(--accent-bronze); */
  color: var(--accent-bronze);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
}

.about-btn:hover {
  /* background: var(--accent-bronze); */
  color: #ffffff;
}

/* -------------------------------------------------
    FULL WIDTH IMAGE BELOW ABOUT SECTION
------------------------------------------------- */
.full-image-section {
  width: 100%;
  height: 70vh;
  /* adjust height as needed */
  overflow: hidden;
  margin-top: 0;
}

.full-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* For smaller devices */
@media (max-width: 768px) {
  .full-image-section {
    height: 45vh;
  }
}

/* -------------------------------------------------
    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: 100px 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: 10px 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;;
  text-align: center;
  width: 100%;
}

/* ===============================
   SINGLE LOGO
================================*/
.slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.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;
}

.slide {
  flex: 0 0 auto;
}

.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;
  }
}



