/* -----------------------------------------------------------
   INDEX.CSS - Design System & Custom Styles
   Client: Sujatha D. Shetty (LIC Agent, CM Club Member, MDRT)
   ----------------------------------------------------------- */

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

/* Color Spaces & Gradients Fallback */
:root {
  --in-oklab: ;
  --in-oklch: ;
  
  /* Color Tokens */
  --primary: #0f4c81;         /* Trustworthy Royal Blue */
  --primary-dark: #0a3356;
  --primary-light: #e3f2fd;
  --secondary: #134074;       /* Deep Navy */
  --accent-gold: #d4af37;     /* Premium Gold */
  --accent-gold-hover: #c5a028;
  --accent-gold-light: #fdf6e2;
  --accent-gold-dark: #997d25;
  --text-dark: #0b1e36;
  --text-muted: #5c6f84;
  --bg-light: #f4f8fb;
  --bg-white: #ffffff;
  --dark-bg: #081120;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px rgba(15, 76, 129, 0.08);
  
  /* Fonts */
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  /* Spacing */
  --container-width: 1200px;
  
  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 76, 129, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 76, 129, 0.09);
  --shadow-lg: 0 20px 50px rgba(15, 76, 129, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@supports (linear-gradient(in oklab, white, black)) {
  :root {
    --in-oklab: in oklab;
    --in-oklch: in oklch;
  }
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px; /* Navbar height */
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Layouts */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-block-size: auto 600px;
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--bg-white);
}

.section-dark h2 {
  color: var(--bg-white);
}

.section-dark p {
  color: #a0aec0;
}

.text-gradient {
  background: linear-gradient(135deg var(--in-oklch), var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-gradient {
  background: linear-gradient(135deg var(--in-oklch), var(--accent-gold), var(--accent-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight {
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.15) 100%);
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  font-weight: 700;
  color: var(--secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-header p {
  font-size: 1.125rem;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right var(--in-oklab), var(--accent-gold), var(--primary));
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 9999;
}

@supports (animation-timeline: scroll()) {
  .scroll-progress {
    transform: none;
    animation: grow-progress auto linear;
    animation-timeline: scroll();
  }
}

@keyframes grow-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg var(--in-oklch), var(--primary), var(--secondary));
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(15, 76, 129, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 76, 129, 0.4);
}

.btn-gold {
  background: linear-gradient(135deg var(--in-oklch), var(--accent-gold), var(--accent-gold-dark));
  color: var(--dark-bg);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border-color: var(--bg-white);
  color: var(--bg-white);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Header & Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  height: 70px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary);
  line-height: 1.1;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--accent-gold-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: var(--transition-normal);
  border-radius: 3px;
}

/* Hero Section */
.hero-sec {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, #eef6fc 0%, var(--bg-light) 60%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.hero-sec::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15, 76, 129, 0.05) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-container {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-badge {
  background: var(--bg-white);
  border: 1px solid rgba(15, 76, 129, 0.15);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.hero-badge-gold {
  background: var(--accent-gold-light);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--accent-gold-dark);
}

.hero-title {
  font-size: 3.5rem;
  font-family: var(--font-serif);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(15, 76, 129, 0.1);
  padding-top: 2rem;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image-container {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-white);
  aspect-ratio: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hero-image-container:hover .hero-image {
  transform: scale(1.03);
}

.hero-floating-card {
  position: absolute;
  bottom: 30px;
  left: -40px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 250px;
  z-index: 3;
}

.floating-card-icon {
  background: var(--primary-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.floating-card-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.floating-card-info p {
  font-size: 0.75rem;
}

/* Credentials / Badges Section */
.credentials-sec {
  background-color: var(--bg-white);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.credential-card {
  padding: 3rem 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid rgba(15, 76, 129, 0.08);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.credential-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition-normal);
  transform-origin: 50% 50%;
}

.credential-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.credential-card:hover::before {
  transform: scaleX(1);
}

.credential-card-gold::before {
  background: var(--accent-gold);
}

.cred-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition-normal);
}

.credential-card:hover .cred-icon-wrap {
  transform: scale(1.1);
  background: var(--primary-light);
}

.credential-card-gold .cred-icon-wrap {
  background: var(--accent-gold-light);
  color: var(--accent-gold-dark);
}

.credential-card-gold:hover .cred-icon-wrap {
  background: var(--accent-gold-hover);
  color: var(--bg-white);
}

.credential-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}

.credential-card p {
  font-size: 0.95rem;
}

/* Tabbed Products / Solutions Section */
.products-sec {
  background: linear-gradient(180deg var(--in-oklab), var(--bg-light) 0%, #fff 100%);
}

.product-tabs-header {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-white);
  border: 1px solid rgba(15, 76, 129, 0.1);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-muted);
}

.tab-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(15, 76, 129, 0.2);
}

.product-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-grid.active {
  display: grid;
  animation: fade-in-up var(--transition-normal) forwards;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 76, 129, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 76, 129, 0.1);
}

.product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.product-tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.product-card-header svg {
  color: var(--accent-gold);
}

.product-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.product-card p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.product-features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.product-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.product-features-list svg {
  color: #10b981;
  flex-shrink: 0;
}

.product-card .btn {
  width: 100%;
}

/* Interactive Policy Finder Widget */
.finder-sec {
  background: linear-gradient(135deg var(--in-oklab), var(--primary-dark), var(--secondary));
  color: var(--bg-white);
  overflow: hidden;
}

.finder-sec h2 {
  color: var(--bg-white);
  font-family: var(--font-serif);
}

.finder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.finder-text h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.finder-text p {
  color: #b2c2d3;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.finder-benefits {
  list-style: none;
}

.finder-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.finder-benefits svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.finder-card-container {
  position: relative;
  z-index: 2;
}

.finder-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.finder-step {
  display: none;
}

.finder-step.active {
  display: block;
  animation: fade-in-up 0.4s forwards;
}

.finder-step-header {
  margin-bottom: 2rem;
}

.finder-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  overflow: hidden;
}

.finder-progress-fill {
  height: 100%;
  background: var(--accent-gold);
  width: 33.33%;
  transition: width 0.3s ease;
}

.finder-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-white);
}

.finder-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.finder-option-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  color: var(--bg-white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.finder-option-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-gold);
  transform: translateX(4px);
}

.finder-option-btn.selected {
  background: var(--accent-gold);
  color: var(--dark-bg);
  border-color: var(--accent-gold);
}

.finder-option-btn svg {
  opacity: 0;
  transition: var(--transition-fast);
}

.finder-option-btn.selected svg {
  opacity: 1;
}

.finder-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.finder-result-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.finder-result-title {
  color: var(--accent-gold);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.finder-result-desc {
  font-size: 0.95rem;
  color: #b2c2d3;
  margin-bottom: 1.5rem;
}

.finder-result-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* About Agent Section */
.about-sec {
  background-color: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-white);
  aspect-ratio: 4 / 5;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-images-decor {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--accent-gold-light);
  width: 150px;
  height: 150px;
  border-radius: var(--radius-md);
  z-index: -1;
  display: block;
}

.about-text h2 {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
}

.about-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-desc {
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-feat-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.about-feat-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.about-feat-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.about-feat-item p {
  font-size: 0.85rem;
}

/* Video Section */
.video-sec {
  background: linear-gradient(180deg var(--in-oklab), var(--bg-white) 0%, var(--bg-light) 100%);
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--bg-white);
  box-shadow: var(--shadow-lg);
}

.promo-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Gallery Section */
.gallery-sec {
  background: linear-gradient(180deg var(--in-oklab), var(--bg-light) 0%, var(--bg-white) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--bg-white);
  aspect-ratio: 4/3;
  cursor: pointer;
  group: true;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(8, 17, 32, 0.9) 0%, rgba(8, 17, 32, 0.4) 60%, transparent 100%);
  padding: 2rem 1.5rem;
  color: var(--bg-white);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-normal);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  color: #cbd5e0;
  font-size: 0.9rem;
}

/* FAQ Accordion Section */
.faq-sec {
  background-color: var(--bg-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

details.faq-item {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(15, 76, 129, 0.05);
  overflow: hidden;
  transition: all var(--transition-normal);
}

details.faq-item[open] {
  box-shadow: var(--shadow-md);
  background-color: var(--bg-white);
  border-color: rgba(15, 76, 129, 0.1);
}

summary.faq-summary {
  list-style: none;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

summary.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

details.faq-item[open] .faq-icon-toggle {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 2rem 1.5rem 2rem;
  font-size: 0.975rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(15, 76, 129, 0.05);
  padding-top: 1.25rem;
  animation: slide-down 0.35s ease-out;
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact & Lead Gen Form Section */
.contact-sec {
  background: linear-gradient(180deg var(--in-oklab), var(--bg-light) 0%, var(--bg-white) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
}

.contact-info-card {
  padding: 3rem 2.5rem;
  color: var(--bg-white);
  background: linear-gradient(135deg var(--in-oklch), var(--primary-dark), var(--secondary));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  top: -150px;
  right: -150px;
}

.contact-info-card h3 {
  color: var(--bg-white);
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info-card > p {
  color: #b2c2d3;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.contact-details-list {
  list-style: none;
  margin-bottom: 4rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-detail-icon {
  background: rgba(255, 255, 255, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #90a4ae;
  margin-bottom: 0.25rem;
}

.contact-detail-text p {
  color: var(--bg-white);
  font-size: 1rem;
  font-weight: 500;
}

.contact-detail-text a {
  color: var(--bg-white);
}

.contact-detail-text a:hover {
  color: var(--accent-gold);
}

.contact-socials h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #90a4ae;
  margin-bottom: 1rem;
}

.contact-socials-grid {
  display: flex;
  gap: 1rem;
}

.social-link {
  background: rgba(255, 255, 255, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-gold);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

/* Contact Form styling */
.contact-form-panel {
  padding: 3rem;
}

.contact-form-panel h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-form-panel > p {
  margin-bottom: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-input {
  width: 100%;
  background: var(--bg-light);
  border: 1.5px solid rgba(15, 76, 129, 0.15);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  transition: all var(--transition-fast);
  outline: none;
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

.form-label {
  position: absolute;
  top: 1.2rem;
  left: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all var(--transition-fast);
  background: transparent;
}

/* Floating label effect */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -0.65rem;
  left: 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  background-color: var(--bg-white);
  padding: 0 0.4rem;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.08);
  background-color: var(--bg-white);
}

/* Validation styles */
.form-input:user-valid {
  border-color: #10b981;
}

/* Footer Section */
.footer {
  background-color: var(--dark-bg);
  color: #90a4ae;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-brand h2 {
  color: var(--bg-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #90a4ae;
}

.footer-links-col h3 {
  color: var(--bg-white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  font-size: 0.95rem;
  color: #90a4ae;
}

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

.footer-contact-col h3 {
  color: var(--bg-white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.footer-contact-list svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  color: #607d8b;
  max-width: 800px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #607d8b;
  white-space: nowrap;
}

/* Lightbox Modal for Gallery */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 17, 32, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 85%;
  max-height: 85%;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  border-radius: var(--radius-sm);
  border: 4px solid var(--bg-white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 17, 32, 0.8);
  color: var(--bg-white);
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  text-align: center;
}

/* Success Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 17, 32, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.success-modal {
  background: var(--bg-white);
  max-width: 480px;
  width: 90%;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  border: 1px solid rgba(15, 76, 129, 0.1);
}

.modal-overlay.active .success-modal {
  transform: scale(1);
}

.success-icon-wrap {
  width: 72px;
  height: 72px;
  background: #e6fcf5;
  color: #0ca678;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.success-modal h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.success-modal p {
  font-size: 0.975rem;
  margin-bottom: 2rem;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Native Scroll-driven Animations Entry Reveal */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes reveal-in {
      from {
        opacity: 0;
        transform: translateY(60px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .scroll-reveal {
      animation: reveal-in auto linear forwards;
      animation-timeline: view();
      animation-range: entry 5% entry 40%;
    }
    
    .scroll-reveal-stagger > * {
      animation: reveal-in auto linear forwards;
      animation-timeline: view();
      animation-range: entry 5% entry 30%;
    }
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-grid {
    gap: 2rem;
  }
  .credentials-grid {
    gap: 1.5rem;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .finder-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-images-decor {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-grid > :first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  .header {
    height: 70px;
  }
  .logo-text h1 {
    font-size: 1.15rem;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-white);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2rem;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.active {
    left: 0;
  }
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 20px;
  }
  .hero-badge-container {
    justify-content: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
  .credentials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .contact-form-panel {
    padding: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > :first-child {
    grid-column: span 1;
  }
  .footer-disclaimer {
    flex-direction: column;
    text-align: center;
  }
  .footer-copyright {
    align-items: center !important;
    margin-top: 1rem;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: all var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  background-color: #128c7e;
  color: white;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Pulsing ring effect */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.3;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

