/* Reset & basic styles */
* {margin: 0; padding: 0; box-sizing: border-box;}
body {font-family: 'Montserrat', sans-serif; overflow-x: hidden; scroll-behavior: smooth;}
/* Modern 2026 Trending Background */
/* Full page gradient: blue → white → blue */
body {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;

  /* Updated gradient with color stops */
  background: linear-gradient(135deg, #00f0ff 0%, #ffffff 50%, #00f0ff 100%);
  background-size: 300% 300%;
  animation: bodyGradientMove 20s ease infinite;
}

/* Animate the gradient */
@keyframes bodyGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Blobs */
.background-blobs {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.6;
  animation: float 25s ease-in-out infinite;
}

.blob1 {
  background: radial-gradient(circle at 30% 30%, #00f0ff, #007cf0);
  top: 10%;
  left: -200px;
}

.blob2 {
  background: radial-gradient(circle at 50% 50%, #00f0ff55, #00d4ff33);
  top: 50%;
  left: -300px;
  animation-delay: 5s;
}

.blob3 {
  background: radial-gradient(circle at 70% 30%, #007cf0, #00f0ff);
  top: 70%;
  left: -150px;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  50% { transform: translateY(60px) translateX(80px) rotate(45deg); }
}

/* Optional: subtle moving gradient overlay for hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #00f0ff22, #007cf022, #00f0ff22);
  background-size: 600% 600%;
  animation: gradientShift 30s ease infinite;
  z-index: -1;
}

@keyframes gradientShift {
  0% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
  100% { background-position:0% 50%; }
}
a {text-decoration: none; color: inherit;}

/* Navbar */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.3);
  z-index: 1000;
  backdrop-filter: blur(10px);
}
nav .logo {color: #00f0ff; font-size: 1.8em; font-weight: bold;}
nav ul {display: flex; list-style: none; gap: 30px;}
nav ul li a {color: white; font-weight: 500; transition: 0.3s;}
nav ul li a:hover {color: #00f0ff;}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: -1;
}
.hero-content {
  max-width: 800px;
  animation: fadeInUp 1.5s ease forwards;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0,255,255,0.5);
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 0 0 15px rgba(0,255,255,0.3);
}
.hero-content a {
  padding: 15px 35px;
  background: #E8423A;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  transition: 0.3s;
  box-shadow: 0 8px 28px rgba(232, 66, 58, 0.45);
}
.hero-content a:hover {background: #cf3028; transform: scale(1.05); box-shadow: 0 12px 36px rgba(232, 66, 58, 0.55);}

/* Sections */
section {
  padding: 60px 50px;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: #111;
}



/* Services Carousel */



/* ===== CAROUSEL SECTION ===== */
.carousel-section {
  padding: 60px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}

.carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Scroll-snap track */
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 20px 4px 28px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

/* Each card snaps into place */
.carousel-item {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 90px rgba(0,0,0,0.3);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 14px;
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  box-sizing: border-box;
}

.overlay h2 {
  color: #00f0ff;
  margin-bottom: 6px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.overlay p {
  font-size: 0.88rem;
  margin-bottom: 10px;
  opacity: 0.9;
  line-height: 1.5;
}

/* Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.carousel-controls button {
  background: #073E3E;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.carousel-controls button:hover {
  background: #0a5555;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.carousel-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
  flex-shrink: 0;
}

.carousel-dots span.active {
  background: #073E3E;
  transform: scale(1.3);
}

/* ---- Tablet: 2 cards ---- */
@media (min-width: 769px) and (max-width: 1024px) {
  .carousel-item { flex: 0 0 calc(50% - 12px); height: 420px; }
}

/* ---- Mobile: 1 card ---- */
@media (max-width: 768px) {
  .carousel { padding: 0 12px; }
  .carousel-track { gap: 16px; padding: 16px 4px 24px; }
  .carousel-item { flex: 0 0 100%; min-width: 0; height: 380px; border-radius: 16px; }
  .overlay { bottom: 12px; left: 12px; right: 12px; padding: 16px; border-radius: 12px; }
  .overlay h2 { font-size: 1.1rem; }
  .service-sublist { font-size: 0.82rem; }
  .service-btn { font-size: 0.82rem; padding: 10px 18px; }
}

/* ---- Small mobile ---- */
@media (max-width: 480px) {
  .carousel-item { height: 320px; }
  .overlay { padding: 12px; }
  .overlay h2 { font-size: 1rem; }
  .service-sublist { display: none; }
}

/* About */
.about {display: flex; align-items: center; gap: 50px; flex-wrap: wrap;}
.about img {flex: 1; border-radius: 20px; max-width: 500px;}
.about-text {flex: 1; min-width: 300px;}

/* Testimonials */
.testimonials {
  background: #00f0ff10;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  max-width: 350px;
}

.testimonial-card p {margin-bottom: 15px; color: #333;}
.testimonial-card h4 {color: #007cf0;}

/* CTA */
.cta {
  text-align: center;
  background: #00f0ff;
  color: #000;
  padding: 100px 50px;
}

.cta a {
  padding: 20px 50px;
  background: #fff;
  color: #00f0ff;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}

.cta a:hover {background: #f0f0f0; transform: scale(1.05);}

/* Animations */
@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(50px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
  nav {padding: 15px 30px;}
  .hero-content h1 {font-size: 2rem;}
  .hero-content p {font-size: 1rem;}
  section {padding: 50px 30px;}
  .testimonials-section { padding: 50px 20px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* carousel responsive handled in component block */
}







/* Brand container */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

/* Logo image */
.brand img{
  height:50px;
  width:auto;
  transform: scale(1.4); /* visually bigger logo */
  transform-origin: left center;
}

.brand{
  display:flex;
  align-items:center;
  gap:18px;
}

/* Company name */
.logo-text{
  font-size:1.4rem;
  font-weight:700;
  color:#00f0ff;
  letter-spacing:0.5px;
}

.logo-text{
  font-size:1.3rem;
  font-weight:600;
  color:#00f0ff;
}






/* Modern Section Header */

.section-header{
text-align:center;
margin-bottom:40px; /* reduced from 80px */
}

.section-label{
display:block;
font-size:.8rem;
letter-spacing:4px;
color:#005f7a;
font-weight:600;
margin-bottom:6px; /* tighter */
}

.section-title{
font-size:3rem;
font-weight:800;
margin:0; /* remove default margins */

background:linear-gradient(90deg,#00f0ff,#007cf0,#00f0ff);
background-size:200%;

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

animation:gradientMove 6s linear infinite;
}

.title-line{
width:90px;
height:4px;
margin:15px auto 0; /* smaller spacing */

background:linear-gradient(90deg,#00f0ff,#007cf0 60%,#FFD600);
border-radius:10px;
}

/* subtle gradient animation */
@keyframes gradientMove{
0%{background-position:0%}
100%{background-position:200%}
}

/* Fade-in elements */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================= */
/* OUR WORKS                 */
/* ========================= */

.works-section {
  /* intentionally empty — inherits section padding */
}

/* Carousel container — constrained, centred, padded */
.works-carousel {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
}

/* Side-by-side columns on desktop */
.works-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: 100%;
  box-sizing: border-box;
}

/* Each column fills its grid cell */
.works-column {
  width: 100%;
  min-width: 0;
  text-align: center;
  box-sizing: border-box;
}

.works-label {
  display: block;
  margin-bottom: 16px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00f0ff, #007cf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Track uses aspect-ratio — no fixed heights anywhere */
.works-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  background: #111;
}

.works-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.works-track img.active {
  opacity: 1;
  transform: scale(1.04);
}

/* Controls */
.works-controls {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.works-controls button {
  background: #073E3E;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.works-controls button:hover {
  background: #0a5555;
  transform: scale(1.1);
}

.works-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.works-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
  flex-shrink: 0;
}

.works-dots span.active {
  background: #073E3E;
  transform: scale(1.3);
}

/* ---- Tablet (≤ 768px): stack columns ---- */
@media (max-width: 768px) {
  .works-carousel { padding: 0 16px; }
  .works-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .works-label { font-size: 1.3rem; }
}

/* ---- Small mobile (≤ 480px) ---- */
@media (max-width: 480px) {
  .works-carousel { padding: 0 12px; }
  .works-track { border-radius: 14px; }
  .works-label { font-size: 1.1rem; margin-bottom: 10px; }
  .works-controls button { width: 36px; height: 36px; font-size: 14px; }
}


/* ========================= */
/* MODERN ABOUT SECTION */
/* ========================= */

.about-modern{

position:relative;
}

.about-container{
display:flex;
gap:80px;
align-items:center;
justify-content:center;
max-width:1200px;
margin:auto;
flex-wrap:wrap;
}

/* IMAGE */

.about-image{
position:relative;
flex:1;
min-width:320px;
}

.about-image img{
width:100%;
border-radius:30px;
box-shadow:0 30px 80px rgba(0,0,0,0.25);
transition:transform .6s ease;
}

.about-image:hover img{
transform:scale(1.04);
}

/* Floating badge */

.image-badge{
position:absolute;
bottom:30px;
left:30px;

background:rgba(0,0,0,0.55);
backdrop-filter:blur(10px);

color:white;
padding:12px 22px;
border-radius:30px;
font-weight:600;
font-size:.9rem;

box-shadow:0 10px 30px rgba(0,0,0,.3);
}

/* CONTENT */

.about-content{
flex:1;
min-width:320px;
}

.about-content h3{
font-size:2rem;
margin-bottom:20px;
color:#04626B;
}

.about-content p{
font-size:1.05rem;
line-height:1.7;
margin-bottom:30px;
color:#333;
}

/* FEATURES */

.about-features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

/* Feature cards */

.feature-card {
  background: rgba(255, 255, 255, 0.1); /* semi-transparent glass */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #111; /* dark text instead of white */
}

.feature-card h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #00f0ff, #007cf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #222; /* readable dark text */
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
}

/* Sub services list */

.service-sublist{
margin:15px 0 20px 0;
padding-left:18px;
font-size:.9rem;
line-height:1.5;
opacity:.9;
}

.service-sublist li{
margin-bottom:5px;
}

/* Modern Explore Button */

.service-btn{
display:inline-block;
margin-top:10px;
padding:12px 26px;

font-size:.9rem;
font-weight:600;

color:#fff;
text-decoration:none;

border-radius:50px;

background:#E8423A;
border:none;

transition:all .35s ease;

box-shadow:0 8px 28px rgba(232,66,58,0.4);
}

/* Hover effect */

.service-btn:hover{
background:#cf3028;
color:#fff;
transform:translateY(-3px) scale(1.05);

box-shadow:0 14px 38px rgba(232,66,58,0.55);
}


/* Explore Services */

/* Explore services page */

.services-grid{
padding:120px 50px;
}

.services-container{

max-width:1100px;
margin:auto;

display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:40px;

margin-top:60px;

}

.service-detail-card{

background:rgba(255,255,255,0.92);
backdrop-filter:blur(15px);

padding:40px;
border-radius:25px;

box-shadow:0 25px 70px rgba(0,0,0,0.25);

transition:.35s;

}

.service-detail-card:hover{

transform:translateY(-10px);
box-shadow:0 35px 90px rgba(0,0,0,0.35);

}

.service-detail-card h3{

font-size:1.7rem;
margin-bottom:20px;

color:#0d1f2d;
background:none;
-webkit-background-clip:unset;
-webkit-text-fill-color:#0d1f2d;

}

.service-detail-card ul{

padding-left:18px;
line-height:1.8;

margin-bottom:25px;

}

/* Booking Form */

.booking-section{
padding:120px 50px;
max-width:1000px;
margin:auto;
}

.booking-form{
background:rgba(255,255,255,0.12);
backdrop-filter:blur(15px);
padding:40px;
border-radius:25px;
box-shadow:0 25px 70px rgba(0,0,0,0.25);
}

.form-row{
display:flex;
gap:20px;
margin-bottom:20px;
flex-wrap:wrap;
}

.booking-form input,
.booking-form select,
.booking-form textarea{

flex:1;
padding:14px 16px;
border-radius:10px;
border:none;
outline:none;
font-family:Montserrat;

background:rgba(255,255,255,0.8);
}

.booking-form textarea{
width:100%;
margin-bottom:20px;
}

.booking-form button{
margin-top:10px;
cursor:pointer;
}

.quote-box{
margin:20px 0;
padding:20px;
font-size:1.4rem;
font-weight:700;
text-align:center;
border-radius:15px;

background:rgba(0,240,255,0.15);
border:1px solid rgba(0,240,255,0.4);

color:#111;
}

/* ================================================ */
/* EXPLORE SERVICES PAGE — append to styles.css     */
/* ================================================ */

/* Override existing .services-grid to add nav offset */
.services-grid {
  padding: 160px 50px 120px;
}

/* Override existing .services-container grid */
.services-container {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 0;
}

/* Override existing .service-detail-card */
.service-detail-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.service-detail-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-detail-card:nth-child(1) { transition-delay: 0s; }
.service-detail-card:nth-child(2) { transition-delay: 0.12s; }
.service-detail-card:nth-child(3) { transition-delay: 0.24s; }

/* Card icon badge */
.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 200, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: #00c8ff;
}

/* Card description */
.card-description {
  font-size: 14px;
  color: #1a2535;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

/* Card divider */
.card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

/* Override existing card ul to remove default padding and use checkmarks */
.service-detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-detail-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1e2d3d;
  line-height: 1.4;
}

.service-detail-card ul li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: rgba(0, 200, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2300c8ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* Override .service-btn inside cards to sit at bottom */
.service-detail-card .service-btn {
  margin-top: auto;
  text-align: center;
}

/* CTA Strip */
.services-cta-strip {
  background: rgba(0, 240, 255, 0.08);
  backdrop-filter: blur(15px);
  padding: 50px 50px;
  text-align: center;
}

.services-cta-strip h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin: 0 0 12px 0;
  background: linear-gradient(90deg, #00f0ff, #007cf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-cta-strip p {
  font-size: 15px;
  color: #444;
  margin: 0 0 28px 0;
}

.services-cta-strip a {
  display: inline-block;
  padding: 14px 40px;
  background: #E8423A;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 28px rgba(232, 66, 58, 0.4);
}

.services-cta-strip a:hover {
  background: #cf3028;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 38px rgba(232, 66, 58, 0.55);
}

/* Responsive */
@media (max-width: 900px) {
  .services-container {
    grid-template-columns: 1fr 1fr;
  }
  .service-detail-card:nth-child(3) {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }
  .service-detail-card:nth-child(3) {
    grid-column: span 1;
  }
  .services-grid {
    padding: 120px 20px 60px;
  }
  .services-cta-strip {
    padding: 60px 24px;
  }
}

/* ================================================ */
/* SITE FOOTER — append to styles.css               */
/* ================================================ */

.site-footer {
  position: relative;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: none;
  color: #ccc;
  font-family: 'Montserrat', sans-serif;
}



/* Inner layout */
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 50px 50px;
}

/* ---- Brand column ---- */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 46px;
  width: auto;
}

.footer-logo .logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: #00f0ff;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 260px;
}

/* ---- Column headings ---- */
.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00f0ff;
  margin-bottom: 20px;
}

/* ---- Nav links ---- */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #00f0ff;
  padding-left: 6px;
}

/* ---- Contact list ---- */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact li svg {
  width: 16px;
  height: 16px;
  stroke: #00f0ff;
  flex-shrink: 0;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact li a:hover {
  color: #00f0ff;
}

/* ---- CTA button ---- */
.footer-cta-btn {
  display: inline-block;
  padding: 11px 26px;
  background: #E8423A;
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(232, 66, 58, 0.4);
}

.footer-cta-btn:hover {
  background: #cf3028;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 66, 58, 0.55);
}

/* ---- Bottom bar ---- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 50px;
  border-top: none;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-right {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 240, 255, 0.4);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 40px 40px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 24px 36px;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 24px;
  }
}

/* ================================================ */
/* HERO — VIDEO LANDING PAGE UPGRADE                */
/* ================================================ */

/* Base hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Video */
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark base overlay */
.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}

/* Cyan gradient vignette overlay */
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 124, 240, 0.06) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
}

/* Subtle scanlines texture */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  z-index: 3;
  pointer-events: none;
}

/* Content layer */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 860px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  /* remove old fadeInUp — we use per-element animations */
  animation: none;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  backdrop-filter: blur(10px);
  color: #00f0ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeDown 0.8s ease 0.2s forwards;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFD600;
  box-shadow: 0 0 8px #FFD600;
  animation: heroPulse 2s ease infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Headline — line by line reveal */
.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 24px 0;
  text-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}

.hero-line-1 { animation: heroLineUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards; }
.hero-line-2 { animation: heroLineUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards; }
.hero-line-3 {
  animation: heroLineUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
  background: linear-gradient(90deg, #00f0ff, #007cf0, #00f0ff);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroLineUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards,
             gradientMove 4s linear 1.6s infinite;
}

@keyframes heroLineUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Subtext */
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 36px 0;
  letter-spacing: 0.5px;
  text-shadow: none;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.2s forwards;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.4s forwards;
}

.hero-btn-primary {
  padding: 15px 36px;
  background: #E8423A;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 28px rgba(232, 66, 58, 0.45);
  letter-spacing: 0.3px;
}

.hero-btn-primary:hover {
  background: #cf3028;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(232, 66, 58, 0.6);
}

.hero-btn-secondary {
  padding: 15px 36px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, transform 0.25s ease, border-color 0.3s ease;
  letter-spacing: 0.3px;
}

.hero-btn-secondary:hover {
  background: rgba(0, 240, 255, 0.12);
  border-color: rgba(0, 240, 255, 0.5);
  transform: translateY(-3px);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  border-top: none;
  padding: 20px 40px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.8s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  gap: 4px;
}

.hero-stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00f0ff, #007cf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.hero-stat-number.hero-stat-stars {
  background: linear-gradient(90deg, #FFD600, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 240, 255, 0.2);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 100px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 2.2s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #00f0ff, transparent);
  animation: heroScrollPulse 2s ease infinite;
}

.hero-scroll span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0, 240, 255, 0.6);
  writing-mode: vertical-rl;
}

@keyframes heroScrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
  .hero-stats {
    gap: 0;
    padding: 16px 16px;
  }
  .hero-stat {
    padding: 0 16px;
  }
  .hero-stat-number {
    font-size: 1.2rem;
  }
  .hero-stat-label {
    font-size: 9px;
  }
  .hero-scroll {
    display: none;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 13px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-stat-divider { display: none; }
  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
  }
  .hero-stat {
    flex: 1 1 40%;
    padding: 0 10px;
  }
}

/* ================================================ */
/* TESTIMONIALS — moved from index.html            */
/* ================================================ */


/* ===== TESTIMONIALS ===== */

.testimonials-section {
  padding: 60px 50px;
  background: transparent;
}

.testimonials-carousel {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Scroll-snap track */
.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 16px 4px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 260px;
  background: #fff;
  border: 2px solid #073E3E;
  border-radius: 16px;
  padding: 36px 30px 30px;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(7, 62, 62, 0.15);
}

.testimonial-quote-icon {
  font-size: 72px;
  line-height: 1;
  color: #073E3E;
  opacity: 0.12;
  font-family: Georgia, serif;
  position: absolute;
  top: 16px;
  left: 24px;
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  flex: 1;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  padding-top: 16px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #073E3E;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 1px;
  border: 2px solid #E8423A;
  box-shadow: 0 0 8px rgba(232, 66, 58, 0.35);
}

.testimonial-info h4 {
  margin: 0 0 2px 0;
  font-size: 15px;
  font-weight: 700;
  color: #073E3E;
}

.testimonial-info span {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.testimonials-controls button {
  background: #073E3E;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonials-controls button:hover {
  background: #0a5555;
  transform: scale(1.1);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonials-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
  flex-shrink: 0;
}

.testimonials-dots span.active {
  background: #073E3E;
  transform: scale(1.3);
}

/* ---- Tablet: 2 cards ---- */
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

/* ---- Mobile: 1 card ---- */
@media (max-width: 768px) {
  .testimonials-section { padding: 50px 16px; }
  .testimonial-card { flex: 0 0 100%; min-width: 0; }
}
/* ================================================ */
/* SECTION BANNER HEADERS                           */
/* ================================================ */

.section-banner {
  position: relative;
  overflow: visible;
  background: rgba(0, 240, 255, 0.06);
  border-top: none;
  border-bottom: none;
  border-left: 4px solid #00f0ff;
  border-right: none;
  border-radius: 0;
  padding: 36px 60px 32px;
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(-50vw + 50%) 60px;
  text-align: left;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 0 120px rgba(0, 240, 255, 0.04),
    0 4px 40px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

/* Ghosted watermark word — full right side, more visible */
.banner-watermark {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 110px;
  font-weight: 900;
  letter-spacing: -6px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 240, 255, 0.22);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  background: linear-gradient(90deg, rgba(0,240,255,0.18), rgba(0,124,240,0.12));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Label stays same style, just left aligned now */
.section-banner .section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: #005f7a;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* Title left aligned inside banner */
.section-banner .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, #00f0ff, #007cf0, #00f0ff);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s linear infinite;
  text-align: left;
}

/* Title line left aligned */
.section-banner .title-line {
  width: 60px;
  height: 3px;
  margin: 12px 0 0;
  background: linear-gradient(90deg, #00f0ff, #007cf0);
  border-radius: 4px;
}

/* Subtle left edge glow */
.section-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #FFD600, #00f0ff, #007cf0);
  background-size: 100% 200%;
  animation: gradientMove 4s linear infinite;
  border-radius: 0;
}

/* Contact section banner gets a coral-red left border */
.contact-banner::before {
  background: linear-gradient(to bottom, #E8423A, #FFD600, #E8423A);
}

/* Responsive */
@media (max-width: 768px) {
  .section-banner {
    padding: 24px 24px 22px;
    border-radius: 0;
    margin-bottom: 40px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

  .section-banner .section-title {
    font-size: 1.6rem;
  }

  .banner-watermark {
    font-size: 64px;
    right: 16px;
    -webkit-text-stroke: 1px rgba(0, 240, 255, 0.2);
  }
}


/* ================================================ */
/* CONTACT / EMAIL FORM SECTION                     */
/* ================================================ */

.contact-section {
  padding: 60px 50px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* ---- Left info panel ---- */
.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 16px;
  background: linear-gradient(90deg, #00f0ff, #007cf0 60%, #FFD600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info > p {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin: 0 0 36px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 214, 0, 0.12);
  border: 1px solid rgba(255, 214, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: #c9a800;
}

.contact-details li > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #005f7a;
}

.contact-details li a,
.contact-details li span:last-child {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details li a:hover {
  color: #007cf0;
}

/* ---- Right form panel ---- */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-top: 3px solid #FFD600;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #005f7a;
  line-height: 1;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 10px;
  padding: 9px 13px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #111;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #00f0ff;
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12);
  background: #fff;
}

.contact-field textarea {
  resize: vertical;
  min-height: 110px;
}

/* Property details section label */
.contact-field--section-label {
  margin-top: 4px;
  margin-bottom: -6px;
}

/* Dynamic field groups — fade in smoothly when shown */
#field-group-property-label,
#field-group-bedrooms-bathrooms,
#field-group-kitchens-floors,
#field-group-basement-budget,
#field-group-sqft-employees,
#field-group-carpet-details,
#field-group-construction-details {
  animation: fieldFadeIn 0.35s ease both;
}
@keyframes fieldFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Submit button */
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: #E8423A;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(232, 66, 58, 0.4);
  align-self: flex-start;
  letter-spacing: 0.5px;
}

.contact-submit svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  transition: transform 0.2s ease;
}

.contact-submit:hover {
  background: #cf3028;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 66, 58, 0.55);
}

.contact-submit:hover svg {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 50px 20px;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================ */
/* SECTION BANNER MOP DECORATION                    */
/* ================================================ */

/* ---- Soap bubbles rising below section titles ---- */

.bubble-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 10;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0, 240, 255, 0.55);
  background: radial-gradient(
    circle at 32% 30%,
    rgba(255,255,255,0.45) 0%,
    rgba(0,200,255,0.12) 45%,
    rgba(0,124,240,0.08) 100%
  );
  box-shadow:
    inset -2px -2px 4px rgba(0,240,255,0.2),
    inset  2px  2px 6px rgba(255,255,255,0.3);
  opacity: 0;
  animation: bubbleRise var(--dur) ease-in var(--del) forwards;
}

.bubble::before {
  content: '';
  position: absolute;
  top: 18%; left: 22%;
  width: 28%; height: 20%;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  filter: blur(1px);
}

.bubble::after {
  content: '';
  position: absolute;
  top: 55%; left: 60%;
  width: 12%; height: 10%;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

@keyframes bubbleRise {
  0%   { opacity: 0;   transform: translate(var(--x), 0px)       scale(0.3);  }
  12%  { opacity: 0.9; transform: translate(var(--x), -10px)     scale(1.05); }
  85%  { opacity: 0.7; transform: translate(var(--x2), var(--y)) scale(1);    }
  95%  { opacity: 0.4; transform: translate(var(--x2), var(--y)) scale(1.15); }
  100% { opacity: 0;   transform: translate(var(--x2), var(--y)) scale(1.3);  }
}

/* ---- Blob sweep left → right on section titles ---- */

.blob-wrap {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 10;
  border-radius: inherit;
}

/* Each blob: pill-shaped white translucent shape */
.blob {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(-110%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: rgba(255, 255, 255, var(--alpha, 0.18));
  filter: url(#blob-filter) blur(2px);
  opacity: 0;
  animation: blobSlide var(--dur) cubic-bezier(0.4, 0, 0.2, 1) var(--del) forwards;
}

@keyframes blobSlide {
  0%   { opacity: 0;   transform: translateY(calc(-50% + var(--vy,0px))) translateX(-110%); }
  8%   { opacity: 1; }
  88%  { opacity: 0.9; }
  100% { opacity: 0;   transform: translateY(calc(-50% + var(--vy,0px))) translateX(110vw); }
}

/* ================================================ */
/* FULLY RESPONSIVE — ALL DEVICES                   */
/* ================================================ */

/* --- Hamburger button --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  nav { padding: 16px 30px; }
  .logo-text { font-size: 1.1rem; }
  .brand img { height: 40px; }

  section { padding: 50px 30px; }

  .about-container { gap: 40px; }
  .about-content h3 { font-size: 1.6rem; }

  /* Services carousel overlay — handled in component block */

  /* works responsive handled in component block */
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {

  /* Nav */
  .nav-toggle { display: flex; }

  nav ul {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 1000;
  }
  nav ul.open { display: flex; }
  nav ul li a { font-size: 1.4rem; color: white; }
  nav ul li a:hover { color: #00f0ff; }

  /* General */
  section { padding: 44px 20px; }

  /* About */
  .about-container {
    flex-direction: column;
    gap: 30px;
  }
  .about-image { min-width: unset; width: 100%; }
  .about-content { min-width: unset; width: 100%; }
  .about-content h3 { font-size: 1.4rem; }
  .about-content p { font-size: 0.95rem; }
  .about-features { grid-template-columns: 1fr; }

  /* Services carousel overlay — handled in component block */

  /* works responsive handled in component block */

  /* Section banner */
  .section-banner { padding: 20px 20px 18px; }
  .section-title { font-size: 1.5rem; }

  /* Contact */
  .contact-section { padding: 50px 20px; }
  .contact-info h3 { font-size: 1.4rem; }
  .contact-form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { padding: 40px 20px 30px; gap: 28px; }
}

/* ---- Small mobile (≤480px) ---- */
@media (max-width: 480px) {
  .logo-text { font-size: 0.85rem; }
  .brand img { height: 34px; }

  .hero-content h1 { font-size: 1.6rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; gap: 12px; align-items: center; }
  .hero-btn-primary, .hero-btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 14px 20px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 16px;
  }
  .hero-stat { flex: 1 1 42%; }
  .hero-stat-number { font-size: 1.1rem; }
  .hero-stat-label { font-size: 8px; }

  /* Services carousel overlay — handled in component block */

  /* works responsive handled in component block */

  .testimonial-card { padding: 24px 18px; }

  .section-title { font-size: 1.3rem; }
  .banner-watermark { font-size: 48px; }

  .contact-submit { width: 100%; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; padding: 36px 18px 24px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 16px 18px; }
}

/* =============================================
   CLIENTS MARQUEE — inside works section
   ============================================= */
.clients-marquee-inner {
  max-width: 960px;
  width: 100%;
  margin: 48px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.clients-marquee-heading {
  margin-bottom: 28px;
}

/* Outer wrapper matches works-carousel width exactly */
.marquee-outer {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  padding: 12px 0;
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* Also pause on individual item hover */
.marquee-item:hover ~ .marquee-item,
.marquee-item:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  flex-shrink: 0;
  cursor: pointer;
}

/* Placeholder box — replace with actual <img> later */
.client-logo-placeholder {
  width: 160px;
  height: 72px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.client-logo-placeholder span {
  color: rgba(255,255,255,0.35);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* When a logo img is used instead of placeholder */
.marquee-item img {
  width: 160px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
  transition: filter 0.3s ease, transform 0.3s ease;
  display: block;
}

.marquee-item:hover .client-logo-placeholder,
.marquee-item:hover img {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,200,255,0.3);
  transform: translateY(-3px) scale(1.04);
  filter: grayscale(0) brightness(1);
}

/* Pause marquee when hovering any item */
.marquee-wrapper:has(.marquee-item:hover) .marquee-track {
  animation-play-state: paused;
}

/* =============================================
   CONTACT FORM — SERVICE-FIRST IMPROVEMENTS
   ============================================= */

/* Big service selector as first field */
.contact-field--service-first {
  margin-bottom: 1.5rem;
}

.contact-field--service-first label {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #005f7a !important;
  letter-spacing: 1.4px !important;
  text-transform: uppercase !important;
  margin-bottom: 0 !important;
  line-height: 1 !important;
}

.contact-field--service-first select {
  font-size: 0.95rem !important;
  padding: 9px 13px !important;
  border-radius: 14px !important;
  border: 2px solid rgba(0, 240, 255, 0.35) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #111 !important;
  font-weight: 600;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-field--service-first select:focus {
  border-color: #00f0ff !important;
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12) !important;
  outline: none;
}

/* Smooth reveal of dynamic fields */
#form-dynamic-fields {
  animation: formReveal 0.38s ease both;
}

@keyframes formReveal {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Form section title (Property Details etc) */
.form-section-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #005f7a;
  padding: 0.4rem 0 0.2rem;
  border-bottom: 1px solid rgba(0, 95, 122, 0.25);
  margin-bottom: 1rem;
}

/* =============================================
   HERO — TRUSTED SINCE 2020 BADGE
   ============================================= */
.hero-trusted-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}
.hero-trusted-icon {
  font-size: 0.9rem;
}

/* =============================================
   FOOTER — SOCIAL LINKS
   ============================================= */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #cce9f0;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}
.footer-social-link:hover {
  background: rgba(0,240,255,0.15);
  border-color: rgba(0,240,255,0.5);
  color: #00f0ff;
  transform: translateY(-2px);
}
.footer-social-link svg {
  flex-shrink: 0;
}

/* =============================================
   CONTACT — ADDRESS CLICKABLE LINK
   ============================================= */
.contact-address-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0,95,122,0.35);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.contact-address-link:hover {
  color: #007cf0;
  text-decoration-color: #007cf0;
}

/* =============================================
   CONTACT — GOOGLE MAP EMBED
   ============================================= */
.contact-map-wrap {
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,120,200,0.12);
  border: 1px solid rgba(0,200,255,0.18);
  background: rgba(255,255,255,0.08);
}
.contact-map-wrap iframe {
  display: block;
  border-radius: 14px 14px 0 0;
}
.map-open-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #005f7a;
  background: rgba(0,240,255,0.08);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-radius: 0 0 14px 14px;
}
.map-open-link:hover {
  background: rgba(0,240,255,0.2);
  color: #003f55;
}

/* =============================================
   CONTACT FORM — CONSISTENT LABEL/INPUT SPACING
   ============================================= */
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #005f7a;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.2;
  min-height: 16px; /* keeps label rows aligned even when text wraps */
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(0,200,255,0.28);
  background: rgba(255,255,255,0.85);
  color: #111;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-sizing: border-box;
  appearance: auto;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #00c8e0;
  box-shadow: 0 0 0 3px rgba(0,200,224,0.13);
  outline: none;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start; /* keeps rows top-aligned regardless of label height */
  margin-bottom: 14px;
}
/* Single full-width field */
.contact-field:not(.contact-form-row .contact-field) {
  margin-bottom: 14px;
}

/* =============================================
   SECTION HEADER — TIGHTER MARGINS
   ============================================= */
.section-header {
  margin-bottom: 30px !important;
}
.section-header .section-title {
  margin-bottom: 10px !important;
}

/* =============================================
   NAV — MOBILE LOGO TEXT TRUNCATION FIX
   ============================================= */
nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
nav .logo-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =============================================
   GLOBAL MOBILE RESPONSIVE — ALL DEVICES
   ============================================= */

/* Large tablets (901px–1200px) */
@media (max-width: 1200px) {
  section { padding: 55px 40px; }
  .carousel-section { padding: 55px 0; }
  .contact-section { padding: 55px 40px; }
  .testimonials-section { padding: 55px 40px; }
}

/* Tablets (601px–900px) */
@media (max-width: 900px) {
  section { padding: 48px 24px; }
  .carousel-section { padding: 48px 0; }
  .contact-section { padding: 48px 24px; }
  .testimonials-section { padding: 48px 24px; }
  nav { padding: 16px 24px; }
  nav ul { gap: 18px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 10px; }
  .hero-stat { flex: 1 1 40%; }
  .contact-container { grid-template-columns: 1fr; }
  .contact-info { margin-bottom: 24px; }
  .about-container { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  section { padding: 40px 16px; }
  .carousel-section { padding: 40px 0; }
  .contact-section { padding: 40px 16px; }
  .testimonials-section { padding: 40px 16px; }

  nav { padding: 14px 16px; }
  nav .logo-text { font-size: 0.78rem; max-width: 160px; }
  nav img { height: 32px !important; }

  .hero-content { padding: 0 16px; }
  .hero-content h1 { font-size: 1.75rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-btn-primary, .hero-btn-secondary { width: 100%; max-width: 280px; text-align: center; }
  .hero-stats { flex-wrap: wrap; padding: 16px; gap: 8px; }
  .hero-stat { flex: 1 1 45%; }
  .hero-stat-number { font-size: 1.5rem; }

  .section-header .banner-watermark { font-size: 3rem; }
  .section-title { font-size: 1.6rem; }

  .contact-form-row { grid-template-columns: 1fr; gap: 14px; }
  .contact-map-wrap iframe { height: 180px; }

  .about-container { flex-direction: column; }
  .about-image { width: 100%; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-socials { flex-direction: column; }
  .footer-social-link { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .works-wrapper { flex-direction: column; gap: 16px; }
  .works-column { width: 100%; }

  .hero-trusted-badge { font-size: 0.7rem; }
}

/* Small phones (≤380px) */
@media (max-width: 380px) {
  section { padding: 32px 12px; }
  nav .logo-text { display: none; }
  .hero-content h1 { font-size: 1.5rem; }
  .hero-stat { flex: 1 1 100%; }
  .contact-field input,
  .contact-field select,
  .contact-field textarea { font-size: 0.82rem; }
}

.contact-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #073E3E; /* match your theme */
}


/* ============================================================
   DIRECTOR SECTION
   ============================================================ */
.director-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f0fafa 0%, #e8f5f5 100%);
  position: relative;
  overflow: hidden;
}

.director-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(7,62,62,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.director-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.director-image {
  flex: 0 0 340px;
  position: relative;
}

.director-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(7,62,62,0.18);
  display: block;
}

.director-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid #073E3E;
  border-radius: 20px;
  z-index: -1;
  opacity: 0.25;
}

.director-content {
  flex: 1;
}

.director-quote {
  margin: 0 0 32px;
  padding: 0;
  border: none;
  font-style: italic;
  color: #2a4a4a;
}

.director-quote p {
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 16px;
  color: #2a4a4a;
}

.director-quote p:last-child {
  margin-bottom: 0;
}

.director-quote::before {
  content: '\201C';
  display: block;
  font-size: 5rem;
  line-height: 0.6;
  color: #073E3E;
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: 12px;
}

.director-signature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.director-sig-line {
  width: 4px;
  height: 60px;
  background: linear-gradient(to bottom, #073E3E, #0fa897);
  border-radius: 4px;
  flex-shrink: 0;
}

.director-sig-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.director-sig-info strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: #073E3E;
  letter-spacing: 0.3px;
}

.director-sig-info span {
  font-size: 0.88rem;
  color: #4a7a7a;
  font-style: normal;
}

@media (max-width: 900px) {
  .director-container {
    flex-direction: column;
    gap: 32px;
  }
  .director-image {
    flex: none;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .director-section {
    padding: 48px 20px;
  }
  .director-quote p {
    font-size: 0.97rem;
  }
}
