:root {
  --gold: #d6b25e;
  --navy: #1e3a5f;
}

html { scroll-behavior: smooth; }

body { margin:0; font-family:'Inter',sans-serif; }

/* HEADER */
header
{
  display: flex;
  justify-content: space-between; /* Pushes logo to left, nav to right */
  align-items: center;           /* Vertically centers everything */
  padding: 10px 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* LOGO SECTION */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

  /* Added 'select' to the list below */
  #contactForm input,
  #contactForm select, 
  #contactForm textarea {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 15px;
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border-radius: 6px;
    border: 1px solid #ccc;
    /* This ensures padding doesn't push the width beyond 500px */
    box-sizing: border-box; 
  }

  #contactForm textarea {
    height: 120px;
  }

  #contactForm button {
    font-size: 18px;
    padding: 10px 20px;
  }

#contact {
  padding-bottom: 30px;
}

#contact + .section {
  padding-top: 30px;
}
.arrow {
  display: inline-block;
  margin-left: 6px;
  white-space: nowrap;
  vertical-align: middle;
}

#consultBtn {
  line-height: 1.4;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;






 
}

/* Playfair Display - 500 */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/playfair-display-v37-latin-500.woff2') format('woff2');
}

/* Playfair Display - 600 */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/playfair-display-v37-latin-600.woff2') format('woff2');
}

/* Inter - 300 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/inter-v18-latin-300.woff2') format('woff2');
}

/* Inter - 400 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-v18-latin-regular.woff2') format('woff2');
}

/* Inter - 500 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter-v18-latin-500.woff2') format('woff2');

}

nav {
  display:flex;
  align-items:center;
  gap: 3px;
  margin-left: 0;
  flex-wrap: nowrap;
}

nav a {
  margin-left:20px;
  text-decoration:none;
  color:#222;
  font-size:14px;
  font-weight:500;
  position:relative;
  transition:0.3s;
}

nav a:hover { color: var(--gold); }

nav a::after {
  content:"";
  position:absolute;
  bottom:-5px;
  left:0;
  width:0%;
  height:2px;
  background:var(--gold);
  transition:0.3s;
}

nav a:hover::after { width:100%; }

/* CONTACT BUTTON */
.nav-btn {
  background: var(--gold);
  color: #000 !important;
  padding: 8px 18px;
  border-radius: 20px;
}

.nav-btn:hover {
  background: #c9a94f;
}

.nav-btn::after { display:none; }

/* 1. THE MAIN CONTAINER */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 70px; 
  box-sizing: border-box;
  position: relative;
  overflow: hidden; /* Important to keep the zoom inside the box */
  background-color: var(--navy); /* Fallback color */
  
}

/* 1. THE IMAGE LAYER */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
              url('/image/bg1.webp') center/cover no-repeat;
  background-size: cover; /* Ensures background is set properly */
  animation: zoomBg 15s ease-in-out infinite alternate;
  z-index: 1;
  will-change: transform;
}

@keyframes zoomBg {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
/* 2. THE TEXT CONTENT */
.hero h1, .hero p, .hero div {
  position: relative;
  z-index: 2;
}

/* 3. SPECIFIC H1 STYLING */
.hero h1 {
  font-family: 'Playfair Display', serif; /* Must match your @font-face name exactly */
  font-size: clamp(34px, 8vw, 64px);
  color: #ffffff;
  text-shadow: 0 5px 25px rgba(0,0,0,0.7);
  margin: 0 20px;
  font-weight: 600; /* Matches your 600 weight font-face */
}

.hero h2 {
  font-family:'Playfair Display',serif;
  font-size:48px;
  text-shadow:0 5px 25px rgba(0,0,0,0.7);
  margin: 0 15px;
  font-weight: 500; /* Matches your 600 weight font-face */
}

.hero p {
  margin:20px;
  text-shadow:0 3px 15px rgba(0,0,0,0.6);
  font-size: 20px;
  line-height: 1.6;
}

/* BUTTONS */
.btn {
  padding:14px 32px;
  margin:10px auto;
  border:none;
  cursor:pointer;
  transition:0.3s;
  font-size:14px;
  display:inline-block;
  width: auto;
  text-align:center;
  }

.btn-primary {
  background:var(--gold);
}

.btn-primary:hover {
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(214,178,94,0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.2);
  border:1px solid #fff;
  color:#fff;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background:var(--gold);
  color:#000;
}

.section {
  padding:100px 60px;
  text-align:center;

}
.section h3 {
  font-family:'Playfair Display',serif;
  font-size:18px;
}

.label {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 6px;
  display: block;
}
/* GRID */
.process {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  margin-top:40px;
}
.card-text {
  line-height:1.5;
  margin-top:20px;
  text-align:justify;
}

.card {
  background:#fff;
  padding:15px;
  border-radius:12px;
  border:1px solid #eee;
  transition: all 0.4s ease;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  position:relative;
}

.card::before {
  content:"";
  position:absolute;
  inset:0;
  border-radius:12px;
  background: radial-gradient(circle at top, rgba(214,178,94,0.2), transparent);
  opacity:0;
  transition:0.4s;
}

.card:hover::before { opacity:1;
}

.card:hover {
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
  border-color:var(--gold);
}

/* MAP */
.iframe {
  width:100%;
  height:300px;
  border-radius:12px;
  border:none;
}

/* FORM GLOW */
@keyframes formGlow {
  0% { box-shadow: 0 0 0 rgba(214,178,94,0); }
  50% { box-shadow: 0 0 25px rgba(214,178,94,0.8); }
  100% { box-shadow: 0 0 0 rgba(214,178,94,0); }
}

.form-highlight {
  animation: formGlow 1.5s ease;
}

  .whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
  }
   input:focus,
   textarea:focus,
   select:focus { outline: none; border-color: var(--gold);
  }
  
  .save-contact-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--gold);
    color: #000;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    z-index: 999;
    transition: 0.3s;
 }
 .whatsapp:hover { transform: scale(1.08); }
 .save-contact-float:hover { transform: scale(1.08);
 }
 
 .fade { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out;
     
 }
 
 .fade.show { opacity: 1; transform: translateY(0);
 }     
        
.footer {
  text-align: center;
  padding: 40px;
  background: #FFF8E7; /* Cosmic Latte */
  color: #1e3a5f;      /* Dark Navy text for readability */
}
  .footer a {
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
.text-justify {
  line-height: 1.5;
  margin-top: 20px;
  text-align: justify;
}
  /* all your existing CSS here */

  .footer {
    text-align: center;
  }

  /* ADD MEDIA QUERIES HERE (last part of CSS) */
  @media (max-width: 768px) {
    header {
      padding: 10px 15px;
    }

    nav {
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    nav a {
      margin-left: 10px;
      font-size: 13px;
    }

    .nav-btn {
      padding: 6px 12px;
      font-size: 13px;
    }
  }

