/* ------------------------------------------------ Global Reset -------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Sitka Display", "Raleway", serif;
  font-size: 19px;
  font-weight: 400;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: #fdfdfd;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1360px;
  margin: auto;
}


/* -------------------------------------------- Section 1 — Navbar ------------------------------------------------- */


/* LUXURY NAVBAR BASE */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  /* Glassmorphism effect */
  border-bottom: 1px solid rgba(93, 103, 84, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}


/* Subtle shadow when scrolling */
.navbar.scrolled {
  padding: 5px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1430px;
  margin: auto;
  padding: 16px 0px 16px 0px;
}


/* LOGO SCALE EFFECT */
.logo img {
  width: 269px;
  /* Slightly smaller for elegance */
  transition: transform 0.4s ease;
}

.logo:hover img {
  transform: scale(1.02);
}

/* INTERACTIVE NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 73px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #5d6754;
  /* Olive base instead of 333 */
  font-size: 19px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

/* The "Unique" Underline Animation */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4a373;
  /* Gold accent */
  transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-links a:hover {
  color: #d4a373;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown Container */
.dropdown {
  position: relative;
}

/* Dropdown Toggle */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 180px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

/* Dropdown Links */
.dropdown-menu a {
  font-family: "Raleway", serif;
  font-size: 16px;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f5f7fa;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: flex;
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  background: #5d6754;
  color: #fce7a2;

  border-radius: 60% 40% 60% 40% / 50%;
  border: 1px solid #d4a373;

  font-family: 'Sitka Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-login:hover {
  /* Morphs into a standard pill shape */
  border-radius: 50px;
  background: #4a5441;
  transform: scale(1.05) translateY(-2px);
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(93, 103, 84, 0.3);
}

/* The Liquid "Gold Fill" Effect */
.btn-login::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(212, 163, 115, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-login:hover::before {
  width: 300px;
  height: 300px;
}

@media (max-width: 575.98px) {

  /* Adjust Logo for small screens */
  .logo img {
    width: 180px;
    /* Smaller logo for mobile */
  }

  .nav-wrapper {
    padding: 15px;
  }

  /* Transform Nav Links into a Vertical Drawer */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden off-screen */
    width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    /* Tighter gap for mobile */
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  /* When the menu is toggled open */
  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 22px;
    /* Larger touch targets */
    width: 100%;
    text-align: center;
  }

  /* Adjust Login Button for mobile */
  .btn-login {
    padding: 12px 25px;
    font-size: 14px;
    letter-spacing: 1px;
  }

  /* Hamburger Menu Icon (Add this to your HTML) */
  .mobile-menu-btn {
    display: block;
    cursor: pointer;
    font-size: 28px;
    color: #5d6754;
    z-index: 1001;
  }
}


/* Hide Hamburger on Desktop */
@media (min-width: 576px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* ----------------------------------------- Section 2 - Hero Section ------------------------------------------- */

.hero {
  background: url("../images/Home/curved-bg.png") no-repeat bottom center;
  background-size: 110% auto;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* ASYMMETRIC GRID LAYOUT */
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

/* CINEMATIC TYPOGRAPHY */
.hero-text h1 {
  font-size: 45px;
  /* Massive, bold presence */
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -1.5px;
  color: #5d6754;
  margin-bottom: 30px;
  font-family: "Sitka Display", serif;
  /* Subtle text reveal animation */
  animation: textAppear 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-text p {
  font-size: 17px;
  font-weight: 500;
  color: #555;
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-family: "Raleway", sans-serif;
  position: relative;
  padding-left: 25px;
  border-left: 2px solid #d4a373;
  /* Gold "Hauline" Accent */
}

/* THE "ELITE" BUTTON */
.hero-btn {
  position: relative;
  background: #5d6754;
  color: #fce7a2;
  border: 1px solid rgba(212, 163, 115, 0.4);
  padding: 20px 45px;
  border-radius: 4px;
  /* Reduced radius for a more sophisticated, "brutalist luxury" feel */
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  cursor: pointer;
  overflow: hidden;
  /* Vital for the shimmer effect */
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);

  /* Elegant shadow without the bulk */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* 1. THE LIGHT SWEEP (The "Signature" Glow) */
.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(252, 231, 162, 0.2),
      transparent);
  transition: all 0.6s;
}

/* 2. THE TOP EDGE HIGHLIGHT (Glass Look) */
.hero-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 231, 162, 0.8), transparent);
  opacity: 0.3;
}

.hero-btn:hover {
  background: #3e4737;
  /* Darker olive depth */
  color: #ffffff;
  transform: translateY(-5px);
  letter-spacing: 6px;
  border-color: rgba(252, 231, 162, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(93, 103, 84, 0.5);
  /* Outer glow on hover */
}

/* Trigger light sweep and brighten top edge on hover */
.hero-btn:hover::before {
  left: 100%;
}

.hero-btn:hover::after {
  opacity: 1;
}

/* 3. ACTIVE CLICK STATE */
.hero-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* FLOATING MIST EFFECT (Pseudo-element) */
.hero::before {
  content: 'INSURANCE';
  position: absolute;
  top: 10%;
  left: -5%;
  font-size: 15vw;
  font-weight: 900;
  color: rgba(93, 103, 84, 0.03);
  /* Ghost text in background */
  z-index: 0;
  pointer-events: none;
}

/* IMAGE FLOATING ANIMATION */
.hero-image-1 img,
.hero-image-2 img,
.hero-image-3 img {
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.12));
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-25px) rotate(1deg);
  }
}

@keyframes textAppear {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.swiper-pagination-bullet {
  width: 40px !important;
  /* Horizontal bars instead of dots */
  height: 2px !important;
  background-color: #d1d1d1 !important;
  border-radius: 0 !important;
  opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
  background-color: #d4a373 !important;
  /* Gold progress */
  opacity: 1 !important;
  height: 3px !important;
}

@media (max-width: 991px) {
  .hero {
    padding: 80px 20px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-text p {
    border-left: none;
    border-top: 1px solid #d4a373;
    padding-left: 0;
    padding-top: 20px;
    margin-top: 10px;
  }

  .hero-text h1 {
    font-size: 42px;
  }
}


/* 1. ATMOSPHERIC OVERLAY */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  /* Darker for better contrast */
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  display: flex;
  /* Always flex, control visibility via opacity/pointer-events */
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* State when open */
.contact-modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* 2. THE GLASS CARD */
.contact-modal-card {
  position: relative;
  width: 90%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 50px 40px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transform: translateY(30px) scale(0.98);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.is-active .contact-modal-card {
  transform: translateY(0) scale(1);
}

/* 3. DYNAMIC RADIAL GLOW */
.radial-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: glowRotate 12s linear infinite;
}

@keyframes glowRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* 4. CONTENT STYLING */
.icon-circle {
  width: 72px;
  height: 72px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: #c5a059;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 25px;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.1);
}

.eyebrow-text {
  color: #c5a059;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 11px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.contact-modal-card h3 {
  /* color: #ffffff; */
  color: #a38603;
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.contact-modal-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 35px;
}

/* 5. THE ACTION BOX */
.glass-action-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.glass-action-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(197, 160, 89, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.phone-link {
  text-decoration: none;
  display: block;
}

.label {
  display: block;
  color: #c5a059;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.number-talk {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
  transition: color 0.3s;
}

/* 6. DISMISS BUTTON */
.close-minimal {
  margin-top: 30px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 10px 20px;
  transition: all 0.3s;
}

.close-minimal:hover {
  color: #fff;
  letter-spacing: 3px;
}

/* ----------------------------------------- SECTION 3 — Our Plans -------------------------------------------------- */

:root {
  --solana-green: #5b6b4f;
  --solana-gold: #d1b078;
  --luxury-cream: #fdfdfb;
  --text-main: #2c3626;
  --text-muted: #6b7280;
  --transition-premium: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.boutique-plans-section {
  padding: 80px 0;
  background: var(--luxury-cream);
  position: relative;
  overflow: hidden;
}

/* Sophisticated Watermark */
.luxury-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25vw;
  font-family: "Sitka Display", serif;
  font-weight: 900;
  color: rgba(91, 107, 79, 0.02);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.05em;
  z-index: 0;
}

.plans-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.editorial-header {
  text-align: center;
  margin-bottom: 120px;
}

.pre-label {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  letter-spacing: 0.8em;
  /* Ultra wide spacing for high-end look */
  color: var(--solana-gold);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0px;
  opacity: 0.9;
}

/* .editorial-title {
  font-family: 'Montserrat', sans-serif;
  font-family: "Sitka Display", serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 300;
  color: var(--jade);
  margin: 0;
  letter-spacing: -1px;
} */

.editorial-title {
  font-family: "Sitka Display", serif;
  font-size: 48px; /* Slightly reduced for better balance */
  font-weight: 400;
  color: #5b6b4f;
  margin: 40px auto; /* Centers the heading if the container is centered */
  display: table; /* Ensures the underline only spans the text width */
  text-align: center;
  position: relative;
  padding-bottom: 25px;
  letter-spacing: -0.01em;
}

/* The Refined Underline */
.editorial-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); /* Centers the underline under the text */
  width: 80%; /* Doesn't touch the edges, looks more premium */
  height: 1px; /* Hairline thickness for elegance */
  background: linear-gradient(
    to right,
    transparent,
    rgba(91, 107, 79, 0.6) 20%,
    rgba(91, 107, 79, 0.6) 80%,
    transparent
  );
}


/* Ultra-Premium Grid Design */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.plan-item {
  background: transparent;
  transition: var(--transition-premium);
  padding: 30px;
  border-radius: 20px;
}

.plan-visual {
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

/* Layered Glass Orb */
.glass-bg {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  transition: var(--transition-premium);
  z-index: 1;
}

.plan-visual img {
  width: 85px;
  z-index: 2;
  transition: var(--transition-premium);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
}

.plan-index {
  position: absolute;
  top: -10px;
  right: 0;
  font-family: "Sitka Display", serif;
  font-size: 110px;
  font-weight: 800;
  color: rgba(91, 107, 79, 0.03);
  transition: var(--transition-premium);
}

.plan-info {
  text-align: center;
  /* Balanced editorial alignment */
}

/* Fine Accent Line */
.info-line {
  width: 40px;
  height: 1px;
  background: var(--solana-gold);
  margin: 0 auto 30px;
  transition: var(--transition-premium);
}

.plan-info h3 {
  font-family: "Sitka Display", serif;
  font-size: 34px;
  color: var(--solana-green);
  margin-bottom: 12px;
  font-weight: 400;
}

.plan-tag {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--solana-gold);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 25px;
}

.plan-info p {
  font-family: "Raleway", sans-serif;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 17px;
  font-weight: 500;
  max-width: 90%;
  margin: 0 auto;
}

/* Hover States: The "Lifting" Effect */
.plan-item:hover {
  transform: translateY(-15px);
}

.plan-item:hover .glass-bg {
  width: 180px;
  height: 180px;
  background: var(--solana-green);
  border-color: var(--solana-green);
  box-shadow: 0 30px 60px rgba(91, 107, 79, 0.2);
}

.plan-item:hover .plan-visual img {
  filter: brightness(0) invert(1);
  transform: scale(1.1) rotate(-5deg);
}

.plan-item:hover .info-line {
  width: 100px;
  background: var(--solana-green);
}

.plan-item:hover .plan-index {
  color: rgba(209, 176, 120, 0.1);
  transform: translateX(-15px);
}

/* Premium Magnetic Button */
/* Premium Button */
.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.editorial-btn {
  text-decoration: none;
  color: var(--solana-green);
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 40px;
  border: 1px solid rgba(91, 107, 79, 0.2);
  transition: all 0.4s ease;
}

.btn-arrow {
  width: 40px;
  height: 1px;
  background: var(--solana-gold);
  position: relative;
}

.btn-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--solana-gold);
  border-bottom: 1px solid var(--solana-gold);
  transform: rotate(-45deg);
}

.editorial-btn:hover {
  background: var(--solana-green);
  color: white;
  border-color: var(--solana-green);
}

.editorial-btn:hover .btn-arrow {
  background: white;
  width: 60px;
}

.editorial-btn:hover .btn-arrow::after {
  border-color: white;
}

/* Responsive Refinement */
@media (max-width: 1100px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .plans-wrapper {
    padding: 0 30px;
  }
}


/* ----------------------------------- SECTION 4 —  3 Steps  ------------------------------------------------------- */

:root {
  --lux-green: #2a6f5e;
  --lux-gold: #bfa379;
  --lux-cream: #f9f8f4;
  --text-main: #2c332d;
}

.premium-round-journey {
  background-color: var(--lux-cream);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

/* Atmospheric Glow */
.luxury-glow {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% -20%, rgba(42, 111, 94, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.journey-header {
  text-align: center;
  margin-bottom: 150px;
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--lux-gold);
}


/* The Ultra-Thin Luxury Line */
.main-title {
  font-family: "Sitka Display", serif;
  /* font-size: clamp(32px, 5vw, 52px); */
  font-size: 48px;
  color: #4a5a43;
  /* Adjusting padding to ensure the line has room to breathe */
  padding: 31px 45px 25px 45px; 
  position: relative;
  display: table; /* Using table ensures the width fits the text perfectly for centering */
  margin: 0 auto; /* Centers the whole heading block */
  text-align: center;
}

/* The Sophisticated Underline */
.main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); /* Perfectly centers the line */
  
  /* 70% width looks more elegant than 100% */
  width: 70%; 
  height: 1px; /* Hairline thickness for a luxury feel */
  
  /* A gradient that fades out at the ends for a "silk thread" look */
  background: linear-gradient(
    to right, 
    transparent, 
    rgba(74, 90, 67, 0.7) 20%, 
    rgba(74, 90, 67, 0.7) 80%, 
    transparent
  );
}

/* The Grid */
.steps-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

/* The Orb System */
.step-orb-container {
  flex: 1;
  text-align: center;
  perspective: 1000px;
}

.orb-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 40px;
}

.orb-glass {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05), inset 0 0 20px rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
}

.orb-inner {
  text-align: center;
}

.main-icon {
  font-size: 50px;
  color: #adb5bd;
  transition: all 0.5s ease;
}

.orb-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Floating Orbit Ring */
.orbit-ring {
  position: absolute;
  inset: -15px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.15;
  transition: all 0.6s ease;
  pointer-events: none;
}

/* Hover Effects */
.step-orb-container:hover .orb-glass {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border-color: var(--accent);
}

.step-orb-container:hover .main-icon {
  color: var(--accent);
  transform: scale(1.1);
}

.step-orb-container:hover .orbit-ring {
  inset: -25px;
  opacity: 0.4;
  border-width: 2px;
  transform: rotate(45deg);
}

/* Content Styling */
.orb-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 15px;
}

.orb-content p {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* Mobile Layout */
@media (max-width: 992px) {
  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }
}

/* --------------------------------------- SECTION 5 — Your Benefits --------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --gold: #5b6b4f;;
  --dark: #1a1a1a;
  --soft-grey: #f4f4f4;
  --jade: #5b6b4f;
}

.premium-benefits {
  padding: 80px 0;
  background-color: rgb(250, 250, 250);
  font-family: "Inter", sans-serif;
  color: var(--dark);
  overflow: hidden;
}

.p-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-header {
  text-align: center;
  margin-bottom: 80px;
}

.p-title {
  font-family: "Sitka Display", serif;
  font-size: 48px;
  color: var(--jade);
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.p-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* Grid Layout */
.p-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

/* --- Left Image Section --- */
:root {
  --p-gold-light: rgba(197, 160, 89, 0.15);
  --p-gold-solid: #c5a059;
}

.p-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.p-round-simple-frame {
  position: relative;
  width: 420px;
  height: 420px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Layer 1: The Offset Halo (Simple & Unique) */
.halo-ring {
  position: absolute;
  top: 15px;    /* Offset from top */
  left: 15px;   /* Offset from left */
  right: -15px; /* Pushes out to right */
  bottom: -15px;/* Pushes out to bottom */
  border: 1px solid var(--p-gold-solid);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.5s ease;
  opacity: 0.6;
}

/* Layer 2: The Main Image Circle */
.p-main-circle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  background: #fff;
  border: 8px solid #fff; /* White border creates separation from the ring */
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  transition: all 0.5s ease;
}

.p-main-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

/* --- SIMPLE INTERACTION --- */

/* On Hover: The image lifts and the halo centers itself */
.p-round-simple-frame:hover {
  transform: translateY(-10px);
}

.p-round-simple-frame:hover .halo-ring {
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  opacity: 1;
  background-color: var(--p-gold-light); /* Soft glow fills the background */
}

.p-round-simple-frame:hover .p-main-circle {
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  border-color: #fdfdfb;
}

.p-round-simple-frame:hover img {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
  .p-round-simple-frame {
    width: 300px;
    height: 300px;
  }
}

/* --- Right Benefits List --- */
.p-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-item {
  display: flex;
  align-items: flex-start;
  padding: 35px 40px;
  background: #fff;
  border: 1px solid var(--soft-grey);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  overflow: hidden;
}

.p-accent-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
  transition: width 0.3s ease;
  z-index: 1;
}

.p-item-num {
  position: absolute;
  right: 15px;
  bottom: -15px;
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.p-item-body {
  position: relative;
  z-index: 2;
  width: 100%;
}

.p-item-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.p-item-body h3 {
  font-family: "Sitka Display", serif;
  /* font-family: "Playfair Display", serif; */
  font-size: 26px;
  color: var(--dark);
  margin: 0;
  transition: color 0.3s ease;
}

.p-item-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.p-item-details p {
  line-height: 1.7;
  color: #666;
  margin-top: 15px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

/* --- Interactions --- */
.p-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: transparent;
}

.p-item:hover .p-accent-bar {
  width: 10px;
}

.p-item:hover h3 {
  color: var(--gold);
}

.p-item:hover .p-item-num {
  color: rgba(197, 160, 89, 0.08);
  transform: scale(1.1) translateX(-10px);
}

.p-item:hover .p-item-details {
  max-height: 150px;
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .p-circle-frame { width: 350px; height: 350px; }
  .p-content-grid { gap: 40px; }
}

@media (max-width: 991px) {
  .p-content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .p-circle-frame { margin-bottom: 50px; }
  .p-item { text-align: left; }
}

/* ---------------------------- SECTION 6 —  Trust Partners Auto Running Slider  ------------------------------- */

/* ===== SECTION BACKGROUND ===== */
/* --- MINIMALIST THEME VARIABLES --- */
:root {
  --p-gold: #c5a059;
  --p-green: #4f624c;
  --section-bg: #ffffff; /* Very slight off-white */
}

.partners-minimal-section {
  background-color: var(--section-bg);
  padding: 50px 0;
  overflow: hidden;
}

.partners-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- TEXT CONTENT (No Box) --- */
.partners-content {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
}

.accent-line {
  width: 40px;
  height: 2px;
  background: var(--p-gold);
  margin: 0 auto 20px;
}

.minimal-title {
  font-family: "Sitka Display", serif;
  font-size: 48px;
  color: var(--p-green);
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.gold-text {
  color: var(--p-gold);
  font-style: italic;
}

.minimal-subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #777;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- LOGO VIEWPORT (Plain & Seamless) --- */
.logo-viewport {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Elegant masking for the fade-in/out effect */
.logo-viewport::before,
.logo-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15vw;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--section-bg), transparent);
}

.logo-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--section-bg), transparent);
}

.logo-marquee {
  display: flex;
  align-items: center;
  width: max-content;
  animation: seamlessScroll 40s linear infinite;
  padding: 20px 0;
}

.logo-item {
  padding: 0 60px; /* Large breathing room */
  transition: transform 0.5s ease;
}

.logo-item img {
  height: 32px; /* Smaller and more refined */
  width: auto;
  filter: grayscale(1) opacity(0.4);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover effects: The focused logo gains color and lifts */
.logo-item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

@keyframes seamlessScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .minimal-title { font-size: 32px; }
  .logo-item { padding: 0 35px; }
  .logo-item img { height: 28px; }
}

/* ---------------------------------- SECTION 7 —  We re Here to help you  ----------------------------------------- */

:root {
  --gold-accent: #f3c77a;
  --sage-deep: #5b6b4f;
  --text-dark: #2d2d2d;
  --white-pure: #ffffff;
  --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-section-wide {
  background: #ffffff;
  padding: 50px 200px 50px 200px;
  /* Wider side padding */
  display: flex;
  justify-content: center;
}

.luxury-container-expansive {
  max-width: 1400px;
  /* Increased width from 1100px to 1400px */
  width: 100%;
}

.contact-card-ultra-wide {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  /* Balanced wider form area */
  background: var(--white-pure);
  border-radius: 50px;
  min-height: 700px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(243, 199, 122, 0.2);
  overflow: hidden;
}

/* Left Panel Styling */
.contact-info-panel {
  background: var(--sage-deep);
  padding: 40px 60px;
  color: var(--white-pure);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ultra-title {
  font-family: 'Sitka Display', serif;
  font-size: 33px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}

.premium-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  /* Makes the divider feel more expansive */
  margin-bottom: 35px;
  position: relative;
}

/* The Main Line */
.premium-divider::before {
  content: "";
  height: 2px;
  /* Thinner is more premium */
  width: 60px;
  background: linear-gradient(to right, var(--gold-accent), transparent);
  border-radius: 2px;
}

/* The Unique Focal Point */
.premium-divider::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold-accent);
  transform: rotate(45deg);
  /* Diamond shape */
  box-shadow: 0 0 12px rgba(243, 199, 122, 0.6);
  animation: diamond-glow 3s infinite ease-in-out;
}

/* Optional: Secondary trailing line for more width */
.premium-divider-extra {
  height: 1px;
  width: 100px;
  background: rgba(243, 199, 122, 0.2);
  margin-left: -5px;
}

@keyframes diamond-glow {

  0%,
  100% {
    opacity: 0.6;
    transform: rotate(45deg) scale(1);
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) scale(1.2);
  }
}

.ultra-subtext {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  /* Slightly smaller for luxury feel */
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.5px;
  color: #ffffff;

  /* The Unique Look */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px 25px;
  border-radius: 20px;
  border-left: 4px solid #f3c77a;
  /* Gold Accent */
  max-width: 450px;
  margin-bottom: 50px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05);

  /* Animation */
  transition: all 0.4s ease;
}

.ultra-subtext:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}


.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 31px;
  margin-bottom: 50px;
}

.contact-item-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item-box i {
  font-size: 20px;
  color: var(--gold-accent);
}

.box-text small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
}

.box-text p {
  font-size: 17px;
  font-weight: 400;
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
}

.address-premium-wrapper {
  display: flex;
  gap: 25px;
  padding-top: 15px;
  margin-top: 0px;
  border-top: 1px solid rgba(243, 199, 122, 0.15);
  /* Soft gold-tinted divider */
}

/* Vertical Visual Flow */
.address-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.loc-icon-circle {
  width: 38px;
  height: 38px;
  background: rgba(243, 199, 122, 0.1);
  border: 1px solid rgba(243, 199, 122, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  font-size: 14px;
  transition: all 0.4s ease;
}

.vertical-connector {
  width: 1px;
  flex-grow: 1;
  background: linear-gradient(to bottom, var(--gold-accent), transparent);
  opacity: 0.5;
}

/* Typography Hierarchy */
.address-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location-tag {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-accent);
  font-weight: 800;
  margin-bottom: 5px;
}

.building-name {
  font-family: 'Sitka Display', serif;
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
}

.street-detail,
.city-pin {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

.address-premium-wrapper:hover .loc-icon-circle {
  background: var(--gold-accent);
  color: var(--sage-deep);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(243, 199, 122, 0.3);
}

/* Form Panel Styling */
.contact-form-panel {
  padding: 80px 80px;
  display: flex;
  align-items: center;
}

.wide-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.floating-field {
  position: relative;
  margin-bottom: 45px;
}

.floating-field.full-width {
  grid-column: span 2;
}

.floating-field input,
.floating-field textarea {
  width: 100%;
  padding: 12px 0;
  font-size: 18px;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  background: transparent;
  outline: none;
  font-family: 'Raleway', sans-serif;
  transition: var(--transition-smooth);
}

.floating-field label {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 18px;
  color: #999;
  pointer-events: none;
  transition: var(--transition-smooth);
}

/* Field Animations */
.floating-field input:focus~label,
.floating-field input:not(:placeholder-shown)~label,
.floating-field textarea:focus~label,
.floating-field textarea:not(:placeholder-shown)~label {
  top: -20px;
  font-size: 13px;
  color: var(--sage-deep);
  font-weight: 700;
  letter-spacing: 1px;
}

.field-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--sage-deep);
  transition: var(--transition-smooth);
}

.floating-field input:focus~.field-bar,
.floating-field textarea:focus~.field-bar {
  width: 100%;
}

.floating-field textarea {
  height: 100px;
  resize: none;
}

/* Modern Wide Button */
/* Container styling */
:root {
  /* High-End Emerald & Gold Palette */
  --btn-luxury-grad: linear-gradient(135deg, #4a5d3f 0%, #2c3626 100%);
  --btn-luxury-hover: linear-gradient(135deg, #5b6b4f 0%, #3a4732 100%);
  --gold-glow: rgba(243, 199, 122, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --success-glass: rgba(16, 185, 129, 0.1);
  --error-glass: rgba(239, 68, 68, 0.1);
}

.minimal-btn {
  position: relative;
  display: inline-flex;
  /* Better for centering/alignment */
  align-items: center;
  gap: 12px;
  background: var(--btn-grad);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 32px;
  border-radius: 12px;
  /* Softer, modern rounding */
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 20px rgba(39, 174, 96, 0.2);
}

/* The "Shimmer" Reflection */
.minimal-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--btn-luxury-grad);
  color: #f3c77a;
  /* Gold text for luxury feel */
  border: 1px solid rgba(243, 199, 122, 0.3);
  padding: 16px 40px;
  border-radius: 100px;
  /* Pill shape is more modern/premium */
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Luxury Shimmer Effect */
.minimal-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(243, 199, 122, 0.2),
      transparent);
  transition: all 0.8s ease;
}

.minimal-btn:hover:not(:disabled) {
  background: var(--btn-luxury-hover);
  transform: translateY(-5px);
  border-color: #f3c77a;
  box-shadow: 0 20px 40px rgba(74, 93, 63, 0.3),
    0 0 20px var(--gold-glow);
  color: #ffffff;
}

.minimal-btn:hover::after {
  left: 100%;
}

.minimal-btn:disabled {
  opacity: 0.7;
  filter: grayscale(0.5);
  cursor: not-allowed;
}

.minimal-btn i {
  font-size: 16px;
  transition: all 0.4s ease;
}

.minimal-btn:hover i {
  transform: translateX(5px) rotate(-15deg);
}

/* State: When active (Triggered via JS) */
/* Container for the status message */
/* Container for the status message - Ultra Luxury Edition */
.status-message {
  margin-top: 30px;
  padding: 14px 28px;
  border-radius: 50px;
  /* Pill shape is more high-end */
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  /* Slightly smaller is more sophisticated */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  gap: 15px;

  /* Glassmorphism Core */
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);

  /* Layered Shadows for Depth */
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 10px 30px -5px rgba(0, 0, 0, 0.15);
}

/* Visibility State */
.status-message.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Luxury Success: Emerald & Gold Tint */
.status-message.success {
  background: rgba(255, 255, 255, 0.8);
  /* White base for clarity */
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  /* Inner Glow */
  box-shadow:
    inset 0 0 10px rgba(16, 185, 129, 0.05),
    0 15px 35px -5px rgba(16, 185, 129, 0.15);
}

/* Luxury Error: Ruby & Soft Glow */
.status-message.error {
  background: rgba(255, 255, 255, 0.8);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  box-shadow:
    inset 0 0 10px rgba(239, 68, 68, 0.05),
    0 15px 35px -5px rgba(239, 68, 68, 0.15);
}

/* Success Icon Animation */
.status-message.success i {
  background: #10b981;
  color: white;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

/* Spinner for Button - Smoother & Thinner */
.fa-spinner {
  animation: ultra-spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  opacity: 0.8;
}

@keyframes ultra-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Text Detail */
.status-message span {
  position: relative;
  top: 1px;
}

@keyframes premium-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .contact-card-ultra-wide {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .floating-field.full-width {
    grid-column: span 1;
  }
}

/* ---------------------------------  Section 8 — Map  ------------------------------------------------ */

/* in line Css code for Map */

/* -------------------------------  Section 9 — Subscribe & contact ----------------------------------- */

:root {
  --olive-dark: #5b6b4f;
  --olive-light: #f4f6f2;
  /* Light Sage */
  --silk-white: #fdfdfb;
  --glass-border: rgba(255, 255, 255, 0.8);
}

.newsletter-unique {
  /* Change: Light, elegant gradient instead of solid gold */
  /* background: linear-gradient(135deg, #fdfdfb 0%, #f4f6f2 100%); */
  background: linear-gradient(180deg, #f9faf8 0%, #dce2d7 100%);
  padding: 49px 0;
  /* Increased for premium feel */
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}


/* Unique Decorative Background Shapes */
.newsletter-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  filter: blur(60px);
  pointer-events: none;
}

.shape-1 {
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: rgba(246, 216, 150, 0.3);
  /* Soft Gold glow */
}

.shape-2 {
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(91, 107, 79, 0.08);
  /* Soft Olive glow */
}

.newsletter-content {
  max-width: 1300px;
  /* Made wider */
  width: 90%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.sub-heading {
  display: block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 800;
  color: var(--olive-dark);
  margin-bottom: 15px;
  font-family: 'Raleway', sans-serif;
  opacity: 0.7;
}

.newsletter-text h2 {
  font-family: 'Sitka Display', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 38px);
  color: var(--olive-dark);
  line-height: 1.1;
  margin-bottom: 25px;
}

.newsletter-text p {
  font-family: "Raleway", sans-serif;
  max-width: 800px;
  line-height: 1.8;
  font-size: 17px;
  color: #555;
}

/* Unique "Glassmorphic" Form */
.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 60px;
  padding: 10px 10px 10px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.newsletter-form:focus-within {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(91, 107, 79, 0.15);
  border-color: var(--olive-dark);
}

.input-group {
  display: flex;
  align-items: center;
  flex: 1;
}

.input-group i {
  color: var(--olive-dark);
  font-size: 18px;
  margin-right: 15px;
}

.newsletter-form input {
  font-size: 16px;
  border: none;
  width: 100%;
  outline: none;
  font-family: 'Raleway', sans-serif;
  background: transparent;
  color: var(--olive-dark);
}

/* Premium Button Style */
.newsletter-form button {
  position: relative;
  background: var(--olive-dark);
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.newsletter-form button:hover {
  background: #46523c;
  padding-right: 45px;
  box-shadow: 0 10px 20px rgba(91, 107, 79, 0.3);
}

/* Hover Shimmer Effect */
.newsletter-form button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.newsletter-form button:hover::after {
  left: 150%;
}

.newsletter-form button i {
  transition: transform 0.4s ease;
}

.newsletter-form button:hover i {
  transform: translateX(5px);
}

/* Success Message Styling */
.subscription-message {
  margin-top: 25px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
  color: var(--olive-dark);
  font-family: 'Raleway', sans-serif;
}

.subscription-message.show {
  opacity: 1;
  transform: translateY(0);
}

.trust-text {
  margin-top: 15px;
  font-size: 12px;
  color: #999;
  text-align: center;
  font-family: 'Raleway', sans-serif;
}

/* Responsive Fix */
@media (max-width: 992px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .newsletter-text p {
    margin: 0 auto;
  }

  .newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    padding-left: 20px;
  }
}

/* -----------------------------------  Section 10 — footer Section --------------------------------------- */

/* ---------- CORE FOOTER STYLE ---------- */
.footer {
  background: #5b6b4f;
  color: #ffffff;
  padding-top: 60px;
  font-family: "Raleway", sans-serif;
}

.footer-container {
  /* Spans much wider to match a premium layout */
  max-width: 1550px;
  width: 94%;
  margin: 0 auto;
  padding: 0 0 20px 0;
  display: grid;
  /* Re-balanced to push content further to the edges */
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 100px;
  align-items: start;
}

/* Ensure the Newsletter matches this new wider alignment */
.newsletter-content {
  max-width: 1550px;
  width: 94%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 120px;
  align-items: center;
}

/* Responsive adjustment for standard screens */
@media (max-width: 1600px) {

  .footer-container,
  .newsletter-content {
    max-width: 1300px;
    gap: 60px;
  }
}

/* ---------- LOGO & BRANDING ---------- */
.logo-footer img {
  width: 250px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ---------- UNIQUE CONTACT CARDS ---------- */
.phone,
.address {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 15px;
  border: 1px solid rgba(252, 231, 162, 0.1);
  margin-bottom: 15px !important;
  display: flex !important;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone i,
.address i {
  background: #fce7a2;
  color: #5b6b4f;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 16px !important;
  margin-right: 15px;
  transition: 0.3s;
}

.phone:hover,
.address:hover {
  background: rgba(252, 231, 162, 0.1);
  border-color: #fce7a2;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.phone:hover i,
.address:hover i {
  transform: rotate(-10deg) scale(1.1);
}

/* ---------- KINETIC LISTS (Insurance & Company) ---------- */
.footer-col h4 {
  font-family: 'Sitka Display', 'Georgia', serif;
  font-size: 16px; /* Smaller is often more premium for footers */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px; /* Increased spacing for an elegant "editorial" look */
  color: #fce7a2; /* Keep the gold, but we will soften it with opacity */
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

/* The Premium Underline - Thin and Elegant */
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px; /* Short line creates a designer feel */
  height: 1.5px;
  background-color: #fce7a2;
  opacity: 0.6; /* Softens the gold so it doesn't look harsh */
  border-radius: 1px;
}

/* Optional: Slight hover glow for the text */
.footer-col h4:hover {
  text-shadow: 0 0 10px rgba(252, 231, 162, 0.3);
  transition: 0.3s ease;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-family: "Raleway", sans-serif;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* This ensures your links look like plain text until you hover */
.footer-col ul li a {
  text-decoration: none;
  color: inherit;
  /* Takes the white color from the li */
  display: flex;
  align-items: center;
  width: 100%;
}

/* Ensures the hover color change still works with the link */
.footer-col ul li:hover a {
  color: #fce7a2;
}

/* Rotating Bullet Point */
.footer-col ul li span {
  width: 20px;
  height: 20px;
  background: rgba(252, 231, 162, 0.15);
  color: #fce7a2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-right: 12px;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid rgba(252, 231, 162, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* .footer-col ul li:hover {
  transform: translateX(10px);
  color: #fce7a2;
} */

.footer-col ul li:hover span {
  background: #fce7a2;
  color: #5b6b4f;
  transform: rotate(90deg) scale(1.2);
  box-shadow: 0 0 12px rgba(252, 231, 162, 0.5);
}

/* ---------- LIQUID SOCIAL ICONS ---------- */
.social-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  justify-content: flex-start;
}

.social-icons a {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e0dddd;
  border-radius: 16px;
  /* Modern squircle */
  color: #5d6754;
  /* Your brand green */
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Effect: The "Lift & Color" */

/* Specific Colors on Hover for an "Original" Feel */
/* --- PREMIUM ROUNDED (ORBITAL) SOCIAL ICONS --- */
.social-icons a {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  
  /* The Perfect Circle Base */
  background: rgba(255, 255, 255, 0.05); 
  border: 1px solid rgba(212, 163, 115, 0.2); /* Soft Gold Stroke */
  border-radius: 50%; 
  
  color: #d4a373; /* Champagne Gold Icon */
  font-size: 1.3rem;
  
  /* Depth & Glass Effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  
  /* Inner Glow for a 3D feel */
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05), 
              0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hover State: The "Eclipse" Glow */
.social-icons a:hover {
  transform: translateY(-10px) scale(1.05);
  color: #ffffff;
  background: #d4a373; /* Flip to solid Gold */
  border-color: #fce7a2;
  
  /* Golden Bloom Shadow */
  box-shadow: 0 20px 40px rgba(212, 163, 115, 0.3), 
              0 0 0 8px rgba(212, 163, 115, 0.1);
}

/* The Floating "Aura" Ring */
.social-icons a::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #d4a373, transparent, #5d6754);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  opacity: 0.5;
  transition: all 0.6s ease;
}

.social-icons a:hover::after {
  opacity: 1;
  transform: scale(1.2); /* Ring expands outward */
}

/* Specific Subtle Brand Colors on Hover (Optional) */
/* We use a soft glow instead of a harsh background change */
.social-icons a.icon-insta:hover { box-shadow: 0 20px 40px rgba(253, 89, 73, 0.25); }
.social-icons a.icon-link:hover { box-shadow: 0 20px 40px rgba(0, 119, 181, 0.25); }
.social-icons a.icon-x:hover { box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2); }

/* Icon Interaction */
.social-icons a i {
  z-index: 2;
  transition: transform 0.5s ease;
}

.social-icons a:hover i {
  transform: scale(1.2);
}

@keyframes iconBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* ---------- GLASS-GLOW PAYMENTS ---------- */
/* Title Styling: Kept elegant but reduced margin to match smaller icons */
.pay-title {
  margin-top: 35px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pay-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.3), transparent);
}

/* Grid Layout: Smaller max-width and tighter gaps */
.payments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  /* Tighter spacing */
  max-width: 240px;
  /* Reduced from 320px for a smaller footprint */
}

/* The Refined Small Image Styling */
.payments img {
  background: #ffffff;
  padding: 6px;
  /* Reduced padding */
  border-radius: 10px;
  /* Slightly smaller radius for smaller box */
  border: 1px solid #e2e8f0;
  height: 40px;
  /* Reduced from 55px to make it "little bit smaller" */
  width: 100%;
  object-fit: contain;

  filter: grayscale(0.5) opacity(0.7);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  cursor: pointer;
}

/* The "Active" Hover State */
.payments img:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-4px);
  /* Smaller lift for a smaller box */
  background: #ffffff;
  border-color: #2563eb;

  box-shadow:
    0 10px 15px -3px rgba(37, 99, 235, 0.1),
    0 4px 6px -2px rgba(37, 99, 235, 0.05);
}

/* Subtle load-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payments img {
  animation: fadeInUp 0.5s ease forwards;
}


/* ---------- FOOTER BOTTOM ---------- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 10px 20px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* Responsive Fix */
@media (max-width: 992px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .newsletter-text p {
    margin: 0 auto;
  }

  .newsletter-form {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* --------------------------------------  End   -------------------------------------------- */



