/* ------------------------------------------------ Global Reset -------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Sitka Display", "Raleway", serif;
  font-size: 19px;
  font-weight: 600;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: #fdfdfd;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1360px;
  margin: auto;
}


/* -------------------------------------------- Section 1 — Navbar ------------------------------------------------- */

/* ==========================================================================
   DESKTOP CORE STRUCTURE
   ========================================================================== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(93, 103, 84, 0.1);
  position: sticky;
  top: 0;
  z-index: 99999;
  transition: all 0.3s ease;
}

.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: 26px 24px;
  box-sizing: border-box;
}

.logo img {
  width: 240px;
  height: auto;
  transition: transform 0.4s ease;
  display: block;
}

.logo:hover img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 65px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Base styles for all structural links */
.nav-links a, 
.dropdown-toggle {
  text-decoration: none;
  font-weight: 600;
  color: #5d6754;
  font-size: 17px;
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.3s ease;
}

.link-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Desktop line animation effects */
@media (min-width: 1025px) {
  .nav-links a::after,
  .dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a373;
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .nav-links a:hover,
  .dropdown-toggle:hover {
    color: #d4a373;
  }

  .nav-links a:hover::after,
  .dropdown-toggle:hover::after {
    width: 100%;
  }
}

/* --- DROPDOWN LAYOUT CONFIGURATION --- */
.dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  display: none;
  flex-direction: column;
  z-index: 100000;
  padding: 6px 0;
}

.dropdown-menu a {
  font-family: "Raleway", serif;
  font-size: 15px;
  padding: 10px 16px;
  color: #333;
  width: 100%;
  box-sizing: border-box;
}

.dropdown-menu a:hover {
  background: #f5f7fa;
  color: #d4a373;
}

@media (min-width: 1025px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
}

/* --- THE LIQUID LOGIN ACTION BUTTON --- */
.nav-actions {
  display: flex;
  align-items: center;
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  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;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-login:hover {
  border-radius: 50px;
  background: #4a5441;
  transform: scale(1.05) translateY(-2px);
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(93, 103, 84, 0.3);
}

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

.mobile-login-container {
  display: none;
}

/* ==========================================================================
   MOBILE & TABLET SYSTEM BREAKPOINT
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 32px;
    color: #5d6754;
    padding: 0;
    z-index: 100001;
  }

  /* Solid background opacity configuration to prevent underlying text bleed-through */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #ffffff; /* Replaced transparent glassmorphism layer with solid mask */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0; 
    padding: 100px 24px 40px 24px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 100000;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .nav-links.active {
    right: 0;
  }

  .dropdown, .solo-link {
    width: 100%;
    border-bottom: 1px solid rgba(93, 103, 84, 0.08);
  }

  /* Fixed horizontal row layouts for standard link selections */
  .dropdown-toggle, .nav-links a.solo-link {
    width: 100%;
    font-size: 19px;
    padding: 18px 8px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between; 
    align-items: center;
  }

  .dropdown-toggle::after, .nav-links a::after {
    display: none !important; /* Disables wide screen dynamic underline bars */
  }

  /* --- MOBILE DROPDOWN ACCORDION MENUS --- */
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    background: #fdfdfd;
    border-left: 3px solid #d4a373;
    border-radius: 0;
    padding: 4px 0;
    margin-bottom: 8px;
    transform: none;
  }

  .dropdown-menu a {
    font-size: 16px;
    padding: 12px 20px;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #d4a373;
  }

  /* --- FIXED MOBILE LOGIN BUTTON STRUCTURE --- */
  .mobile-login-container {
    display: flex;
    width: 100%;
    padding: 30px 8px 0 8px;
    box-sizing: border-box;
    margin-top: auto; 
  }

  .mobile-login-container .btn-login {
    width: 100%;
    justify-content: center;
    border-radius: 50px; /* Overrides irregular fluid curves to ensure clean pill scaling */
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 180px;
  }
  .nav-wrapper {
    padding: 16px;
  }
  .nav-links {
    width: 100%;
    max-width: 100%;
  }
}

/* ----------------------------------------- Section 2 - Hero Section ------------------------------------------- */
/* ==========================================================================
   CORE HERO SECTION WRAPPER STYLE
   ========================================================================== */
.hero {
  background: #fdfdfb url("../images/Home/curved-bg.png") no-repeat bottom center;
  background-size: 100% auto; /* Avoid tracking massive oversized horizontal scaling metrics */
  padding: 0px 0 50px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* --- TYPOGRAPHY AND CORE ENGINE CONTENT ELEMENTS --- */
.hero-text h1 {
  font-size: clamp(34px, 3.8vw, 52px); /* Premium balanced dynamic typographic fluid matrix */
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #5d6754;
  margin-top: 70px;
  margin-bottom: 24px;
  font-family: "Sitka Display", Georgia, serif;
  animation: textAppear 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-text p {
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 500;
  color: #4a4a4a;
  max-width: 540px;
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 35px;
  font-family: "Raleway", sans-serif;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #d4a373;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(15, 25, 15, 0.1));
  animation: floatImage 6s ease-in-out infinite;
  pointer-events: none;
}

/* --- LUXURY INTERACTIVE UX ACTIONS BUTTON --- */
.hero-btn {
  position: relative;
  background: #5d6754;
  color: #fce7a2;
  border: 1px solid rgba(212, 163, 115, 0.35);
  padding: 18px 40px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(93, 103, 84, 0.15);
  white-space: nowrap;
  outline: none;
}

.hero-btn i {
  margin-right: 10px;
  font-size: 14px;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(252, 231, 162, 0.25), transparent);
  transition: all 0.6s ease;
}

.hero-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 231, 162, 0.6), transparent);
  opacity: 0.3;
}

.hero-btn:hover {
  background: #464f3e;
  color: #ffffff;
  transform: translateY(-3px);
  border-color: rgba(252, 231, 162, 0.5);
  box-shadow: 0 15px 30px rgba(70, 79, 62, 0.25);
}

.hero-btn:hover::before { left: 100%; }
.hero-btn:active { transform: translateY(-1px); }

/* --- BACKGROUND DECORATION BRANDING --- */
.hero::before {
  content: 'INSURANCE';
  position: absolute;
  top: 4%;
  left: -2%;
  font-size: 11vw;
  font-weight: 900;
  color: rgba(93, 103, 84, 0.015);
  z-index: 0;
  pointer-events: none;
  font-family: "Raleway", sans-serif;
}

/* --- SWIPER NAVIGATION & PROGRESS CARDS METRICS --- */
.swiper-pagination {
  bottom: 25px !important;
}

.swiper-pagination-bullet {
  width: 24px !important;
  height: 3px !important;
  background-color: rgba(93, 103, 84, 0.3) !important;
  border-radius: 2px !important;
  opacity: 0.5 !important;
  transition: all 0.4s ease !important;
}

.swiper-pagination-bullet-active {
  background-color: #d4a373 !important;
  opacity: 1 !important;
  width: 40px !important;
}

/* ==========================================================================
   CONTACT MODAL GLASS SYSTEM DESIGN
   ========================================================================== */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 10, 0.75);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
  box-sizing: border-box;
}

.contact-modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-card {
  position: relative;
  width: 100%;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 40px 32px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.contact-modal-overlay.is-active .contact-modal-card {
  transform: translateY(0) scale(1);
}

.radial-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 163, 115, 0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: glowRotate 16s linear infinite;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(212, 163, 115, 0.12);
  border: 1px solid rgba(212, 163, 115, 0.3);
  color: #fce7a2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
}

.eyebrow-text {
  color: #d4a373;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 11px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  font-family: "Raleway", sans-serif;
}

.contact-modal-card h3 {
  color: #ffffff;
  font-family: "Sitka Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 10px 0;
}

.modal-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 28px;
  font-family: "Raleway", sans-serif;
}

.glass-action-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-action-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 163, 115, 0.4);
  transform: translateY(-2px);
}

.phone-link {
  text-decoration: none;
  display: block;
}

.label {
  display: block;
  color: #d4a373;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
  font-family: "Raleway", sans-serif;
}

.number-talk {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.close-minimal {
  margin-top: 25px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2.5px;
  padding: 8px 16px;
  transition: color 0.3s ease;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
}

.close-minimal:hover {
  color: #fff;
}


/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN ARCHITECTURE
   ========================================================================== */

/* Optimization layer for Small Desktop / Medium Viewports */
@media (max-width: 1200px) {
  .hero {
    padding: 50px 0 70px 0;
  }
  .hero-container {
    gap: 30px;
    grid-template-columns: 1.15fr 0.85fr;
  }
}

/* Landscape Tablet / Pivot Architecture Viewport Layer */
@media (max-width: 991px) {
  .hero {
    background-size: cover; /* Protect structural containment grids against hard cutoffs */
    padding: 60px 0 90px 0;
  }

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

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1; /* Retain standard clean visual prioritization stacking flow */
  }

  .hero-image {
    order: 2;
  }

  .hero-text p {
    border-left: none;
    border-top: 3px solid #d4a373;
    padding-left: 0;
    padding-top: 20px;
    margin: 0 auto 30px auto;
  }

  .hero-image img {
    max-width: 380px;
  }
}

/* Mobile Viewports (Smartphones and Phablets) */
@media (max-width: 576px) {
  .hero {
    padding: 40px 0 80px 0;
  }

  .hero-container {
    padding: 0 20px;
    gap: 35px;
  }

  .hero-text h1 {
    margin-bottom: 18px;
  }

  .hero-text p {
    font-size: 15px;
    line-height: 1.65;
    padding-top: 15px;
    margin-bottom: 28px;
  }

  .hero-btn {
    width: 100%; /* Optimize tap surface areas for single hand touch actions */
    padding: 16px 24px;
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero-btn:hover {
    letter-spacing: 2px;
    transform: translateY(-2px);
  }

  .hero-image img {
    max-width: 270px;
  }

  /* Micro Interface Scaling Updates for Modals */
  .contact-modal-overlay {
    padding: 16px;
  }

  .contact-modal-card {
    padding: 35px 20px 25px 20px;
    border-radius: 22px;
  }

  .contact-modal-card h3 {
    font-size: 1.45rem;
  }

  .modal-desc {
    font-size: 13.5px;
    margin-bottom: 22px;
  }

  .number-talk {
    font-size: 1.3rem;
  }

  .glass-action-box {
    padding: 16px;
    border-radius: 14px;
  }
}

/* Specific Ultra-Small Mobile Scaling Layer (e.g., iPhone SE, Fold) */
@media (max-width: 360px) {
  .hero-text h1 {
    font-size: 28px;
  }
  
  .hero-image img {
    max-width: 220px;
  }
  
  .number-talk {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   ENGINE RENDERING ANIMATION SYSTEM
   ========================================================================== */
@keyframes floatImage {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

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

@keyframes glowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ----------------------------------------- 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: 48px;
  font-weight: 400;
  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;
  --p-gold-light: rgba(197, 160, 89, 0.15);
  --p-gold-solid: #c5a059;
}

.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 24px;
  box-sizing: border-box;
}

.p-header {
  text-align: center;
  margin-bottom: 60px;
}

.p-title {
  font-family: "Sitka Display", Georgia, serif;
  font-size: 44px;
  color: var(--jade);
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  margin: 0;
}

.p-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ==========================================================================
   FLEXIBLE SYSTEM LAYOUT GRID
   ========================================================================== */
.p-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* --- Left Image Area Framework --- */
.p-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.p-round-simple-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1; /* Retains clean circle proportions across dynamic browser scales */
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.halo-ring {
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid var(--p-gold-solid);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.5s ease;
  opacity: 0.6;
}

.p-main-circle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  background: #fff;
  border: 8px solid #fff;
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  transition: all 0.5s ease;
  box-sizing: border-box;
}

.p-main-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

/* --- DESKTOP HOVER HOVER CONTROLS --- */
@media (min-width: 1025px) {
  .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);
  }

  .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);
  }
}

/* --- Right Benefits Layout Container --- */
.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);
  overflow: hidden;
  box-sizing: border-box;
}

.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-size: 24px;
  color: var(--dark);
  margin: 0;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.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: 15px 0 0 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/* --- DESKTOP ACCORDION EFFECTS --- */
@media (min-width: 1025px) {
  .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 DESIGN SYSTEM MEDIA BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .p-content-grid {
    gap: 50px;
  }
  
  .p-item {
    padding: 28px 30px;
  }
}

@media (max-width: 991px) {
  .premium-benefits {
    padding: 60px 0;
  }

  .p-header {
    margin-bottom: 40px;
  }

  .p-content-grid {
    grid-template-columns: 1fr; /* Flattens structural cards row into stacked list items */
    gap: 40px;
  }

  /* Pushes image to the layout center */
  .p-image-wrapper {
    order: -1; 
    padding: 0 0 20px 0;
  }

  .p-round-simple-frame {
    max-width: 320px; /* Scaled safe size wrapper bounds prevents text compression issues */
  }

  /* --- ACCORDION FALLBACK MECHANISM FOR TOUCH DEVIES --- */
  .p-item {
    border-color: rgba(93, 103, 84, 0.12);
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  }

  .p-item .p-accent-bar {
    width: 6px; /* Permanent solid border status marker */
  }

  /* Automatically displays the descriptive card rows clearly */
  .p-item .p-item-details {
    max-height: none;
    opacity: 1;
    overflow: visible;
  }

  .p-item-num {
    font-size: 80px;
    bottom: -10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .p-title {
    font-size: 34px;
  }

  .p-item {
    padding: 24px 20px;
  }

  .p-item-body h3 {
    font-size: 21px;
  }

  .p-item-details p {
    font-size: 14px;
  }

  .p-item-num {
    display: none; /* Strip back massive background numerals to preserve layout real estate */
  }
}

/* ---------------------------- 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);
  --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);
}

/* --- SECTIONS & CONTAINERS --- */
.contact-section-wide {
  background: #ffffff;
  padding: 80px 10%; /* Replaced rigid 200px padding with safe fluid variance */
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.luxury-container-expansive {
  max-width: 1400px;
  width: 100%;
}

.contact-card-ultra-wide {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  background: var(--white-pure);
  border-radius: 40px; /* Refined for better aesthetic cohesion */
  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;
  width: 100%;
}

/* --- LEFT PANEL: INFO --- */
.contact-info-panel {
  background: var(--sage-deep);
  padding: 60px 50px;
  color: var(--white-pure);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ultra-title {
  font-family: 'Sitka Display', serif;
  font-size: clamp(28px, 3vw, 36px); /* Fluid title sizing */
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 0;
}

.premium-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 35px;
  position: relative;
}

.premium-divider::before {
  content: "";
  height: 2px;
  width: 60px;
  background: linear-gradient(to right, var(--gold-accent), transparent);
  border-radius: 2px;
}

.premium-divider::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold-accent);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(243, 199, 122, 0.6);
  animation: diamond-glow 3s infinite ease-in-out;
}

@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: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid #f3c77a;
  max-width: 100%;
  margin-bottom: 40px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  box-sizing: border-box;
}

.ultra-subtext:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

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

.contact-item-box i {
  font-size: 18px;
  color: var(--gold-accent);
  width: 24px;
  text-align: center;
}

.box-text small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.box-text p {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Raleway', sans-serif;
  line-height: 1.4;
  margin: 0;
}

/* --- ADDRESS BLOCK --- */
.address-premium-wrapper {
  display: flex;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(243, 199, 122, 0.15);
}

.address-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.loc-icon-circle {
  width: 36px;
  height: 36px;
  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: 13px;
  transition: all 0.4s ease;
}

.vertical-connector {
  width: 1px;
  flex-grow: 1;
  background: linear-gradient(to bottom, var(--gold-accent), transparent);
  opacity: 0.4;
}

.address-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.location-tag {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-accent);
  font-weight: 800;
  margin-bottom: 3px;
}

.building-name {
  font-family: 'Sitka Display', serif;
  font-size: 19px;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
}

.street-detail,
.city-pin {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin: 0;
}

.address-premium-wrapper:hover .loc-icon-circle {
  background: var(--gold-accent);
  color: var(--sage-deep);
  transform: scale(1.05);
}

/* --- RIGHT PANEL: FORM --- */
.contact-form-panel {
  padding: 60px 60px;
  display: flex;
  align-items: center;
  background: var(--white-pure);
}

.wide-form {
  width: 100%;
}

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

.floating-field {
  position: relative;
  margin-bottom: 35px;
}

.floating-field.full-width {
  grid-column: span 2;
}

.floating-field input,
.floating-field textarea {
  width: 100%;
  padding: 30px 0;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  background: transparent;
  outline: none;
  font-family: 'Raleway', sans-serif;
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.floating-field label {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 16px;
  color: #999;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.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: -18px;
  font-size: 12px;
  color: var(--sage-deep);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.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: 90px;
  resize: none;
}

/* --- PREMIUM INTERACTION BUTTON --- */
.minimal-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--btn-luxury-grad);
  color: #f3c77a;
  border: 1px solid rgba(243, 199, 122, 0.3);
  padding: 15px 35px;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  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 10px 25px rgba(0, 0, 0, 0.15);
}

.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(-3px);
  border-color: #f3c77a;
  box-shadow: 0 15px 30px rgba(74, 93, 63, 0.25), 0 0 15px var(--gold-glow);
  color: #ffffff;
}

.minimal-btn:hover::after { left: 100%; }
.minimal-btn i { font-size: 14px; transition: all 0.4s ease; }
.minimal-btn:hover i { transform: translateX(4px) rotate(-10deg); }

/* --- STATUS LAYER --- */
.status-message {
  margin-top: 20px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.status-message.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --- BREAKPOINT RESPONSE QUERIES --- */

/* Laptops / Smaller Desktops */
@media (max-width: 1200px) {
  .contact-section-wide {
    padding: 60px 5%;
  }
  .contact-card-ultra-wide {
    min-height: auto;
  }
}

/* Tablets & Small Landscape Displays */
@media (max-width: 1024px) {
  .contact-card-ultra-wide {
    grid-template-columns: 1fr; /* Switch to single stack */
  }

  .contact-info-panel {
    padding: 50px 40px;
  }

  .contact-form-panel {
    padding: 50px 40px;
  }
}

/* Small Tablets / Phablets */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr; /* Form grid fields stack vertically */
    gap: 0;
  }

  .floating-field.full-width {
    grid-column: span 1;
  }
}

/* Small Smartphone Screen Adjustments (e.g., iPhone SE up to Pro Max models) */
@media (max-width: 480px) {
  .contact-section-wide {
    padding: 30px 15px; /* Shrink structural outer margins */
  }

  .contact-card-ultra-wide {
    border-radius: 24px; /* Soften corner radii for tiny screens */
  }

  .contact-info-panel {
    padding: 40px 20px;
  }

  .contact-form-panel {
    padding: 40px 20px;
  }

  .ultra-subtext {
    padding: 15px;
  }

  .address-premium-wrapper {
    gap: 15px;
  }

  .building-name {
    font-size: 17px;
  }

  .street-detail, .city-pin {
    font-size: 14px;
  }

  .minimal-btn {
    width: 100%; /* Maximize interactive tap targets across thumb span */
    box-sizing: border-box;
  }
}



/* ---------------------------------  Section 8 — Map  ------------------------------------------------ */

/* in line Css code for Map */






/* -------------------------------  Section 9 — Subscribe & contact ----------------------------------- */

:root {
  --olive-dark: #5b6b4f;
  --olive-light: #f4f6f2;
  --silk-white: #fdfdfb;
  --glass-border: rgba(255, 255, 255, 0.8);
}

.newsletter-unique {
  background: linear-gradient(180deg, #f9faf8 0%, #dce2d7 100%);
  padding: 60px 0; /* Normalized for better structural balance */
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  width: 100%;
  box-sizing: border-box;
}

/* 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);
}

.shape-2 {
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(91, 107, 79, 0.08);
}

.newsletter-content {
  max-width: 1300px;
  width: 90%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px; /* Refined layout gap sizing */
  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(28px, 3.5vw, 38px); /* Adjusted lower bound clamp */
  color: var(--olive-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 0;
}

.newsletter-text p {
  font-family: "Raleway", sans-serif;
  max-width: 800px;
  line-height: 1.7;
  font-size: clamp(15px, 1.5vw, 17px);
  color: #555;
  margin-top: 0;
}

.newsletter-form-container {
  width: 100%;
}

/* Unique "Glassmorphic" Form */
.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 60px;
  padding: 8px 8px 8px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-sizing: border-box;
}

.newsletter-form:focus-within {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(91, 107, 79, 0.12);
  border-color: var(--olive-dark);
}

.input-group {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0; /* Fixes browser overflow triggers on input fields */
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-group i {
  color: var(--olive-dark);
  font-size: 18px;
  margin-right: 12px;
}

.newsletter-form input {
  font-size: 15px;
  border: none;
  width: 100%;
  outline: none;
  font-family: 'Raleway', sans-serif;
  background: transparent;
  color: var(--olive-dark);
}

.newsletter-form input::placeholder {
  color: rgba(91, 107, 79, 0.5);
}

/* Premium Button Style */
.newsletter-form button {
  position: relative;
  background: var(--olive-dark);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #46523c;
  padding-right: 40px;
  box-shadow: 0 10px 20px rgba(91, 107, 79, 0.25);
}

/* 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 {
  font-size: 13px;
  transition: transform 0.4s ease;
}

.newsletter-form button:hover i {
  transform: translateX(4px);
}

.footer-meta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-text {
  margin-top: 15px;
  font-size: 12px;
  color: #777;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Success Message Styling */
.subscription-message {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  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);
}

/* --- RESPONSIVE MEDIA BREAKPOINTS --- */

/* Breakpoint for Tablets and Small Desktops */
@media (max-width: 992px) {
  .newsletter-unique {
    padding: 50px 0;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
  }

  .newsletter-text p {
    margin: 0 auto;
  }

  .newsletter-form {
    max-width: 550px;
    margin: 0 auto;
  }
}

/* Breakpoint for Smartphones (Layout transformation point) */
@media (max-width: 576px) {
  .newsletter-unique {
    padding: 40px 0;
  }

  .newsletter-content {
    width: 88%;
  }

  /* Form strips away layout row and stacks element cards beautifully */
  .newsletter-form {
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 15px;
    border-radius: 0;
  }

  .newsletter-form:focus-within {
    transform: none;
    box-shadow: none;
  }

  /* Glass background styling shifts into the inner input layout box */
  .input-group {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(91, 107, 79, 0.2);
    border-radius: 30px;
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
  }

  .newsletter-form .input-group:focus-within {
    border-color: var(--olive-dark);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(91, 107, 79, 0.08);
  }

  /* Full-width premium target scaling for tap selection */
  .newsletter-form button {
    width: 100%;
    padding: 16px 24px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(91, 107, 79, 0.15);
  }

  .newsletter-form button:hover {
    padding-right: 24px; /* Disables wide padding shift on small screen views */
  }
  
  .newsletter-form button:hover i {
    transform: none;
  }

  .shape-1 {
    width: 250px;
    height: 250px;
  }
}



/* -----------------------------------  Section 10 — footer Section --------------------------------------- */
/* ---------- CORE FOOTER STYLE ---------- */
.footer {
  background: #5b6b4f;
  color: #ffffff;
  padding-top: 60px;
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
}

.footer-container {
  max-width: 1550px;
  width: 90%;
  margin: 0 auto;
  padding: 0 0 40px 0;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Address Clean-up styling */
.address-text {
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
}

/* ---------- LOGO & BRANDING ---------- */
.logo-footer img {
  max-width: 100%;
  width: 250px;
  height: auto;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.logo-footer img:hover {
  transform: scale(1.03);
}

/* ---------- 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;
  display: flex;
  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;
  min-width: 38px; /* Prevents shrinking inside flexbox */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 16px;
  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);
}

/* ---------- LISTS (Insurance & Company) ---------- */
.footer-col h4 {
  font-family: 'Sitka Display', 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fce7a2;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 1.5px;
  background-color: #fce7a2;
  opacity: 0.6;
  border-radius: 1px;
}

.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;
  margin: 0;
}

.footer-col ul li {
  font-family: "Raleway", sans-serif;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-col ul li a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  width: 100%;
}

.footer-col ul li:hover a {
  color: #fce7a2;
}

.footer-col ul li span {
  width: 20px;
  height: 20px;
  min-width: 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 span {
  background: #fce7a2;
  color: #5b6b4f;
  transform: rotate(90deg) scale(1.2);
  box-shadow: 0 0 12px rgba(252, 231, 162, 0.5);
}

/* ---------- SOCIAL ICONS ---------- */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}

.social-icons a {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05); 
  border: 1px solid rgba(212, 163, 115, 0.2); 
  border-radius: 50%; 
  color: #d4a373; 
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.05);
  color: #ffffff;
  background: #d4a373; 
  border-color: #fce7a2;
  box-shadow: 0 15px 30px rgba(212, 163, 115, 0.3);
}

.social-icons a i {
  z-index: 2;
}

/* ---------- PAYMENT METHODS ---------- */
.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);
}

.payments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 240px;
}

.payments img {
  background: #ffffff;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  height: 38px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(0.5) opacity(0.7);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.payments img:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-3px);
  border-color: #2563eb;
}

/* ---------- FOOTER BOTTOM ---------- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 25px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  letter-spacing: 0.5px;
}


/* ==========================================================================
   BREAKPOINTS & RESPONSIVE QUERIES
   ========================================================================== */

/* Laptop Screens (Scale down grid gaps cleanly) */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1.1fr;
    gap: 40px;
    width: 92%;
  }
}

/* Tablet Landscape/Portrait (2-Column Grid Layout) */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }

  .branding-col {
    grid-column: span 1;
  }
  
  .action-col {
    grid-column: span 1;
  }
}

/* Custom breakpoint to gracefully layout components when tight */
@media (max-width: 650px) {
  .footer-container {
    grid-template-columns: 1fr; /* Single column layout stack */
    gap: 40px;
    padding-bottom: 30px;
  }

  /* Force elements to span across the single columns seamlessly */
  .branding-col, 
  .action-col {
    grid-column: span 1;
  }

  .footer-col h4 {
    margin-bottom: 20px;
  }

  .logo-footer img {
    width: 200px; /* Marginally downscale logo footprint on micro screens */
  }

  .payments {
    max-width: 280px; /* Gives standard touch targets slightly better balance */
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-bottom {
    font-size: 12px;
    padding: 20px 15px;
  }
}

/* --------------------------------------  End   -------------------------------------------- */



