@charset "utf-8";
/* CSS Document */
:root {
      --primary-teal: #0a4d5c;
      --primary-teal-dark: #073540;
      --accent-gold: #cfa85c;
      --accent-gold-hover: #b08d4b;
      --bg-cream: #fbf9f5;
      --text-dark: #1e293b;
      --text-muted: #475569;
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background-color: var(--bg-cream);
      color: var(--text-dark);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4, .font-serif {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }

    /* Transparent & Sticky Navbar Customization */
    .custom-navbar {
      background-color: rgba(251, 249, 245, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(10, 77, 92, 0.08);
      transition: all 0.3s ease;
      z-index: 1000;
    }

    .navbar-brand {
      font-weight: 800;
      letter-spacing: 1px;
    }

    .navbar-brand span {
      color: var(--accent-gold);
    }

    .btn-gold {
      background-color: var(--accent-gold);
      color: #fff;
      font-weight: 600;
      padding: 10px 24px;
      border-radius: 8px;
      border: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 14px rgba(207, 168, 92, 0.2);
    }

    .btn-gold:hover {
      background-color: var(--accent-gold-hover);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(207, 168, 92, 0.3);
    }

    .btn-outline-teal {
      border: 2px solid var(--primary-teal);
      color: var(--primary-teal);
      font-weight: 600;
      padding: 8px 22px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .btn-outline-teal:hover {
      background-color: var(--primary-teal);
      color: #fff;
      transform: translateY(-2px);
    }

    /* Hero Section with background image at 60% opacity & dynamic layout */
    .hero-section {
      position: relative;
      padding: 50px 0 50px 0;
	 background-image: url("images/banner-img.jpeg");
		background-size: cover; background-repeat: no-repeat;
      overflow: hidden;
      background-color: #042127; /* Dark base tone behind translucent background */
		
    }

    /* Pseudo-element for Background Image with 60% Opacity */
    .hero-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('banner-img.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.60; /* Requested 60% Opacity */
      z-index: 1;
    }

    /* Gradient overlay to maximize typography contrast and elegance */
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, 
        rgba(251, 249, 245, 0.96) 0%, 
        rgba(251, 249, 245, 0.90) 40%, 
        rgba(251, 249, 245, 0.75) 100%
      );
      z-index: 2;
    }

    /* On smaller devices, make the overlay slightly stronger to guarantee text readability */
    @media (max-width: 991.98px) {
      .hero-overlay {
        background: linear-gradient(to bottom, 
          rgba(251, 249, 245, 0.97) 0%, 
          rgba(251, 249, 245, 0.92) 100%
        );
      }
		
		    .display-4 {
        font-size: 2rem;
    }
		.hero-section{ padding-bottom: 10px;}
		.badge-tick{font-size: 0.65rem;}
    }

    .hero-container {
      position: relative;
      z-index: 3; /* Places all textual and UI elements safely above background image & overlay */
    }

    /* Elegant Organic Wave Container from layout.jpeg on the right */
    .organic-image-container {
      position: relative;
      width: 100%;
      height: 450px;
      overflow: hidden;
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      box-shadow: 0 20px 40px rgba(10, 77, 92, 0.25);
      border: 8px solid #fff;
      transition: all 0.5s ease-in-out;
    }

    .organic-image-container:hover {
      border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
      transform: scale(1.02);
    }

    .banner-img-highlight {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Circular Tick Badges in Hero */
    .badge-tick {
      background: rgba(10, 77, 92, 0.08);
      color: var(--primary-teal);
      border-radius: 50px;
      padding: 10px 18px;
      font-weight: 700;
      font-size: 0.92rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      border: 1px solid rgba(10, 77, 92, 0.15);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .badge-tick i {
      color: #b08d4b;
      font-size: 1.15rem;
    }

    .badge-tick:hover {
      background: var(--primary-teal);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(10, 77, 92, 0.2);
    }

    .badge-tick:hover i {
      color: #fff;
    }

    /* 4 Key Points Cards Section */
    .features-section {
      padding: 30px 0;
      background-color: #fff;
      border-top: 1px solid rgba(10, 77, 92, 0.05);
      border-bottom: 1px solid rgba(10, 77, 92, 0.05);
    }

    .feature-card {
      background: var(--bg-cream);
      border: 1px solid rgba(10, 77, 92, 0.06);
      border-radius: 16px;
      padding: 30px 24px;
      height: 100%;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background-color: var(--accent-gold);
      opacity: 0;
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(10, 77, 92, 0.08);
      border-color: rgba(10, 77, 92, 0.15);
    }

    .feature-card:hover::before {
      opacity: 1;
    }

    .feature-icon-box {
      width: 56px;
      height: 56px;
      background-color: #fff;
      color: var(--primary-teal);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
      box-shadow: 0 6px 15px rgba(10, 77, 92, 0.05);
      border: 1px solid rgba(10, 77, 92, 0.05);
      transition: all 0.3s ease;
    }

    .feature-card:hover .feature-icon-box {
      background-color: var(--primary-teal);
      color: #fff;
    }

    /* Centered Google Form Wrapper (100% Mobile Responsive) */
    .form-section {
      padding: 30px 0;
      background: linear-gradient(180deg, #fff 0%, var(--bg-cream) 100%);
    }

    .form-card {
      background: #fff;
      border-radius: 24px;
      box-shadow: 0 20px 50px rgba(10, 77, 92, 0.08);
      border: 1px solid rgba(10, 77, 92, 0.05);
      padding: 25px;
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }

    /* Auto-scaling Google Form Container to eliminate scrolling problems */
    .iframe-responsive-container {
      position: relative;
      width: 100%;
      height: 980px;
      overflow: hidden;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .iframe-responsive-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Bottom Trust Paragraph and SEO Copy Section */
    .seo-text-section {
      padding: 65px 0;
      background-color: #fff;
      border-top: 1px solid rgba(10, 77, 92, 0.05);
    }

    .seo-paragraph {
      font-size: 0.94rem;
      line-height: 1.8;
      color: var(--text-muted);
      text-align: justify;
      max-width: 960px;
      margin: 0 auto;
    }

    /* Wavy Footer Styling */
    .wavy-separator {
      width: 100%;
      height: auto;
      margin-top: -10px;
      display: block;
    }

    footer {
      background-color: #05262e;

      color: #e2e8f0;
      padding: 50px 0 25px 0;
      font-size: 0.9rem;
    }

    .footer-links a {
      color: rgba(226, 232, 240, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--accent-gold);
      padding-left: 5px;
    }

    .footer-socials a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      margin-right: 10px;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .footer-socials a:hover {
      background: var(--accent-gold);
      color: #fff;
      transform: translateY(-3px);
    }

    /* Floating Quick Connect Badge (Perfect Mobile Touch Action) */
    .floating-contact {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      background: #25d366; /* WhatsApp Green */
      color: white;
      padding: 12px 20px;
      border-radius: 50px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .floating-contact:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
      color: white;
    }

    /* Fallback image handler styling */
    .image-fallback-active {
      background: linear-gradient(135deg, #0a4d5c 0%, #1e293b 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.8);
      text-align: center;
      padding: 20px;
    }


/* Core Project Highlights styling */
    .project-highlights-section {
      padding: 80px 0;
      background-color: var(--bg-cream);
    }

    /* Luxury Key Features list cards */
    .luxury-feature-item {
      background: #ffffff;
      border: 1px solid rgba(10, 77, 92, 0.06);
      border-radius: 16px;
      padding: 24px;
      height: 100%;
      transition: all 0.3s ease;
    }
    .luxury-feature-item:hover {
      border-color: var(--accent-gold);
      box-shadow: 0 10px 20px rgba(207,168,92,0.06);
    }
    .luxury-icon {
      width: 48px;
      height: 48px;
      background: rgba(10, 77, 92, 0.06);
      color: var(--primary-teal);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 15px;
    }

    /* Strategic Location styling */
    .location-section {
      padding: 80px 0;
      background-color: #ffffff;
    }
    .location-badge {
      background: rgba(207, 168, 92, 0.1);
      color: var(--accent-gold-hover);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 30px;
      letter-spacing: 0.5px;
    }

    /* Pricing Section styling */
    .pricing-section {
      padding: 80px 0;
      background: linear-gradient(135deg, rgba(10, 77, 92, 0.02) 0%, rgba(207, 168, 92, 0.05) 100%);
    }
    .pricing-card {
      background: #ffffff;
      border: 2px solid var(--accent-gold);
      border-radius: 24px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }