/* Basic reset and variables */
:root{
  --primary: #111721; /* dark */
  --accent: #dca536;  /* accent gold */
  --white: #ffffff;
  --gap: 18px;
  --container: 1200px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0; font-family:Inter,system-ui,Segoe UI,Arial; color:var(--primary); background:#f7f7f8; -webkit-font-smoothing:antialiased}
a{color:inherit; text-decoration:none}

/* Header */
.site-header{position:fixed; inset:0 auto auto 0; width:100%; z-index:120; background:var(--primary); color:var(--white)}
.container{max-width:var(--container); margin:0 auto; padding:14px 20px}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:16px}

/* Logo */
.logo{display:flex; align-items:center; gap:12px; color:var(--white); text-decoration:none}
.logo-img{height:50px; width:auto; display:block; border-radius:6px;}

/* (brand-text removed by default but preserved style if needed) */
.brand-text{font-weight:700; letter-spacing:0.4px; text-transform:lowercase; font-size:18px}

/* Right actions */
.header-actions{display:flex; align-items:center; gap:12px}
.socials{display:flex; gap:8px; align-items:center}
.icon{display:inline-flex; width:36px; height:36px; align-items:center; justify-content:center; border-radius:8px; background:rgba(255,255,255,0.06)}
.icon svg{display:block}
.phone a{color:var(--white); font-weight:700}

/* Hamburger */
.hamburger{display:flex; gap:8px; align-items:center; background:transparent; color:var(--white); border:1px solid rgba(255,255,255,0.06); padding:8px 12px; border-radius:8px; cursor:pointer; font-weight:700}
.hamburger .menu-label{letter-spacing:1px}

/* Overlay (full-screen menu) */
.menu-overlay{
  position:fixed; inset:0; background:rgba(17,23,33,0.96); color:var(--white); display:none; align-items:center; justify-content:center; z-index:200; padding:40px;
  transition:opacity .22s ease;
}
.menu-overlay.open{display:flex}
.overlay-close{
  position:absolute; top:18px; right:20px; background:transparent; color:var(--white); border:0; font-size:28px; cursor:pointer;
}

/* Overlay content center */
.overlay-content{display:flex; flex-direction:column; align-items:center; gap:28px; text-align:center; width:100%; max-width:900px; padding:28px}
.overlay-list{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:18px}
.overlay-list a, .overlay-list button{font-size:34px; font-weight:700; color:var(--white); background:transparent; border:0; cursor:pointer}
.overlay-list a:hover, .overlay-list button:hover{color:var(--accent)}

/* Overlay submenu */
.overlay-has-sub{display:flex; flex-direction:column; gap:12px; align-items:center}
.overlay-submenu{list-style:none; margin:0; padding:0; display:none; flex-direction:column; gap:10px}
.overlay-submenu a{font-size:18px; color:#f1f1f1}
.overlay-submenu a:hover{color:var(--accent)}
.overlay-sub-toggle[aria-expanded="true"] + .overlay-submenu{display:flex}

/* overlay meta (social + phone) */
.overlay-meta{margin-top:6px; color:#e6e6e6; font-size:16px}
.overlay-meta a{color:var(--white); font-weight:700}

/* Responsive rules */
@media (max-width:980px){
  /* we removed desktop nav entirely; keep responsive behavior simple */
}
@media (max-width:560px){
  .brand-text{font-size:16px}
  .overlay-list a, .overlay-list button{font-size:28px}
}

/* Accessibility small helpers */
.sr-only{position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden}


/* === New additions === */

/* Smooth hover background color for social icons and hamburger */
.icon,
.hamburger {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* On hover: gold background, keep icons/text white */
.icon:hover,
.hamburger:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* Keep SVG icons and text white */
.icon svg path,
.hamburger svg rect,
.hamburger .menu-label {
  fill: var(--white);
  color: var(--white);
}

/* === Smooth transition for full-screen menu === */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 23, 33, 0.96);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  pointer-events: none;
  transition: all 0.5s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.overlay-phone {
  margin-top: 10px;
}

/* Hide social icons and phone number on small screens */
@media (max-width: 768px) {
  .socials,
  .phone {
    display: none;
  }
}

@media (max-width: 560px) {
  .overlay-submenu a {
    font-size: 16px !important; /* smaller than main menu */
  }
}




/* === Hero Banner Slider with Overlay === */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: auto;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.45)
  ); /* adjustable darkness */
  z-index: 1;
  pointer-events: none; /* allow clicks through */
}

.hero-slider .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-slider .slide.active {
  opacity: 1;
  position: relative;
  z-index: 0;
}

.hero-text {
  position: absolute;
  bottom: 20%;
  left: 8%;
  text-align: left;
  color: #fff;
  z-index: 2;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.5s ease-out forwards;
}

.hero-text h1 {
  font-size: clamp(26px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: 1px;
}


/* Smooth fade-up animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Adjust hero text position for smaller screens */
@media (max-width: 768px) {
  .hero-text {
    bottom: 5%; /* pushes text closer to bottom */
    left: 6%;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-text {
    bottom: 3%; /* even lower on very small phones */
    left: 5%;
  }
}

/* ========================
  CSS: add to end of css/styles.css
  (Keep variable names consistent with your file)
  ======================== */

/* Section spacing */
.video-section {
  padding: 56px 0;
  background: #fff;
  color: var(--primary);
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 36px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

/* Text */
.video-text .hero-subhead {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.08;
  color: var(--primary);
  font-weight: 700;
  color: #dca536;
}
.video-text .lead {
  margin: 0 0 12px;
  font-size: 16px;
  color: #3b4050;
}
.video-text .muted {
  color: #6b7280;
  margin-top: 8px;
  font-size: 15px;
}

/* Video thumbnail button */
.video-thumb .play-btn {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(2,6,23,0.08);
}
.video-thumb .play-btn img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

/* play circle sits centered */
.play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

/* Hover: subtle scale */
.play-btn:hover {
  transform: translateY(-4px);
  transition: transform .22s ease;
}

/* Modal styles */
.video-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 800;
  pointer-events: none;
  opacity: 0;
  transition: opacity .33s ease;
}
.video-modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}

/* backdrop */
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,7,18,0.7);
  backdrop-filter: blur(2px);
  transition: opacity .25s ease;
}

/* modal inner player */
.video-modal-inner {
  position: relative;
  width: min(1100px, 96%);
  max-height: 88vh;
  background: transparent;
  border-radius: 10px;
  z-index: 801;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* close button */
.video-close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 900;
  background: var(--white);
  color: var(--primary);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  border: 0;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(2,6,23,0.12);
}

/* responsive iframe container */
.video-frame {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 ratio */
  position: relative;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

/* Responsive: stack layout on small screens */
/* --- Responsive layout for video section --- */
@media (max-width: 768px) {
  .video-section {
    padding: 50px 20px; /* adds breathing space from edges */
  }

  .video-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .video-text {
    max-width: 600px;
    width: 100%;
  }

  .video-text h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .video-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .video-thumb {
    width: 100%;
    max-width: 90%;
    display: flex;
    justify-content: center;
  }

  .video-thumb img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .play-btn {
    position: relative;
    display: inline-block;
  }

  .play-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
  }

  .play-btn:hover .play-circle {
    transform: translate(-50%, -50%) scale(1.1);
  }
}


/* Stats Section */

.stats-section {
  background: #f7f7f8;
  padding: 40px 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* NEW - item without card */
.stat-item {
  padding: 20px 10px;
}

/* Icons stay same size */
.stat-icon {
  font-size: 48px;
  margin-bottom: 18px;
  color: #dca536;
}

.stat-item h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #111721;
}

.stat-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #111721;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


/* service section */

.services-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 2px;
}

/* Full width grid, no gaps */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 0; /* ensure no spacing between items */
  border: 0;
}

.service-card {
  position: relative;
  display: block;
  height: 400px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease;
  margin: 0; /* remove any extra margins */
  border: 0;
}

.service-card:hover {
  transform: scale(1.03);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.service-content {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  padding: 0 10px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ddd;
}

/* Responsive layout */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    height: 250px;
  }
  .service-content {
    bottom: 20px;
  }
  .services-title {
    font-size: 2.2rem;
    margin: 50px 0 30px;
  }
}


@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    height: 250px;
  }
  .service-content {
    bottom: 20px;
  }
  .services-title {
    font-size: 2.2rem;
    margin: 50px 0 30px;
  }
}

/* gallery seciotn */

/* Gallery Section */
.gallery-section {
  width: 100%;
  padding: 100px 0;
  background-color: #dca536;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
}

.gallery-left,
.gallery-right {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

/* Backgrounds with overlay */
.gallery-left {
  background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('images/gallery-left.jpg');
}

.gallery-right {
  background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('images/gallery-right.jpg');
}

/* Typography */
.gallery-left h2,
.gallery-right h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.gallery-left p,
.gallery-right p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto;
  color: #f0f0f0;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive layout */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-left,
  .gallery-right {
    padding: 60px 30px;
  }

  .gallery-left h2,
  .gallery-right h2 {
    font-size: 2rem;
  }

  .gallery-left p,
  .gallery-right p {
    font-size: 1rem;
  }
}


/* gallaery image carosal */

/* Carousel Section */
/* .project-carousel {
  background: #fff;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
} */

.project-carousel {
  text-align: center;
  padding: 60px 0 30px;
  background: #fff;
}

.carousel-btn {
  display: inline-block;
  padding: 14px 38px;
  font-size: 1.8rem; /* same size as heading */
  font-weight: 700;
  color: var(--primary);
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 999px; /* fully rounded */
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.carousel-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.carousel-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 40px;
}

/* Carousel wrapper hides overflow */
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Track for animation */
.carousel-track {
  display: flex;
  gap: 12px;
  animation: scroll-left 45s linear infinite;
}

.carousel-track img {
  width: 380px;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Keyframes for continuous scroll */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive layout */
@media (max-width: 768px) {
  .carousel-track img {
    width: 260px;
    height: 180px;
  }

  .carousel-title {
    font-size: 1.8rem;
  }
}

/* testimonial section */

/* --- Testimonial Section --- */
.testimonial-section {
  position: relative;
  background-color: #111721; /* elegant darkblue */
  color: #fff;
  text-align: center;
  padding: 90px 20px;
  overflow: hidden;
}

/* subtle luxury background pattern */
.testimonial-overlay {
  position: absolute;
  inset: 0;
  background-image: url('assets/pattern.png'); /* Add your elegant line pattern here */
  background-repeat: repeat;
  background-size: 200px auto;
  opacity: 0.08;
  z-index: 1;
}

.testimonial-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #fff;
  margin: 12px auto 0;
  opacity: 0.8;
}

/* carousel */
.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide {
  display: none;
  max-width: 700px;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1rem;
  color: #f8f8f8;
}

/* arrows */
.carousel-arrow {
  background: transparent;
  border: 0;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  padding: 0 20px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.carousel-arrow:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* responsive */
@media (max-width: 768px) {
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  .carousel-arrow {
    font-size: 1.8rem;
    padding: 0 10px;
  }
}


/* === GLOBAL SECTION SPACING === */


/* === ABOUT SECTION === */
.about-section {
  background: #fff;
  color: var(--primary);
  padding: 10px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-title {
  text-align: center;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: #dca536;
  margin-bottom: 32px;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  font-size: 17px;
  line-height: 1.75;
  color: #2d2d2d;
}

.about-content p {
  margin-bottom: 1px;
  text-align: justify;
}

/* Highlighted closing quote */
.about-highlight {
  grid-column: span 2;
  margin-top: 10px;
  font-size: 20px;
  font-style: italic;
  color: #b7202b;
  font-weight: 700;
  text-align: center;
  background: #f5f5f5;
  padding: 22px 18px;
  border-left: 6px solid #dca536;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .about-section {
    padding: 20px 18px;
  }

  .about-content p {
    text-align: center;
  }

  .about-highlight {
    grid-column: 1;
    font-size: 18px;
    margin-top: 24px;
    padding: 18px;
  }
}

/* === WHY VOYAGH HOMES === */
.why-section {
  background: #111721;
  color: #fff;
  padding: 10px 30px;
}

.why-title {
  text-align: center;
  color: #dca536;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 60px;
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.why-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.why-item i {
  font-size: 42px;
  color: #dca536;
  margin-bottom: 15px;
}

.why-item h3 {
  color: #dca536;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 15px;
  color: #d4d4d4;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .why-section {
    padding: 20px 18px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* === OUR TEAM SECTION === */
.team-section {
  background: #fff;
  color: var(--primary);
  padding: 60px 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-title {
  color: #dca536;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.team-content p {
  font-size: 16px;
  color: #3b4050;
  line-height: 1.7;
  margin-bottom: 12px;
}

.team-content .highlight {
  font-weight: 600;
  color: var(--accent);
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-content {
    text-align: center;
  }

  .team-title {
    font-size: 26px;
  }
}

/* === EXPERT ADVICE SECTION === */
.expert-section {
  background: #fff;
  color: var(--primary);
  padding: 10px 20px;
}

.expert-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.expert-title {
  color: #dca536;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 18px;
}

.expert-intro {
  color: #3b4050;
  font-size: 16px;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto 50px;
}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.expert-item {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 35px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.expert-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.expert-item i {
  font-size: 42px;
  color: #dca536;
  margin-bottom: 14px;
}

.expert-item h3 {
  font-size: 18px;
  color: #dca536;
  font-weight: 700;
  margin-bottom: 10px;
}

.expert-item p {
  font-size: 15px;
  color: #4b4b4b;
  line-height: 1.6;
}

/* Footer */
.expert-footer {
  font-size: 15px;
  color: #3b4050;
  max-width: 760px;
  margin: 40px auto 0;
  line-height: 1.7;
  font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
  .expert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .expert-section {
    padding: 10px 18px;
  }

  .expert-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expert-item {
    padding: 30px 18px;
  }

  .expert-item i {
    font-size: 36px;
  }

  .expert-item h3 {
    font-size: 17px;
  }

  .expert-footer {
    margin-top: 28px;
  }
}

/* === WHERE WE BUILD SECTION === */
.map-section {
  background: #fff;
  color: var(--primary);
  padding: 70px 20px;
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

/* Text Column */
.map-text {
  text-align: left;
}

.map-title {
  color: #dca536;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
}

.map-text p {
  color: #3b4050;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* SVG Map Styling */
.melbourne-map {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.region {
  fill: #e7e7e7;
  stroke: #ccc;
  stroke-width: 2;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.region:hover {
  fill: #dca536;
  transform: scale(1.03);
  cursor: pointer;
}

.map-label {
  fill: #111721;
  font-size: 16px;
  font-weight: 600;
  text-anchor: middle;
  pointer-events: none;
}

.inner-label {
  fill: #fff;
  font-weight: 700;
}

/* === RESPONSIVE FIXES FOR MAP SECTION === */
@media (max-width: 992px) {
  .map-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .map-text {
    text-align: center;
  }

  .melbourne-map {
    display: block;
    max-width: 360px;
    margin: 0 auto; /* centers map horizontally */
  }

  .map-label {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .map-section {
    padding: 50px 18px; /* tighter for mobile */
  }

  .map-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .melbourne-map {
    max-width: 300px;
  }

  .map-text p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* SERVICE PAGES */
/* === SERVICE HERO (IMAGE ONLY) === */
.service-hero {
  width: 100%;
  height: 80vh; /* adjust if you want taller/shorter */
  overflow: hidden;
  position: relative;
  background-color: #111721; /* fallback color */
}

.service-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-hero {
    height: 60vh;
  }
}

@media (max-width: 480px) {
  .service-hero {
    height: 45vh;
  }
}


/* === SERVICE INTRO SECTION === */
.service-intro {
  background: #fff;
  color: var(--primary);
  text-align: center;
  padding: 0px 20px 60px; /* reduced top padding from 60px to 35px */
}

.service-intro .service-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: #dca536; /* gold */
  margin-bottom: 20px;
}

.service-intro .service-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: #3b4050;
}

/* Responsive */
@media (max-width: 768px) {
  .service-intro {
    padding: 45px 18px;
  }

  .service-intro .service-title {
    font-size: 26px;
  }

  .service-intro .service-text {
    font-size: 16px;
    line-height: 1.6;
  }
}


/* === BESPOKE HOME DESIGN SECTION === */
.bespoke-section {
  background: #fff;
  padding: 20px 20px;
  color: var(--primary);
}

.bespoke-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* image a bit smaller than text */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  margin-bottom: 50px;
}

/* === SLIDER === */
.bespoke-slider {
  position: relative;
  width: 90%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 6px solid #dca536; /* elegant gold border */
}

.bespoke-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.bespoke-slide.active {
  opacity: 1;
}

.bespoke-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* === TEXT === */
.bespoke-content {
  text-align: left;
}

.bespoke-title {
  color: #dca536;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 10px;
}

.bespoke-subtitle {
  font-size: 18px;
  color: #111721;
  margin-bottom: 16px;
  font-weight: 600;
}

.bespoke-content p {
  color: #3b4050;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* === Responsive === */
@media (max-width: 900px) {
  .bespoke-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .bespoke-content {
    text-align: center;
  }

  .bespoke-slider {
    max-width: 300px; /* smaller circle on mobile */
    width: 100%;
    margin: 0 auto;
  }
}


/* portfolio page */

/* === PORTFOLIO SECTION === */
.portfolio-section {
  background: #fff;
  color: var(--primary);
  padding: 70px 20px;
}

.portfolio-title {
  text-align: center;
  color: #dca536;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 10px;
}

.portfolio-subtitle {
  text-align: center;
  color: #3b4050;
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* === Masonry Grid === */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  cursor: pointer;
}

/* Asymmetrical sizes on desktop */
.portfolio-item.tall {
  grid-row: span 2;
}

.portfolio-item.wide {
  grid-column: span 2;
}

/* Hover effect */
.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* === Lightbox === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  border: 6px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #dca536;
}

/* === Responsive === */
/* === Responsive === */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr; /* one image per row */
    gap: 14px;
  }

  .portfolio-item,
  .portfolio-item.tall,
  .portfolio-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .portfolio-item img {
    height: auto;
  }

  .portfolio-subtitle {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .portfolio-item {
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .portfolio-section {
    padding: 50px 10px;
  }

  .portfolio-title {
    font-size: 26px;
  }

  .portfolio-subtitle {
    font-size: 15px;
  }
}


/* === CONTACT SECTION === */
.contact-section {
  background: #fff;
  padding: 80px 20px;
  color: var(--primary);
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-title {
  text-align: center;
  color: #dca536;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-intro {
  text-align: center;
  color: #3b4050;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
}

/* Contact Info */
.contact-info {
  text-align: center;
  color: #3b4050;
  margin-bottom: 40px;
}

.contact-info p {
  margin: 8px 0;
  font-size: 15px;
}

.contact-info i {
  color: #dca536;
  margin-right: 10px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #111721;
  margin-bottom: 6px;
  font-size: 15px;
}

.form-group span {
  color: #111721;
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #dca536;
  box-shadow: 0 0 6px rgba(220, 165, 54, 0.4);
  outline: none;
}

.full-width {
  grid-column: 1 / -1;
}

/* Button */
.contact-btn {
  background: #dca536;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 36px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #111721;
  color: #fff;
  transform: translateY(-2px);
}

/* Map Section */
.map-section {
  background: #fff;
  padding: 40px 20px 80px;
}

.map-section .contact-container {
  max-width: 1100px; /* same width as form container */
  margin: 0 auto;
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 60px 18px;
  }

  .contact-btn {
    width: 100%;
  }
}



















/* footer section */

/* --- Footer Styles --- */
.site-footer {
  background-color: #dca536; /* Voyagh gold */
  color: #111721;
  text-align: center;
  padding: 50px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo img {
  height: 100px;
  margin-bottom: 25px;
}

/* Navigation links */
.footer-nav {
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-nav a {
  color: #111721;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffe6e6;
}

.footer-nav span {
  color: #111721;
}

/* Social media icons */
.footer-social {
  margin: 25px 0 20px;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
  color: #111721;
  font-size: 1.3rem;
  border: 1px solid #111721;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 34px;
  text-align: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #fff;
  color: #dca536;
  border: 1px solid #fff;
}

/* Copyright */
.footer-copy {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 10px;
  letter-spacing: 0.3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .footer-nav span {
    display: none; /* remove separators on small screens */
  }

  .footer-social a {
    font-size: 1.1rem;
    width: 34px;
    height: 34px;
    line-height: 32px;
  }
}
