/* assets/css/style.css */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Prompt:wght@300;400;500;600;700&display=swap");

:root {
  /* Color Palette */
  --emerald-darkest: #04170e; /* Base dark emerald green */
  --emerald-dark: #09311e; /* Deep green for sections & header */
  --emerald-medium: #14532d; /* Medium forest green */
  --emerald-light: #1e7040; /* Accent brand green */
  --emerald-accent: #2b9355; /* Vibrant highlight green */

  --gold-primary: #d4af37; /* Metallic gold */
  --gold-light: #f7e7a8; /* Soft gold highlight */
  --gold-dark: #9c7c1b; /* Deep gold shadow accent */

  --bg-light: #f7fbf8; /* Luxury soft cream background */
  --bg-white: #ffffff; /* Card white background */
  --text-dark: #11221a; /* High-contrast dark charcoal-emerald */
  --text-muted: #4e6155; /* Soft description gray-green */
  --text-light: #ffffff; /* Plain white text */

  /* Glassmorphism & Borders */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-bg-dark: rgba(9, 49, 30, 0.88);
  --glass-border: rgba(212, 175, 55, 0.18);
  --glass-border-light: rgba(255, 255, 255, 0.12);

  /* Layout Tokens */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 20px;
  --box-shadow: 0 10px 40px rgba(4, 23, 14, 0.05);
  --box-shadow-hover: 0 20px 50px rgba(4, 23, 14, 0.12);
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Prompt", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--emerald-medium);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--emerald-light);
}

/* Utility Classes */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}
.gold-text {
  color: var(--gold-primary);
}
.text-xl {
  font-size: 1.5rem;
  font-weight: 700;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.p-4 {
  padding: 40px;
}
.w-full {
  width: 100%;
  display: block;
}
.bg-darker {
  background-color: rgba(9, 49, 30, 0.02);
}

.mobile-only {
  display: none !important;
}

/* Section Design */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.flex-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  width: 100%;
}

.section-logo-inline {
  height: 1.6em;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.3));
  animation: logoPulse 4s ease-in-out infinite;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 400;
}

/* Custom Sub-heading styling for luxury theme */
.section-tag {
  font-family: "Outfit", sans-serif;
  color: var(--gold-primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 4px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--emerald-darkest);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--emerald-darkest);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.btn-emerald {
  background: linear-gradient(
    135deg,
    var(--emerald-light),
    var(--emerald-dark)
  );
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(30, 112, 64, 0.2);
}

.btn-emerald:hover {
  background: linear-gradient(
    135deg,
    var(--emerald-accent),
    var(--emerald-light)
  );
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30, 112, 64, 0.35);
}

/* Header / Pill Navigation */
.navbar {
  background-color: var(--glass-bg-dark);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 10px 40px;
  position: fixed;
  width: 90%;
  max-width: 1200px;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  box-shadow: 0 15px 40px rgba(4, 23, 14, 0.15);
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

/* Navbar Shrink class triggered by JS */
.navbar.shrink {
  padding: 6px 30px;
  top: 15px;
  box-shadow: 0 15px 45px rgba(4, 23, 14, 0.25);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
  transition: var(--transition);
}

.logo:hover .logo-img {
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.9));
  transform: scale(1.05);
}

.logo-text {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2.5px;
  white-space: nowrap;
  text-transform: uppercase;

  background: linear-gradient(
    110deg,
    #ffffff 10%,
    var(--gold-primary) 35%,
    var(--gold-light) 50%,
    var(--gold-primary) 65%,
    #ffffff 90%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0px 2px 4px rgba(4, 23, 14, 0.3));
  animation: textShine 5s linear infinite;
}

@keyframes textShine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.nav-links {
  display: flex;
  gap: 35px;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 15.5px;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-primary);
}

/* Subtle glowing line indicator for active navbar item */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition);
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--gold-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 70%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 25px; /* Bridge to hover */
  margin-bottom: -25px;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 15px);
  background-color: var(--glass-bg-dark);
  min-width: 200px;
  box-shadow: 0 15px 40px rgba(4, 23, 14, 0.3);
  border-radius: 15px;
  padding: 12px 0;
  z-index: 1000;
  border: 1px solid var(--glass-border);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.dropdown-content::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}

.dropdown-content a {
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 12px 24px;
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  text-align: left;
  transition: var(--transition);
}

.dropdown-content a::after {
  display: none; /* Disable underline for sub-menu */
}

.dropdown-content a:hover,
.dropdown-content a.active {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary) !important;
  padding-left: 28px;
}

@media (hover: hover) {
  .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 10px);
  }
}

.dropdown.open .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 10px);
}

.btn-nav {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--emerald-darkest) !important;
  text-decoration: none;
  padding: 9px 24px !important;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-nav::after {
  display: none !important; /* No active indicator line */
}

.btn-nav:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  z-index: 1100;
}

.mobile-menu-btn span {
  width: 32px;
  height: 3.5px;
  background-color: var(--gold-primary);
  transition: var(--transition);
  border-radius: 3px;
}

.pt-navbar {
  padding-top: 140px;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  background-color: #f0faf5; /* Bright cream-mint base */
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(30, 112, 64, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(212, 175, 55, 0.06) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #f3fcf7 0%, #ffffff 50%, #fcf9ee 100%); /* Bright soft gradient */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-dark); /* Dark text color for contrast */
  overflow: hidden;
}

/* Add custom blurred decorative blobs in background for luxury modern look */
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(30, 112, 64, 0.08) 0%,
    transparent 70%
  );
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.06) 0%,
    transparent 70%
  );
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    rgba(30, 112, 64, 0.08) 1px,
    transparent 1px
  ); /* Soft green dots */
  background-size: 30px 30px;
  opacity: 0.5;
}

#sakura-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  padding: 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 50px;
  width: 100%;
  text-align: left;
}

.hero-logo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-large-logo {
  max-width: 360px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(212, 175, 55, 0.4))
          drop-shadow(0 0 35px rgba(30, 112, 64, 0.15));
  animation: logoPulse 4s ease-in-out infinite;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 5px;
}

.hero-buttons .btn {
  margin: 0;
  min-width: 170px;
  justify-content: center;
}

.hero-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.4))
    drop-shadow(0 0 30px rgba(30, 112, 64, 0.15));
  animation: logoPulse 4s ease-in-out infinite;
}

.hero-logo-inline {
  height: 2.5em; /* Set to 2.5em for extra prominence */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3))
    drop-shadow(0 0 20px rgba(30, 112, 64, 0.1));
  animation: logoPulse 4s ease-in-out infinite;
  vertical-align: middle;
  display: inline-block;
  margin-right: 18px; /* Increased gap for larger logo */
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.4));
  }
  50% {
    transform: scale(1.03);
    filter: drop-shadow(0 6px 20px rgba(212, 175, 55, 0.6));
  }
}

.hero h1 {
  font-size: clamp(1.6rem, 3vw + 0.8rem, 3.4rem); /* Adjusted font scale */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--emerald-darkest); /* Dark green text */
  text-shadow: 0 2px 10px rgba(4, 23, 14, 0.05);
  white-space: nowrap;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 25px;
  color: var(--text-muted); /* Darker gray-green */
  white-space: nowrap;
}

.hero-price {
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: var(--bg-white); /* White base for contrast */
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  border: 1.5px solid var(--gold-primary); /* Gold border stands out nicely */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15); /* Luxury gold glow shadow */
  color: var(--text-dark);
  position: relative;
  overflow: hidden; /* Clips the shimmering shine overlay */
}

/* Sweeping gold shine sheen overlay */
.hero-price::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.2),
    rgba(255, 247, 168, 0.6),
    rgba(212, 175, 55, 0.2),
    transparent
  );
  transform: skewX(-25deg);
  animation: goldShimmer 3.5s infinite ease-in-out;
}

@keyframes goldShimmer {
  0% {
    left: -150%;
  }
  40% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

.hero-price .gold-text {
  font-weight: 800;
  background: linear-gradient(
    110deg,
    var(--gold-dark) 20%,
    var(--gold-primary) 40%,
    var(--gold-light) 50%,
    var(--gold-primary) 60%,
    var(--gold-dark) 80%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  animation: textShine 3s linear infinite;
}

/* Page Header */
.page-header {
  background-color: var(--emerald-darkest);
  background-image:
    radial-gradient(
      circle at right,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, var(--emerald-darkest) 0%, var(--emerald-dark) 100%);
  padding: 80px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header p {
  color: var(--gold-light);
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 24px;
}

/* Guarantee Section */
.guarantee-section {
  background: linear-gradient(180deg, var(--bg-light) 0%, #ecf5f0 100%);
}

/* Pro Overlapping Split Layout */
.split-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
  gap: 0;
}

.split-image {
  flex: 6;
  position: relative;
  z-index: 1;
  min-width: min(100%, 450px);
}

.split-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 25px 55px rgba(4, 23, 14, 0.15);
  transition: var(--transition);
}

.split-layout:hover .split-image img {
  transform: translateY(-5px);
  box-shadow: 0 35px 65px rgba(4, 23, 14, 0.22);
}

.split-text {
  flex: 5;
  position: relative;
  z-index: 2;
  min-width: min(100%, 400px);
  margin-left: -80px;
  padding: 60px;
  background: var(--glass-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-hover);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.split-layout.reverse {
  flex-direction: row-reverse;
}

.split-layout.reverse .split-text {
  margin-left: 0;
  margin-right: -80px;
}

/* Watermark Numbers */
.watermark-number {
  position: absolute;
  top: -50px;
  left: -20px;
  font-family: "Outfit", sans-serif;
  font-size: 9rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.12);
  z-index: -1;
  line-height: 1;
  pointer-events: none;
}

/* Cards & Glass Panels */
.glass-panel {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(4, 23, 14, 0.05);
  border-top: 4px solid var(--gold-primary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-panel:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
  border-top-color: var(--gold-light);
}

.card-icon {
  font-size: 3.2rem;
  margin-bottom: 25px;
  display: inline-block;
  color: var(--gold-primary);
  text-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
  transition: var(--transition);
}

.glass-panel:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.glass-panel h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--emerald-dark);
}

/* Checklists */
.check-list {
  list-style: none;
  margin-top: 15px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-weight: 500;
}

.check-list li::before {
  content: "\f058"; /* FontAwesome circle check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold-primary);
  font-size: 1.1rem;
  text-shadow: 0 2px 6px rgba(212, 175, 55, 0.2);
}

/* Double Card Grid for main services choice page */
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
  gap: 40px;
}

.hub-card {
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(4, 23, 14, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.hub-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.hub-card-img {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.hub-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: var(--transition);
}

.hub-card:hover .hub-card-img img {
  transform: scale(1.06);
}

.hub-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(4, 23, 14, 0.8) 100%
  );
}

.hub-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--emerald-darkest);
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.hub-card-content {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hub-card-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--emerald-dark);
  margin-bottom: 15px;
}

.hub-card-content p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.hub-card-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Pricing and Badge stylings */
.price-badge {
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed var(--gold-primary);
  color: var(--emerald-light);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* Contact Page Form & Styles */
.contact-form .form-group {
  position: relative;
}

.contact-form .form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(4, 23, 14, 0.15);
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.contact-form .form-control:focus {
  border-color: var(--gold-primary);
  background-color: var(--bg-white);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.contact-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  padding-right: 45px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  font-size: 1.4rem;
  background: rgba(212, 175, 55, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gold-primary);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background: var(--gold-primary);
  color: var(--emerald-darkest);
  transform: scale(1.08) rotate(-10deg);
}

.contact-info-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--emerald-dark);
}

.contact-link {
  color: var(--emerald-light);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--gold-primary);
}

/* Unified Contact Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
}

.contact-details-col {
  display: flex;
  flex-direction: column;
}

.contact-map-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Call To Action Banner */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--emerald-darkest) 0%,
    var(--emerald-dark) 100%
  );
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.cta-section .glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-primary);
  color: var(--text-light);
}

.cta-section .glass-panel h2 {
  color: var(--text-light);
  margin-bottom: 15px;
}

.cta-section .glass-panel p {
  color: var(--gold-light);
  opacity: 0.9;
}

/* Footer Section */
.site-footer {
  background-color: #030f0a;
  background-image: 
    /* Glowing gold and emerald dust effects in corners */
    radial-gradient(circle at 15% 15%, rgba(30, 112, 64, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 85% 85%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #030f0a 0%, #010503 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  color: rgba(255, 255, 255, 0.65);
  padding: 120px 0 0 0; /* Increased to accommodate wave divider */
  font-size: 15px;
  position: relative;
}

.footer-wave {
  position: absolute;
  top: -79px;
  left: 0;
  width: 100%;
  height: 80px;
  line-height: 0;
  pointer-events: none;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.footer-wave path {
  fill: #030f0a;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  padding-right: 40px;
}

.footer-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.footer-tagline {
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 300;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 1.05rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--gold-primary);
  color: var(--emerald-darkest);
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.footer-social-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.footer-social-vertical .social-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social-vertical .social-link-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social-vertical .social-link-item span {
  font-weight: 300;
}

.footer-social-vertical .social-link-item:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.footer-social-vertical .social-link-item:hover i {
  background: var(--gold-primary);
  color: var(--emerald-darkest) !important;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.site-footer h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
  font-weight: 700;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold-primary);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a i {
  font-size: 9px;
  color: var(--gold-primary);
  transition: var(--transition);
}

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

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--gold-primary);
  font-size: 1.05rem;
  width: 20px;
  text-align: center;
  margin-top: 4px;
}

.footer-bottom {
  background-color: #010805;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-dev {
  font-size: 0.8rem;
}

.footer-dev a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: var(--transition);
}

.footer-dev a:hover {
  color: var(--gold-primary);
}

/* Scroll Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active State Triggered by JS */
.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

.reveal-fade.active {
  opacity: 1;
}

.delay-1 {
  transition-delay: 0.15s;
}
.delay-2 {
  transition-delay: 0.3s;
}
.delay-3 {
  transition-delay: 0.45s;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .navbar {
    padding: 8px 25px;
  }
  .nav-links {
    gap: 20px;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
    top: 15px;
    width: 92%;
  }

  .logo-text {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  .logo-img {
    height: 26px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-logo-col {
    justify-content: center;
  }

  .hero-large-logo {
    max-width: 240px;
  }

  .hero-text-col {
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6.5vw, 2.4rem) !important;
    white-space: normal !important;
  }

  .hero-subtitle {
    white-space: normal !important;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-buttons .btn {
    min-width: 140px;
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .mobile-only {
    display: block !important;
  }

  .section-header h2 {
    font-size: clamp(1.3rem, 5.5vw, 1.8rem) !important;
  }

  .hero-logo-inline {
    height: 1.8em !important;
    margin-right: 12px !important;
  }

  .nav-container {
    width: 100%;
    justify-content: space-between;
  }

  .section {
    padding: 60px 0;
  }

  .pt-navbar {
    padding-top: 85px; /* Reduce top padding for mobile navbar alignment */
  }

  .page-header {
    padding: 35px 0 30px; /* Reduce header height for mobile */
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .btn-nav {
    display: none; /* Hide in navbar on mobile */
  }

  /* Mobile Drawer */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 2px; /* Reduce gap between drawer links */
    position: absolute;
    top: 130%;
    left: 0;
    width: 100%;
    background-color: var(--glass-bg-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px; /* Slightly tighter drawer padding */
    text-align: center;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(4, 23, 14, 0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 6px 0; /* Reduce padding for mobile links to be closer */
    font-size: 16px;
  }

  .nav-links a::after {
    display: none; /* Disable indicator line on mobile list */
  }

  /* Dropdown on Mobile Drawer */
  .dropdown {
    display: block;
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .dropdown-content {
    display: none; /* Hide by default on mobile */
    position: static;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 5px;
    opacity: 1; /* Reset opacity for mobile */
    visibility: visible; /* Reset visibility for mobile */
    transition: none; /* Reset transition for mobile */
  }

  .dropdown.open .dropdown-content {
    display: block; /* Show when open class is active */
    transform: none; /* Override desktop absolute centering translation */
  }

  .dropdown-content a {
    text-align: center !important;
    padding: 10px !important;
    font-size: 14.5px;
    font-weight: 500;
    opacity: 0.8;
  }

  .dropdown-content a:hover,
  .dropdown-content a.active {
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 10px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Split overlapping layout stacks on mobile */
  .split-image,
  .split-text {
    flex: none;
    width: 100%;
  }

  .split-image img {
    height: 320px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .split-text {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: -20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 30px 24px;
    box-shadow: var(--box-shadow);
  }

  .split-layout {
    margin-bottom: 60px;
  }

  .watermark-number {
    font-size: 6rem;
    top: -30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-links li {
    margin-bottom: 8px; /* Closer spacing for footer links on mobile */
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Announcement Popup Overlay */
.promo-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 23, 14, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.promo-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.promo-popup-content {
  position: relative;
  max-width: 500px;
  width: 90%;
  transform: scale(0.85);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-popup-overlay.show .promo-popup-content {
  transform: scale(1);
}

.promo-popup-content img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(4, 23, 14, 0.4);
  border: 2px solid var(--gold-primary);
  display: block;
}

.promo-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(4, 23, 14, 0.6);
  border: 1px solid var(--glass-border);
  color: #ffffff;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.promo-popup-close:hover {
  background: var(--gold-primary);
  color: var(--emerald-darkest);
  transform: rotate(90deg);
}

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    var(--emerald-dark),
    var(--emerald-medium)
  );
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow:
    0 10px 30px rgba(4, 23, 14, 0.3),
    0 0 15px rgba(212, 175, 55, 0.2);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow:
    0 15px 40px rgba(4, 23, 14, 0.4),
    0 0 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(
    135deg,
    var(--emerald-medium),
    var(--emerald-light)
  );
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* Pulsing outer ring animation */
.floating-contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  border: 2px solid var(--gold-primary);
  opacity: 0;
  z-index: -1;
  animation: fabPulse 2.5s infinite;
  pointer-events: none;
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

/* Floating Menu popup */
.floating-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--glass-bg-dark);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 18px;
  width: 260px;
  box-shadow: 0 15px 40px rgba(4, 23, 14, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-contact.active .floating-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 12px;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-menu-item:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-primary);
  border-color: rgba(212, 175, 55, 0.3);
  padding-left: 18px;
}

.floating-menu-item i {
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
  color: var(--gold-primary);
  filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.3));
}

/* Responsive adjustment for mobile screen */
@media (max-width: 480px) {
  .floating-contact {
    bottom: 20px;
    right: 20px;
  }
  .floating-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  .floating-menu {
    width: 220px;
    bottom: 60px;
  }
}

/* Gold Glowing Text Effect */
.gold-glow-text {
  font-weight: 700;
  background: linear-gradient(
    110deg,
    var(--gold-dark) 20%,
    var(--gold-primary) 40%,
    var(--gold-light) 50%,
    var(--gold-primary) 60%,
    var(--gold-dark) 80%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  animation: textShine 3s linear infinite;
}

