/* ===================================
   CELL CARE DIAGNOSTICS
   Primary: rgb(5, 21, 19)
   =================================== */

   *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

   :root {
       --primary: rgb(5, 21, 19);
       --primary-mid: rgb(10, 45, 40);
       --primary-light: rgb(18, 78, 70);
       --accent: rgb(20, 184, 166);
       --accent-dim: rgba(20,184,166,0.12);
       --accent-border: rgba(20,184,166,0.3);
       --accent-light: rgb(204, 251, 241);
       --gold: rgb(217, 175, 82);
       --text-dark: rgb(5, 21, 19);
       --text-mid: rgb(30, 58, 52);
       --text-muted: rgb(100, 130, 120);
       --bg-light: rgb(246, 252, 250);
       --bg-soft: rgb(236, 253, 245);
       --white: #ffffff;
       --border: rgba(5, 21, 19, 0.08);
       --shadow-sm: 0 2px 12px rgba(5,21,19,0.06);
       --shadow-md: 0 8px 32px rgba(5,21,19,0.1);
       --shadow-lg: 0 20px 60px rgba(5,21,19,0.14);
       --shadow-xl: 0 30px 80px rgba(5,21,19,0.24);
       --radius-sm: 10px;
       --radius-md: 16px;
       --radius-lg: 24px;
       --radius-pill: 50px;
       --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
       --section-pad: clamp(64px, 10vw, 110px);
   }
   
   html { scroll-behavior: smooth; font-size: 16px; }
   body {
       font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
       line-height: 1.6;
       color: var(--text-mid);
       overflow-x: hidden;
       -webkit-font-smoothing: antialiased;
       background: var(--white);
   }
   img { max-width: 100%; height: auto; display: block; }
   a { text-decoration: none; color: inherit; }
   
   .container {
       width: 100%;
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 clamp(1rem, 4vw, 2rem);
   }

   /* ===== TESTS TICKER ===== */
   .tests-ticker {
       background: var(--primary);
       border-bottom: 1px solid rgba(20,184,166,0.2);
       padding: 0;
       overflow: hidden;
       white-space: nowrap;
       position: relative;
       z-index: 999;
   }
   .tests-ticker::before,
   .tests-ticker::after {
       content: '';
       position: absolute;
       top: 0; bottom: 0;
       width: 80px;
       z-index: 2;
       pointer-events: none;
   }
   .tests-ticker::before {
       left: 0;
       background: linear-gradient(to right, var(--primary) 0%, transparent 100%);
   }
   .tests-ticker::after {
       right: 0;
       background: linear-gradient(to left, var(--primary) 0%, transparent 100%);
   }
   .ticker-label {
       display: inline-flex;
       align-items: center;
       gap: 0.4rem;
       background: var(--accent);
       color: var(--primary);
       font-size: 0.72rem;
       font-weight: 800;
       letter-spacing: 0.08em;
       text-transform: uppercase;
       padding: 0.55rem 1rem;
       position: absolute;
       left: 0; top: 0; bottom: 0;
       z-index: 3;
       white-space: nowrap;
   }
   .ticker-track {
       display: inline-flex;
       gap: 0;
       animation: ticker-scroll 40s linear infinite;
       padding-left: 140px;
   }
   .ticker-track:hover { animation-play-state: paused; }
   .ticker-item {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       padding: 0.55rem 1.5rem;
       font-size: 0.8rem;
       color: rgba(255,255,255,0.82);
       font-weight: 500;
       white-space: nowrap;
       cursor: default;
       transition: color 0.2s;
   }
   .ticker-item:hover { color: var(--accent); }
   .ticker-item i {
       color: var(--accent);
       font-size: 0.7rem;
       opacity: 0.7;
   }
   .ticker-sep {
       display: inline-flex;
       align-items: center;
       color: rgba(20,184,166,0.35);
       font-size: 0.7rem;
       padding: 0 0.25rem;
   }
   @keyframes ticker-scroll {
       0%   { transform: translateX(0); }
       100% { transform: translateX(-50%); }
   }
   
   /* ===== NAVBAR ===== */
   .navbar {
       position: fixed; top: 0; width: 100%;
       background: rgba(255,255,255,0.97);
       backdrop-filter: blur(24px);
       -webkit-backdrop-filter: blur(24px);
       z-index: 1000;
       padding: clamp(0.8rem,1.5vw,1rem) 0;
       box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
       transition: var(--transition);
   }
   /* When ticker is present, navbar sits below it */
   body.has-ticker .navbar {
       top: 36px;
   }
   .nav-container {
       max-width: 1200px; margin: 0 auto;
       padding: 0 clamp(1rem,4vw,2rem);
       display: flex; justify-content: space-between; align-items: center; gap: 1rem;
   }
   .nav-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
   .logo-icon {
       width: clamp(36px,4vw,42px); height: clamp(36px,4vw,42px);
       background: var(--primary); border-radius: 9px;
       display: flex; align-items: center; justify-content: center;
       color: var(--accent); font-size: clamp(0.95rem,1.6vw,1.15rem); flex-shrink: 0;
   }
   .logo-text { display: flex; flex-direction: column; line-height: 1.15; }
   .logo-main {
       font-family: 'DM Serif Display', serif;
       font-size: clamp(0.95rem,1.8vw,1.15rem);
       color: var(--primary); font-weight: 400;
   }
   .logo-sub {
       font-size: clamp(0.58rem,0.9vw,0.68rem); color: var(--text-muted);
       font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
   }
   .nav-menu { display: flex; list-style: none; gap: clamp(1.25rem,2.5vw,2.25rem); align-items: center; }
   .nav-link {
       color: var(--text-mid); font-weight: 500;
       font-size: clamp(0.875rem,1.3vw,0.92rem);
       transition: var(--transition); position: relative;
       padding: 0.25rem 0; white-space: nowrap;
   }
   .nav-link:hover, .nav-link.active { color: var(--primary); }
   .nav-link.active::after {
       content: ''; position: absolute; bottom: -5px; left: 0;
       width: 100%; height: 2px; background: var(--accent); border-radius: 2px;
   }
   .nav-cta {
       background: var(--primary); color: var(--white) !important;
       padding: 0.45rem 1.15rem; border-radius: var(--radius-pill);
       font-weight: 600; font-size: 0.85rem; transition: var(--transition);
   }
   .nav-cta:hover { background: var(--primary-light); transform: translateY(-1px); }
   .nav-cta::after { display: none !important; }
   .nav-toggle {
       display: none; flex-direction: column; cursor: pointer;
       gap: 5px; padding: 4px; border: none; background: none; z-index: 1001;
   }
   .bar { width: 24px; height: 2px; background: var(--primary); border-radius: 3px; transition: var(--transition); }
   .nav-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
   .nav-toggle.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
   .nav-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
   
   /* ===== HERO ===== */
   .hero {
       min-height: 100svh; display: flex; align-items: center;
       background: var(--primary); color: var(--white);
       padding: clamp(100px,14vw,140px) 0 clamp(50px,8vw,80px);
       overflow: hidden; position: relative;
   }
   body.has-ticker .hero {
       padding-top: clamp(136px,16vw,176px);
   }
   .hero::before {
       content: ''; position: absolute; inset: 0; pointer-events: none;
       background:
           radial-gradient(ellipse 70% 50% at 75% 50%, rgba(20,184,166,0.11) 0%, transparent 65%),
           radial-gradient(ellipse 40% 40% at 5% 85%, rgba(20,184,166,0.07) 0%, transparent 55%);
   }
   .hero::after {
       content: ''; position: absolute; inset: 0; pointer-events: none;
       background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
       background-size: 28px 28px;
   }
   .hero-container {
       max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2rem);
       display: grid; grid-template-columns: 1.15fr 0.85fr;
       gap: var(--space-xl, clamp(2rem,5vw,4rem)); align-items: center;
       position: relative; z-index: 2; width: 100%;
   }
   .hero-badge {
       display: inline-flex; align-items: center; gap: 0.5rem;
       background: var(--accent-dim); border: 1px solid var(--accent-border);
       color: var(--accent); padding: 0.35rem 0.9rem; border-radius: var(--radius-pill);
       font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
       text-transform: uppercase; margin-bottom: 1.25rem;
   }
   .hero-title {
       font-family: 'DM Serif Display', serif;
       font-size: clamp(2.1rem,5.5vw,4rem); font-weight: 400; line-height: 1.1;
       margin-bottom: clamp(1rem,2vw,1.5rem); color: var(--white); letter-spacing: -0.01em;
   }
   .hero-title em { font-style: italic; color: var(--accent); }
   .hero-subtitle {
       font-size: clamp(0.95rem,1.8vw,1.1rem); opacity: 0.75;
       margin-bottom: clamp(1.25rem,2.5vw,2rem); line-height: 1.75;
       font-weight: 300; max-width: 480px;
   }
   .hero-meta {
       display: flex; align-items: center; gap: 1.25rem;
       margin-bottom: 2rem; flex-wrap: wrap;
   }
   .hero-meta-item {
       display: flex; align-items: center; gap: 0.4rem;
       font-size: 0.85rem; color: rgba(255,255,255,0.65);
   }
   .hero-meta-item i { color: var(--accent); font-size: 0.75rem; }
   .hero-buttons { display: flex; gap: 0.875rem; flex-wrap: wrap; }
   
   .hero-image { position: relative; }
   .hero-image::before {
       content: ''; position: absolute; inset: -10px;
       border: 1px solid rgba(20,184,166,0.2);
       border-radius: calc(var(--radius-lg) + 10px);
       pointer-events: none; z-index: 0;
   }
   .hero-image img {
       width: 100%; height: clamp(320px,45vw,560px);
       object-fit: cover; border-radius: var(--radius-lg);
       box-shadow: var(--shadow-xl); transition: transform 0.6s ease;
       position: relative; z-index: 1;
   }
   .hero-image:hover img { transform: scale(1.02); }
   .hero-img-tag {
       position: absolute; bottom: 20px; left: -14px;
       background: var(--white); color: var(--primary);
       padding: 0.65rem 1rem; border-radius: var(--radius-md);
       box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.5rem;
       font-weight: 700; font-size: 0.82rem; z-index: 2; white-space: nowrap;
   }
   .hero-img-tag i { color: var(--accent); }
   .hero-img-tag2 {
       position: absolute; top: 18px; right: -14px;
       background: var(--accent); color: var(--primary);
       padding: 0.55rem 0.875rem; border-radius: var(--radius-sm);
       box-shadow: var(--shadow-md); font-weight: 800; font-size: 0.8rem;
       z-index: 2; white-space: nowrap;
   }
   
   /* ===== BUTTONS ===== */
   .btn {
       padding: clamp(0.7rem,1.5vw,0.95rem) clamp(1.15rem,2.5vw,1.65rem);
       border-radius: var(--radius-pill); font-weight: 600;
       font-size: clamp(0.85rem,1.4vw,0.92rem); transition: var(--transition);
       display: inline-flex; align-items: center; gap: 0.45rem;
       border: 2px solid transparent; cursor: pointer; white-space: nowrap;
       font-family: 'DM Sans', sans-serif; letter-spacing: 0.01em;
   }
   .btn-primary { background: var(--accent); color: var(--primary); border-color: var(--accent); }
   .btn-primary:hover {
       background: rgb(13,148,136); border-color: rgb(13,148,136); color: var(--white);
       transform: translateY(-2px); box-shadow: 0 10px 28px rgba(20,184,166,0.4);
   }
   .btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
   .btn-secondary:hover {
       background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px);
   }
   .btn-dark { background: var(--primary); color: var(--white); border-color: var(--primary); }
   .btn-dark:hover {
       background: var(--primary-mid); transform: translateY(-2px);
       box-shadow: 0 10px 28px rgba(5,21,19,0.3);
   }
   .btn-success { background: #25D366; color: var(--white); border-color: #25D366; }
   .btn-success:hover { background: #1da851; transform: translateY(-2px); }
   
   /* ===== SECTION TITLES ===== */
   .section-title {
       font-family: 'DM Serif Display', serif;
       font-size: clamp(1.75rem,4vw,2.85rem); font-weight: 400;
       text-align: center; margin-bottom: 0.75rem;
       color: var(--primary); line-height: 1.2; letter-spacing: -0.01em;
   }
   .section-divider {
       width: 44px; height: 3px; background: var(--accent);
       border-radius: 2px; margin: 0 auto 1rem;
   }
   .section-subtitle {
       text-align: center; font-size: clamp(0.9rem,1.8vw,1.05rem);
       color: var(--text-muted); margin-bottom: clamp(2.5rem,5vw,4rem);
       max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.7;
   }
   
   /* ===== STATS STRIP ===== */
   .stats-strip { background: var(--primary); padding: clamp(2.5rem,5vw,4rem) 0; }
   .stats-inner {
       display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
       gap: 2rem; text-align: center;
   }
   .stat-item h3 {
       font-family: 'DM Serif Display', serif;
       font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 400;
       color: var(--accent); line-height: 1; margin-bottom: 0.4rem;
   }
   .stat-item span {
       font-size: clamp(0.72rem,1.2vw,0.82rem); color: rgba(255,255,255,0.55);
       font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
   }
   
   /* ===== SERVICES / FEATURES ===== */
   .services-preview { padding: var(--section-pad) 0; background: var(--bg-light); }
   .why-choose { padding: var(--section-pad) 0; background: var(--white); }
   .testimonials { padding: var(--section-pad) 0; background: var(--bg-light); }
   
   .services-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(min(260px,100%),1fr));
       gap: clamp(1rem,2.5vw,1.75rem);
   }
   .features-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(min(240px,100%),1fr));
       gap: clamp(0.875rem,2vw,1.4rem);
   }
   
   .service-card {
       background: var(--white); padding: clamp(1.75rem,3vw,2.5rem) clamp(1.25rem,2.5vw,2rem);
       border-radius: var(--radius-lg); text-align: center;
       box-shadow: var(--shadow-sm); transition: var(--transition);
       border: 1px solid var(--border); position: relative; overflow: hidden;
   }
   .service-card::before {
       content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
       background: linear-gradient(90deg, var(--accent), var(--primary-light));
       opacity: 0; transition: opacity 0.3s;
   }
   .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent-border); }
   .service-card:hover::before { opacity: 1; }
   
   .feature {
       background: var(--bg-light); padding: clamp(1.5rem,2.5vw,2rem) clamp(1.25rem,2.5vw,1.75rem);
       border-radius: var(--radius-md); text-align: center;
       transition: var(--transition); border: 1px solid transparent;
   }
   .feature:hover {
       background: var(--white); border-color: var(--border);
       box-shadow: var(--shadow-md); transform: translateY(-4px);
   }
   
   .service-icon, .feature-icon {
       width: clamp(58px,7vw,70px); height: clamp(58px,7vw,70px);
       background: linear-gradient(135deg, var(--primary), var(--primary-mid));
       border-radius: var(--radius-md);
       display: flex; align-items: center; justify-content: center;
       font-size: clamp(1.3rem,2.2vw,1.65rem); color: var(--accent);
       margin: 0 auto 1.15rem; transition: var(--transition);
   }
   .service-card:hover .service-icon, .feature:hover .feature-icon { transform: scale(1.06); }
   .service-card h3, .feature h3 {
       font-family: 'DM Serif Display', serif;
       font-size: clamp(1rem,1.8vw,1.15rem); font-weight: 400;
       margin-bottom: 0.65rem; color: var(--text-dark);
   }
   .service-card p, .feature p {
       color: var(--text-muted); font-size: clamp(0.85rem,1.4vw,0.92rem); line-height: 1.65;
   }
   
   /* ===== TESTIMONIALS ===== */
   .testimonials-grid {
       display: grid; grid-template-columns: repeat(auto-fit,minmax(min(300px,100%),1fr));
       gap: clamp(1.25rem,3vw,2rem); max-width: 900px; margin: 0 auto;
   }
   .testimonial-card {
       background: var(--white); padding: clamp(1.5rem,3vw,2.25rem);
       border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
       border: 1px solid var(--border); transition: var(--transition); position: relative;
   }
   .testimonial-card::before {
       content: '\201C'; font-family: 'DM Serif Display', serif; font-size: 5rem;
       color: var(--accent-light); position: absolute; top: -0.5rem; left: 1.5rem;
       line-height: 1; z-index: 0;
   }
   .testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
   .stars { color: var(--gold); font-size: 0.82rem; margin-bottom: 0.875rem; display: flex; gap: 2px; position: relative; z-index: 1; }
   .testimonial-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; position: relative; z-index: 1; font-style: italic; }
   .testimonial-author { display: flex; align-items: center; gap: 0.875rem; position: relative; z-index: 1; }
   .testimonial-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent-light); }
   .testimonial-author h4 { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.1rem; }
   .testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }
   
   /* ===== CTA BANNER ===== */
   .cta-banner { background: var(--primary); padding: clamp(3.5rem,8vw,6rem) 0; }
   .cta-content { text-align: center; max-width: 680px; margin: 0 auto; }
   .cta-content h2 {
       font-family: 'DM Serif Display', serif;
       font-size: clamp(1.75rem,4vw,2.85rem); font-weight: 400;
       color: var(--white); margin-bottom: 1rem; line-height: 1.2;
   }
   .cta-content p { color: rgba(255,255,255,0.7); font-size: clamp(0.92rem,1.8vw,1.05rem); margin-bottom: 2rem; line-height: 1.7; }
   .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
   
   /* ===== FOOTER ===== */
   .footer { background: var(--primary); border-top: 1px solid rgba(255,255,255,0.06); padding: clamp(3rem,7vw,5rem) 0 0; }
   .footer-content { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.5rem,3vw,3rem); margin-bottom: clamp(2.5rem,5vw,4rem); }
   .footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.15rem; }
   .logo-icon-f {
       width: 36px; height: 36px; background: rgba(20,184,166,0.15);
       border: 1px solid var(--accent-border); border-radius: 8px;
       display: flex; align-items: center; justify-content: center;
       color: var(--accent); font-size: 0.95rem;
   }
   .logo-text-f { font-family: 'DM Serif Display', serif; font-size: 1rem; color: var(--white); font-weight: 400; }
   .footer-section p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.7; margin-bottom: 0.6rem; }
   .footer-section p i { color: var(--accent); margin-right: 0.4rem; }
   .footer-section h3 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.15rem; }
   .footer-section ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
   .footer-section ul li a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.2s; }
   .footer-section ul li a:hover { color: var(--accent); }
   .social-links { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
   .social-links a {
       width: 36px; height: 36px; border-radius: 8px;
       background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
       display: flex; align-items: center; justify-content: center;
       color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: var(--transition);
   }
   .social-links a:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }
   .footer-bottom {
       border-top: 1px solid rgba(255,255,255,0.06);
       padding: 1.5rem 0; text-align: center;
   }
   .footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
   
   /* ===== TESTS PAGE ===== */
   .tests-hero { padding-top: clamp(100px,14vw,130px); }
   .tests-grid {
       display: grid;
       grid-template-columns: repeat(auto-fill, minmax(min(280px,100%),1fr));
       gap: clamp(0.875rem,2vw,1.25rem); margin-top: 2rem;
   }
   .category-header { margin-bottom: 1.5rem; }
   .test-card {
       background: var(--white); padding: 1.25rem 1.4rem;
       border-radius: var(--radius-md); border: 1px solid var(--border);
       box-shadow: var(--shadow-sm); transition: var(--transition);
   }
   .test-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-border); }
   .test-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.5rem; }
   .test-header h3 { font-family: 'DM Serif Display', serif; font-size: clamp(0.92rem,1.6vw,1rem); font-weight: 400; color: var(--text-dark); line-height: 1.35; }
   .test-price {
       font-family: 'DM Serif Display', serif; font-size: clamp(1rem,2vw,1.15rem);
       font-weight: 400; color: var(--accent); white-space: nowrap; flex-shrink: 0;
       background: var(--accent-dim); padding: 0.2rem 0.6rem;
       border-radius: var(--radius-pill); border: 1px solid var(--accent-border);
   }
   .test-card p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; margin-bottom: 0.75rem; }
   .test-turnaround {
       display: inline-flex; align-items: center; gap: 0.3rem;
       font-size: 0.74rem; font-weight: 600; color: var(--text-muted);
       background: var(--bg-light); padding: 0.2rem 0.6rem; border-radius: var(--radius-pill);
   }
   .test-turnaround i { color: var(--accent); }
   .package-card { border: 1.5px solid var(--accent-border); background: linear-gradient(135deg, var(--white), rgb(242,254,251)); }
   .package-price { display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; }
   .original-price { font-size: 0.82rem; text-decoration: line-through; color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-weight: 400; }
   .package-badge {
       display: inline-block; background: var(--accent); color: var(--primary);
       padding: 0.18rem 0.6rem; border-radius: var(--radius-pill);
       font-size: 0.7rem; font-weight: 700; margin-top: 0.5rem;
   }
   
   /* ===== ABOUT PAGE ===== */
   .about-hero { padding-top: clamp(100px,14vw,130px); }
   .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
   .about-text p { font-size: clamp(0.92rem,1.6vw,1rem); line-height: 1.8; color: var(--text-mid); margin-bottom: 1.25rem; }
   .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(0.65rem,1.5vw,1rem); margin: 1.75rem 0; }
   .stat {
       text-align: center; padding: 1.15rem 0.75rem;
       background: var(--primary); border-radius: var(--radius-md); color: var(--white);
   }
   .stat h3 { font-family: 'DM Serif Display', serif; font-size: clamp(1.5rem,3.5vw,2rem); font-weight: 400; color: var(--accent); line-height: 1.1; margin-bottom: 0.3rem; }
   .stat span { font-size: clamp(0.65rem,1.1vw,0.74rem); color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
   .about-image-large img { width: 100%; height: clamp(260px,38vw,440px); object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
   .mv-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(280px,100%),1fr)); gap: clamp(1.25rem,3vw,2rem); }
   .mv-card .service-icon { margin: 0 0 1.15rem; }
   
   /* Cert badges */
   .cert-badges { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2.5rem; }
   .cert-badge {
       display: flex; align-items: center; gap: 0.6rem;
       padding: 0.7rem 1.4rem; background: var(--primary); color: var(--white);
       border-radius: var(--radius-md); font-size: 0.875rem; font-weight: 600;
   }
   .cert-badge i { color: var(--accent); }
   
   /* Notice */
   .notice-box {
       background: var(--bg-soft); border-left: 3px solid var(--accent);
       padding: 1.1rem 1.4rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
       font-size: 0.875rem; color: var(--text-mid); margin-top: 1.5rem; line-height: 1.65;
   }
   
   /* ===== CONTACT PAGE ===== */
   .contact-hero { padding-top: clamp(100px,14vw,130px); }
   .quick-actions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.875rem; margin-top: 2rem; }
   .quick-action {
       display: flex; align-items: center; gap: 0.875rem;
       padding: 0.95rem 1.15rem; background: rgba(255,255,255,0.09);
       border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius-md);
       color: var(--white); transition: var(--transition); backdrop-filter: blur(8px);
   }
   .quick-action:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
   .quick-action.whatsapp:hover { background: rgba(37,211,102,0.2); border-color: rgba(37,211,102,0.35); }
   .action-icon {
       width: 42px; height: 42px; border-radius: 9px;
       background: rgba(255,255,255,0.12); display: flex;
       align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
   }
   .quick-action.whatsapp .action-icon { background: rgba(37,211,102,0.2); color: #25D366; }
   .quick-action.call .action-icon { background: rgba(20,184,166,0.2); color: var(--accent); }
   .quick-action.form .action-icon { background: rgba(217,175,82,0.2); color: var(--gold); }
   .action-text { display: flex; flex-direction: column; gap: 0.12rem; }
   .action-text strong { font-size: 0.85rem; font-weight: 700; }
   .action-text span { font-size: 0.76rem; opacity: 0.65; }
   
   .contact-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(250px,100%),1fr)); gap: clamp(1.25rem,3vw,2rem); }
   .contact-icon {
       width: clamp(58px,7vw,68px); height: clamp(58px,7vw,68px);
       background: linear-gradient(135deg, var(--primary), var(--primary-mid));
       border-radius: 50%; display: flex; align-items: center; justify-content: center;
       font-size: clamp(1.4rem,2.2vw,1.75rem); color: var(--accent); margin: 0 auto 1.25rem;
   }
   
   .booking-form {
       background: var(--white); padding: clamp(1.75rem,4vw,3rem);
       border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
       max-width: 800px; margin: 0 auto; width: 100%; border: 1px solid var(--border);
   }
   .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; margin-bottom: 1.15rem; }
   .form-group { margin-bottom: 1.15rem; }
   .form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; color: var(--text-dark); font-size: 0.85rem; }
   .form-group input, .form-group textarea, .form-group select {
       width: 100%; padding: 0.85rem 1rem; border: 1.5px solid #e2e8f0;
       border-radius: var(--radius-sm); font-size: 0.875rem; transition: border-color 0.2s, box-shadow 0.2s;
       font-family: inherit; color: var(--text-mid); background: var(--bg-light);
   }
   .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
       outline: none; border-color: var(--accent); background: var(--white);
       box-shadow: 0 0 0 3px rgba(20,184,166,0.1);
   }
   .form-group textarea { resize: vertical; min-height: 100px; }
   
   .faq-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(250px,100%),1fr)); gap: 1.15rem; }
   .faq-item { background: var(--white); padding: 1.4rem; border-radius: var(--radius-md); border: 1px solid var(--border); }
   .faq-item h3 { font-weight: 700; color: var(--text-dark); font-size: 0.92rem; margin-bottom: 0.5rem; }
   .faq-item p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.6; }
   
   .map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
   
   /* ===== SEARCH DROPDOWN ===== */
   .search-wrapper {
       position: relative;
       max-width: 520px;
   }
   .search-input {
       width: 100%; padding: 0.95rem 5.5rem 0.95rem 1.25rem;
       background: rgba(255,255,255,0.11); border: 1px solid rgba(255,255,255,0.22);
       border-radius: var(--radius-pill); color: var(--white);
       font-size: 0.92rem; font-family: inherit; transition: var(--transition);
   }
   .search-input::placeholder { color: rgba(255,255,255,0.5); }
   .search-input:focus {
       outline: none; background: rgba(255,255,255,0.17); border-color: var(--accent);
       box-shadow: 0 0 0 3px rgba(20,184,166,0.18);
   }
   .search-btn {
       position: absolute; top: 50%; transform: translateY(-50%);
       background: none; border: none; color: rgba(255,255,255,0.55);
       font-size: 0.95rem; cursor: pointer; padding: 0.5rem; transition: color 0.2s;
   }
   #searchIcon { right: 0.75rem; }
   #searchClear { right: 2.5rem; }
   .search-btn:hover { color: var(--accent); }
   
   .search-dropdown {
       position: absolute; top: calc(100% + 8px); left: 0; right: 0;
       background: var(--white); border-radius: var(--radius-md);
       box-shadow: 0 20px 60px rgba(5,21,19,0.22);
       border: 1px solid var(--border);
       max-height: 380px; overflow-y: auto;
       z-index: 200; display: none;
       animation: fadeInUp 0.18s ease;
   }
   .search-dropdown.open { display: block; }
   
   .search-result-item {
       display: flex; align-items: center; justify-content: space-between;
       padding: 0.85rem 1.1rem; gap: 0.75rem; cursor: pointer;
       transition: background 0.15s; border-bottom: 1px solid var(--border);
       text-decoration: none; color: var(--text-dark);
   }
   .search-result-item:last-child { border-bottom: none; }
   .search-result-item:hover, .search-result-item:focus {
       background: var(--bg-soft); outline: none;
   }
   .sri-left { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; min-width: 0; }
   .sri-name {
       font-weight: 600; font-size: 0.88rem; color: var(--text-dark);
       white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
   }
   .sri-name mark {
       background: rgba(20,184,166,0.2); color: var(--primary);
       border-radius: 2px; padding: 0 1px;
   }
   .sri-cat {
       font-size: 0.72rem; color: var(--text-muted); font-weight: 500;
       text-transform: uppercase; letter-spacing: 0.05em;
   }
   .sri-price {
       font-family: 'DM Serif Display', serif;
       font-size: 0.95rem; font-weight: 400; color: var(--primary);
       white-space: nowrap; flex-shrink: 0;
   }
   .sri-price .sri-offer {
       font-size: 0.75rem; text-decoration: line-through;
       color: var(--text-muted); margin-right: 0.25rem;
       font-family: 'DM Sans', sans-serif;
   }
   
   .search-result-no-results {
       padding: 1.5rem; text-align: center;
       color: var(--text-muted); font-size: 0.9rem;
   }
   .search-status {
       font-size: 0.82rem; color: rgba(255,255,255,0.6);
       margin-top: 0.6rem; padding-left: 0.25rem;
   }
   
   /* ===== FEATURED PACKAGES ===== */
   .featured-packages-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
       gap: clamp(1.25rem, 3vw, 2rem);
   }
   
   .featured-pkg-card {
       background: var(--white); border-radius: var(--radius-lg);
       border: 1.5px solid var(--accent-border);
       box-shadow: var(--shadow-md); overflow: hidden;
       transition: var(--transition); display: flex; flex-direction: column;
   }
   .featured-pkg-card:hover {
       transform: translateY(-5px); box-shadow: var(--shadow-lg);
       border-color: var(--accent);
   }
   
   .featured-pkg-img {
       position: relative; width: 100%; height: clamp(200px, 30vw, 300px);
       overflow: hidden; flex-shrink: 0;
   }
   .featured-pkg-img img {
       width: 100%; height: 100%; object-fit: cover; object-position: top;
       transition: transform 0.5s ease;
   }
   .featured-pkg-card:hover .featured-pkg-img img { transform: scale(1.03); }
   
   .featured-pkg-overlay {
       position: absolute; inset: 0;
       background: linear-gradient(to bottom, transparent 40%, rgba(5,21,19,0.6) 100%);
       display: flex; align-items: flex-end; padding: 1rem;
   }
   .pkg-offer-tag {
       background: var(--accent); color: var(--primary);
       padding: 0.3rem 0.8rem; border-radius: var(--radius-pill);
       font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em;
       text-transform: uppercase;
   }
   
   .featured-pkg-body {
       padding: clamp(1.25rem, 2.5vw, 1.75rem);
       display: flex; flex-direction: column; flex: 1;
   }
   .pkg-label {
       display: inline-block; background: var(--primary); color: var(--accent);
       font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
       text-transform: uppercase; padding: 0.25rem 0.7rem;
       border-radius: var(--radius-pill); margin-bottom: 0.6rem;
   }
   .featured-pkg-body h3 {
       font-family: 'DM Serif Display', serif; font-size: clamp(1.2rem, 2.5vw, 1.5rem);
       font-weight: 400; color: var(--text-dark); margin-bottom: 0.35rem; line-height: 1.2;
   }
   .pkg-tagline {
       font-size: 0.82rem; color: var(--text-muted); font-weight: 600;
       text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 1rem;
   }
   .pkg-includes {
       list-style: none; display: flex; flex-direction: column; gap: 0.45rem;
       margin-bottom: 1rem; flex: 1;
   }
   .pkg-includes li {
       display: flex; align-items: flex-start; gap: 0.5rem;
       font-size: clamp(0.8rem, 1.3vw, 0.875rem); color: var(--text-mid); line-height: 1.45;
   }
   .pkg-includes li i { color: var(--accent); font-size: 0.7rem; flex-shrink: 0; margin-top: 0.3rem; }
   
   .pkg-note {
       font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1rem;
       padding: 0.6rem 0.875rem; background: var(--bg-soft);
       border-radius: var(--radius-sm); display: flex; align-items: center; gap: 0.4rem;
   }
   .pkg-note i { color: var(--accent); }
   
   .pkg-price-row {
       display: flex; align-items: center; justify-content: space-between;
       gap: 1rem; flex-wrap: wrap; padding-top: 1rem;
       border-top: 1px solid var(--border);
   }
   .pkg-price-block { display: flex; flex-direction: column; gap: 0.15rem; }
   .pkg-mrp {
       font-size: 0.8rem; text-decoration: line-through; color: var(--text-muted);
   }
   .pkg-offer {
       font-family: 'DM Serif Display', serif; font-size: clamp(1.5rem, 3vw, 1.85rem);
       font-weight: 400; color: var(--primary); line-height: 1;
   }
   
   /* ===== ANIMATIONS ===== */
   @keyframes fadeInUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
   @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
   
   @media (prefers-reduced-motion: no-preference) {
       .hero-badge { animation: fadeIn 0.5s ease forwards; }
       .hero-title { animation: fadeInUp 0.7s 0.1s ease both; }
       .hero-subtitle { animation: fadeInUp 0.7s 0.2s ease both; }
       .hero-meta { animation: fadeInUp 0.7s 0.25s ease both; }
       .hero-buttons { animation: fadeInUp 0.7s 0.3s ease both; }
       .service-card { animation: fadeInUp 0.6s ease forwards; }
       .service-card:nth-child(2) { animation-delay: 0.1s; }
       .service-card:nth-child(3) { animation-delay: 0.2s; }
       .service-card:nth-child(4) { animation-delay: 0.3s; }
   }
   @media (prefers-reduced-motion: reduce) {
       .ticker-track { animation: none; }
   }
   
   /* ===== RESPONSIVE ===== */
   @media (max-width: 1024px) {
       .footer-content { grid-template-columns: 1fr 1fr; }
       .testimonials-grid { grid-template-columns: 1fr; max-width: 580px; margin-left: auto; margin-right: auto; }
   }
   @media (max-width: 768px) {
       .tests-ticker { display: none; } /* hide on very small screens if desired */
       body.has-ticker .navbar { top: 0; }
       body.has-ticker .hero { padding-top: clamp(100px,14vw,130px); }
       .nav-menu {
           position: fixed; left: -100%; top: 0; flex-direction: column;
           background: var(--white); width: min(290px,80vw); height: 100svh;
           transition: left 0.3s ease; box-shadow: 0 0 50px rgba(5,21,19,0.2);
           padding: 5rem 2rem 2rem; gap: 1.5rem; overflow-y: auto; list-style: none;
       }
       .nav-menu.active { left: 0; }
       .nav-toggle { display: flex; }
       .nav-cta { display: none; }
       .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
       .hero-subtitle, .hero-meta, .hero-buttons { margin-left: auto; margin-right: auto; }
       .hero-meta { justify-content: center; }
       .hero-buttons { justify-content: center; }
       .hero-image img { height: clamp(220px,55vw,340px); }
       .hero-img-tag { left: 8px; } .hero-img-tag2 { right: 8px; }
       .about-grid { grid-template-columns: 1fr; }
       .stats-grid { grid-template-columns: repeat(2,1fr); }
       .quick-actions-grid { grid-template-columns: 1fr; }
       .form-row { grid-template-columns: 1fr; }
       .cta-buttons { flex-direction: column; align-items: center; }
       .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
   }
   @media (max-width: 480px) {
       .hero-title { font-size: clamp(1.75rem,8vw,2.3rem); }
       .btn { width: 100%; justify-content: center; }
       .hero-buttons { flex-direction: column; }
       .footer-content { grid-template-columns: 1fr; }
       .test-header { flex-direction: column; align-items: flex-start; }
       .booking-form { padding: 1.25rem; }
       .testimonial-author { flex-direction: column; text-align: center; }
   }
   @media (max-width: 360px) {
       .logo-sub { display: none; }
       .nav-menu { width: 100vw; }
       .section-title { font-size: 1.5rem; }
   }
   @media (min-width: 1400px) {
       .container, .nav-container, .hero-container { max-width: 1320px; }
   }
   @media (hover: none) and (pointer: coarse) {
       .service-card:hover, .feature:hover, .test-card:hover, .btn:hover { transform: none; }
       .btn { min-height: 48px; }
       .nav-link { min-height: 44px; display: flex; align-items: center; }
   }
   @media print {
       .navbar, .tests-ticker, .hero-buttons, .cta-banner, .footer { display: none; }
       .hero { min-height: unset; padding: 2rem 0; }
       body { color: #000; }
   }