 /*--------------------------------1.Header-------------------------------------------------*/
 .premium-nav-wrapper {
     position: fixed;
     top: 20px;
     left: 0;
     width: 100%;
     z-index: 1000;
     display: flex;
     justify-content: center;
     padding: 0 20px;
     pointer-events: none;
     /* Let clicks pass through outside the bar */
 }

 .premium-nav {
     pointer-events: auto;
     width: 100%;
     max-width: 1100px;
     height: 70px;
     background: rgba(255, 255, 255, 0.85);
     backdrop-filter: blur(16px);
     -webkit-backdrop-filter: blur(16px);
     border-radius: 100px;
     border: 1px solid rgba(255, 255, 255, 0.6);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 10px 0 30px;
     transition: all 0.3s ease;
 }

 .nav-logo {
     font-family: 'Poppins', serif;
     font-weight: 800;
     font-size: 1.4rem;
     color: var(--text-dark);
     display: flex;
     align-items: center;
     gap: 8px;
     text-decoration: none;
     letter-spacing: -0.5px;
 }

 .logo-icon {
     color: var(--primary-green);
     font-size: 1.6rem;
 }

 .nav-menu {
     display: flex;
     gap: 30px;
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .nav-link {
     text-decoration: none;
     color: var(--text-grey);
     font-weight: 500;
     font-size: 0.95rem;
     position: relative;
     transition: color 0.3s;
 }

 .nav-link:hover {
     color: var(--primary-green);
 }

 .nav-right {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .nav-cta {
     background-color: var(--text-dark);
     color: var(--white);
     padding: 12px 28px;
     border-radius: 50px;
     text-decoration: none;
     font-size: 0.9rem;
     font-weight: 600;
     transition: 0.3s;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .nav-cta:hover {
     background-color: var(--primary-green);
     transform: translateY(-1px);
 }

 /* Hamburger & Mobile Menu */
 .hamburger-btn {
     display: none;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     width: 48px;
     height: 48px;
     background: transparent;
     border: none;
     cursor: pointer;
     gap: 6px;
     padding: 0;
     margin-right: 5px;
 }

 .bar {
     width: 24px;
     height: 2px;
     background-color: var(--text-dark);
     border-radius: 2px;
     transition: all 0.3s;
 }

 .hamburger-btn.active .bar:nth-child(1) {
     transform: translateY(8px) rotate(45deg);
     width: 28px;
 }

 .hamburger-btn.active .bar:nth-child(2) {
     opacity: 0;
     transform: translateX(10px);
 }

 .hamburger-btn.active .bar:nth-child(3) {
     transform: translateY(-8px) rotate(-45deg);
     width: 28px;
 }

 .mobile-menu-container {
     position: absolute;
     top: 85px;
     left: 20px;
     right: 20px;
     max-width: 1100px;
     margin: 0 auto;
     pointer-events: none;
     z-index: 999;
 }

 .mobile-menu {
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.8);
     border-radius: 30px;
     padding: 30px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 20px;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: all 0.3s ease;
     pointer-events: auto;
 }

 .mobile-menu.open {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .mobile-link {
     font-family: 'Poppins', serif;
     font-size: 1.5rem;
     color: var(--text-dark);
     text-decoration: none;
     font-weight: 600;
 }

 /* --- 4. HERO SECTION --- */
 .hero {
     padding: 180px 0 250px 0;
     /* Huge bottom padding to allow Triangle Overlap */
     position: relative;
     z-index: 10;
     overflow: visible;
     /* Important for overlapping elements */
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -10%;
     right: -10%;
     width: 65%;
     height: 110%;
     background: conic-gradient(from 180deg at 50% 50%, #d4f7e8, var(--aurora-teal), var(--primary-green), #d4f7e8);
     filter: blur(80px);
     opacity: 0.4;
     z-index: -1;
     border-radius: 50%;
 }

 .hero-grid {
     display: grid;
     grid-template-columns: 0.9fr 1.1fr;
     align-items: center;
     gap: 40px;
     position: relative;
 }

 .hero-content {
     position: relative;
     z-index: 20;
 }

 /* Text above background */
 .hero-tag {
     display: inline-block;
     background: #e6f7ef;
     color: var(--primary-green);
     padding: 6px 14px;
     border-radius: 30px;
     font-size: 0.85rem;
     font-weight: 700;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .hero-content h1 {
     font-family: 'Poppins', serif;
     font-size: 3.8rem;
     line-height: 1.15;
     margin-bottom: 24px;
     color: var(--text-dark);
     letter-spacing: -1px;
 }

 .hero-content p {
     color: var(--text-grey);
     margin-bottom: 40px;
     font-size: 1.15rem;
     max-width: 90%;
 }

 .hero-actions {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 /* Collage */
 .hero-collage {
     position: relative;
     height: 600px;
     width: 100%;
     z-index: 10;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .img-main {
     width: 60%;
     height: 70%;
     object-fit: cover;
     position: absolute;
     z-index: 1;
     border: 12px solid #fff;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
     filter: grayscale(100%);
 }

 .polaroid-card {
     position: absolute;
     background: white;
     padding: 8px 8px 30px 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     z-index: 10;
     transition: 0.3s;
 }

 .polaroid-card:hover {
     transform: scale(1.1) rotate(0deg) !important;
     z-index: 50;
 }

 .polaroid-img {
     width: 160px;
     height: 110px;
     object-fit: cover;
     background: #eee;
 }

 .polaroid-label {
     position: absolute;
     bottom: 40px;
     left: 50%;
     transform: translateX(-50%);
     background: rgba(255, 255, 255, 0.9);
     padding: 4px 10px;
     border-radius: 10px;
     font-family: 'Dancing Script', cursive;
     font-size: 1rem;
     color: var(--primary-dark);
     white-space: nowrap;
 }

 /* Scatter Positions */
 .card-tl {
     top: 20px;
     left: 10px;
     transform: rotate(-6deg);
 }

 .card-tr {
     top: 40px;
     right: 20px;
     transform: rotate(4deg);
 }

 .card-bl {
     bottom: 100px;
     left: 20px;
     transform: rotate(5deg);
 }

 .card-br {
     bottom: 80px;
     right: 20px;
     transform: rotate(-4deg);
     z-index: 12;
 }

 .abstract-review {
     position: absolute;
     top: 47%;
     right: -60px;
     transform: translateY(-50%) rotate(3deg);
     background: #fff;
     width: 220px;
     padding: 25px;
     border-radius: 30px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
     z-index: 25;
     text-align: center;
     animation: float 6s ease-in-out infinite;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(-50%) rotate(3deg);
     }

     50% {
         transform: translateY(-55%) rotate(3deg);
     }
 }

 .note-text {
     font-family: 'Courier New', monospace;
     font-size: 0.8rem;
     font-weight: 600;
     margin-bottom: 10px;
 }

 .note-signature {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .note-avatar {
     width: 30px;
     height: 30px;
     border-radius: 50%;
 }

 /* --- 5. TRIANGLE & DOCK SECTION --- */
 .triangle-section {
     position: relative;
     z-index: 5;
     margin-top: -350px;
     /* Pulls triangle UP into Hero */
     padding-bottom: 100px;
 }

 .triangle-bg {
     width: 100%;
     height: 1100px;
     background: linear-gradient(180deg, var(--accent-light) 0%, #d1f2e5 100%);
     clip-path: polygon(0 0, 100% 0, 50% 100%);
     position: absolute;
     top: 0;
     left: 0;
     z-index: 1;
     opacity: 0.5;
 }

 .dock-container {
     position: relative;
     z-index: 30;
     padding-top: 300px;
     display: flex;
     justify-content: center;
 }

 .data-dock-bg {
     position: absolute;
     top: 52%;
     left: 50%;
     transform: translate(-50%, -10%);
     width: 95%;
     max-width: 1000px;
     height: 180px;
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.9);
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
     border-radius: 30px;
     z-index: 25;
 }

 .dock-grid {
     display: grid;
     grid-template-columns: 1fr 340px 1fr;
     align-items: center;
     width: 100%;
     max-width: 1000px;
     position: relative;
     z-index: 35;
 }

 .stat-group {
     display: flex;
     justify-content: center;
     gap: 40px;
 }

 .stat-item {
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 5px;
     min-width: 100px;
 }

 .stat-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #fff, #f0fdf4);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     color: var(--primary-green);
     font-size: 1.5rem;
     border: 1px solid #eee;
 }

 .stat-icon svg {
     width: 28px;
     height: 28px;
     fill: currentColor;
 }

 .icon-gold {
     color: var(--gold);
 }

 .stat-value {
     font-family: 'Poppins', serif;
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--text-dark);
     line-height: 1;
 }

 .stat-label {
     font-size: 0.7rem;
     font-weight: 700;
     color: var(--text-grey);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* Phone Mockup */
 .phone-mockup {
     width: 320px;
     height: 640px;
     background: #1c1c1e;
     border-radius: 50px;
     padding: 4px;
     box-shadow: 0 0 0 4px #3a3a3c, 0 50px 100px rgba(0, 0, 0, 0.4);
     margin: 0 auto;
     z-index: 40;
     will-change: transform;
 }

 .phone-notch {
     position: absolute;
     top: 18px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 26px;
     background: #000;
     border-radius: 20px;
     z-index: 30;
 }

 .screen-container {
     width: 100%;
     height: 100%;
     background: #fff;
     border-radius: 46px;
     overflow: hidden;
     position: relative;
     border: 6px solid #000;
 }

 .screen-content {
     height: 100%;
     display: flex;
     flex-direction: column;
     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
 }

 .status-bar {
     display: flex;
     justify-content: space-between;
     padding: 15px 22px 0;
     font-size: 0.9rem;
     font-weight: 600;
 }

 .google-header {
     padding: 15px;
     border-bottom: 1px solid #f1f3f4;
 }

 .google-search-bar {
     background: #fff;
     border-radius: 24px;
     padding: 10px 15px;
     display: flex;
     align-items: center;
     gap: 10px;
     box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
     font-size: 0.9rem;
 }

 .local-pack {
     padding: 15px;
 }

 .result-header {
     font-size: 1.2rem;
     color: #1a0dab;
 }

 .rating-row {
     display: flex;
     gap: 5px;
     font-size: 0.85rem;
     color: #555;
     margin: 5px 0;
 }

 .stars {
     color: #fbbc04;
 }

 .action-grid {
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 8px;
     margin-top: 10px;
 }

 .g-btn {
     border: 1px solid #ddd;
     border-radius: 18px;
     padding: 8px;
     text-align: center;
     color: #1a73e8;
     font-size: 0.75rem;
     font-weight: 500;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .mini-map {
     height: 100px;
     background: #eee;
     margin-top: 10px;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
 }

 /* --- 6. SERVICES SECTION (Full Color) --- */
 .services-section {
     padding: 100px 0;
     background: linear-gradient(180deg, #fff 0%, #f7fcf9 100%);
     position: relative;
     overflow: hidden;
 }

 .abstract-shape {
     position: absolute;
     width: 500px;
     height: 500px;
     border-radius: 50%;
     filter: blur(60px);
     z-index: 0;
     opacity: 0.6;
 }

 .shape-right {
     bottom: 0;
     right: -10%;
     background: radial-gradient(circle, rgba(0, 201, 167, 0.2), rgba(230, 247, 239, 0.3));
 }

 .section-header {
     text-align: center;
     margin-bottom: 60px;
     position: relative;
     z-index: 2;
 }

 .section-title {
     font-family: 'Poppins', serif;
     font-size: 3rem;
     margin-bottom: 15px;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     position: relative;
     z-index: 2;
 }

 .svc-image-card {
     background: #fff;
     border-radius: 20px;
     overflow: hidden;
     border: 1px solid #eee;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: 0.4s;
     height: 420px;
     display: flex;
     flex-direction: column;
 }

 .svc-image-card:hover {
     transform: translateY(-10px);
     border-color: var(--primary-green);
     box-shadow: 0 20px 50px rgba(0, 143, 93, 0.15);
 }

 .svc-img-wrapper {
     height: 50%;
     overflow: hidden;
     position: relative;
 }

 .svc-img-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: 0.6s;
 }

 .svc-image-card:hover .svc-img-wrapper img {
     transform: scale(1.1);
 }

 .svc-glass-icon {
     position: absolute;
     top: 50%;
     left: 20px;
     transform: translateY(-50%);
     width: 60px;
     height: 60px;
     background: rgba(255, 255, 255, 0.8);
     backdrop-filter: blur(10px);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-green);
     border: 1px solid #fff;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     z-index: 5;
 }

 .svc-glass-icon svg {
     width: 28px;
     height: 28px;
     fill: currentColor;
 }

 .svc-content {
     padding: 25px;
     padding-top: 40px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .svc-title {
     font-family: 'Poppins', serif;
     font-size: 1.5rem;
     margin-bottom: 5px;
 }

 .svc-desc {
     font-size: 0.9rem;
     color: var(--text-grey);
     line-height: 1.5;
 }

 .svc-link-btn {
     align-self: flex-start;
     padding: 10px 20px;
     border: 2px solid var(--primary-green);
     border-radius: 30px 10px 30px 10px;
     color: var(--primary-green);
     text-decoration: none;
     font-weight: 700;
     font-size: 0.85rem;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: 0.3s;
 }

 .svc-btn-arrow {
     width: 20px;
     height: 20px;
     background: var(--accent-light);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .svc-image-card:hover .svc-link-btn {
     background: var(--primary-green);
     color: white;
 }

 .svc-image-card:hover .svc-btn-arrow {
     background: white;
     color: var(--primary-green);
     transform: translateX(3px);
 }

 /* --- 7. PRICING SECTION --- */
 .pricing-section {
     padding: 100px 0;
     background: #fff;
     position: relative;
     overflow: hidden;
 }

 .shape-left {
     top: 10%;
     left: -10%;
     background: radial-gradient(circle, rgba(212, 175, 55, 0.2), rgba(0, 143, 93, 0.1));
 }

 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     align-items: center;
     position: relative;
     z-index: 2;
 }

 .pricing-card {
     background: #fff;
     border: 1px solid #eee;
     border-radius: 20px;
     padding: 40px 30px;
     transition: 0.3s;
     position: relative;
 }

 .pricing-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
 }

 .card-popular {
     border: 2px solid var(--primary-green);
     transform: scale(1.05);
     box-shadow: 0 20px 50px rgba(0, 143, 93, 0.15);
     z-index: 5;
 }

 .card-popular:hover {
     transform: scale(1.05) translateY(-5px);
 }

 .popular-badge {
     position: absolute;
     top: -15px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--gold);
     color: #fff;
     padding: 5px 15px;
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: 700;
     text-transform: uppercase;
 }

 .plan-price {
     font-size: 2.5rem;
     font-weight: 800;
     color: var(--primary-green);
     margin: 15px 0;
 }

 .plan-price span {
     font-size: 1rem;
     color: #777;
     font-weight: 400;
 }

 .feature-list {
     list-style: none;
     margin-bottom: 25px;
     display: flex;
     flex-direction: column;
     gap: 12px;
     font-size: 0.95rem;
     color: #555;
 }

 .feature-list li {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .check-icon {
     width: 16px;
     color: var(--primary-green);
 }

 /* --- 8. RESPONSIVE MEDIA QUERIES (The Fixes) --- */

 /* Tablet (1024px) */
 @media (max-width: 1024px) {
     .hero-grid {
         grid-template-columns: 1fr 1fr;
         gap: 20px;
     }

     .pricing-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
         justify-content: center;
     }

     .pricing-card:last-child {
         grid-column: span 2;
         max-width: 60%;
         margin: 0 auto;
     }

     .services-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .dock-grid {
         grid-template-columns: 1fr 300px 1fr;
     }

     .stat-group {
         gap: 20px;
     }
 }

 /* Mobile (968px) */
 @media (max-width: 968px) {

     /* Nav */
     .premium-nav {
         padding: 0 20px;
         height: 65px;
     }

     .nav-menu,
     .nav-cta {
         display: none;
     }

     .hamburger-btn {
         display: flex;
     }

     .nav-right {
         gap: 0;
     }

     /* Hero */
     .hero {
         padding-top: 120px;
         padding-bottom: 50px;
     }

     .hero-grid {
         grid-template-columns: 1fr;
         gap: 60px;
     }

     .hero-content {
         text-align: left;
     }

     .hero-content h1 {
         font-size: 2.8rem;
     }

     .hero-actions {
         flex-direction: column;
         align-items: flex-start;
         width: 100%;
     }

     .btn {
         width: 100%;
     }

     .video-btn {
         width: 100%;
         justify-content: flex-start;
     }

     /* Collage Tuck-in */
     .hero-collage {
         height: 400px;
     }

     .img-main {
         width: 75%;
         height: 75%;
     }

     .polaroid-img {
         width: 120px;
         height: 80px;
     }

     .card-tl {
         top: 20px;
         left: -10px;
         transform: rotate(-4deg);
     }

     .card-tr {
         top: 40px;
         right: -10px;
         transform: rotate(3deg);
     }

     .card-bl {
         bottom: 40px;
         left: -10px;
         transform: rotate(3deg);
     }

     .card-br {
         bottom: 20px;
         right: -10px;
         transform: rotate(-3deg);
     }

     /* .abstract-review {
         display: none;
     } */

     /* Triangle & Dock */
     .triangle-section {
         margin-top: -100px;
         padding-bottom: 50px;
     }

     .triangle-bg {
         height: 1300px;
         clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
         border-radius: 0 0 50px 50px;
     }

     .dock-container {
         padding-top: 50px;
         flex-direction: column;
     }

     .data-dock-bg {
         display: none;
     }

     /* Hide glass bar on mobile */
     .dock-grid {
         grid-template-columns: 1fr;
         gap: 40px;
         display: flex;
         flex-direction: column;
     }

     .phone-mockup {
         width: 280px;
         height: 560px;
         order: 1;
         margin-bottom: 20px;
     }

     .stat-group {
         width: 100%;
         flex-direction: row;
         justify-content: space-around;
         background: rgba(255, 255, 255, 0.9);
         padding: 20px;
         border-radius: 20px;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
         order: 2;
     }

     /* Sections */
     .services-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .pricing-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .pricing-card:last-child {
         grid-column: auto;
         max-width: 100%;
     }

     .card-popular {
         transform: scale(1);
     }
 }

 /* Small Phone */
 @media (max-width: 480px) {
     .hero-content h1 {
         font-size: 2.2rem;
     }

     .stat-group {
         flex-wrap: wrap;
         gap: 20px;
     }

     .stat-item {
         width: 40%;
     }
 }

 /*--------------------------------2.Hero------------------------------------------------*/
 .hero {
     padding: 180px 0 250px 0;
     /* Huge bottom padding to allow Triangle Overlap */
     position: relative;
     z-index: 10;
     overflow: visible;
     /* Important for overlapping elements */
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -10%;
     right: -10%;
     width: 65%;
     height: 110%;
     background: conic-gradient(from 180deg at 50% 50%, #d4f7e8, var(--aurora-teal), var(--primary-green), #d4f7e8);
     filter: blur(80px);
     opacity: 0.4;
     z-index: -1;
     border-radius: 50%;
 }

 .hero-grid {
     display: grid;
     grid-template-columns: 0.9fr 1.1fr;
     align-items: center;
     gap: 40px;
     position: relative;
 }

 .hero-content {
     position: relative;
     z-index: 20;
 }

 /* Text above background */
 .hero-tag {
     display: inline-block;
     background: #e6f7ef;
     color: var(--primary-green);
     padding: 6px 14px;
     border-radius: 30px;
     font-size: 0.85rem;
     font-weight: 700;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .hero-content h1 {
     font-family: 'Poppins', serif;
     font-size: 3.8rem;
     line-height: 1.15;
     margin-bottom: 24px;
     color: var(--text-dark);
     letter-spacing: -1px;
 }

 .hero-content p {
     color: var(--text-grey);
     margin-bottom: 40px;
     font-size: 1.15rem;
     max-width: 90%;
 }

 .hero-actions {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 /* Collage */
 .hero-collage {
     position: relative;
     height: 600px;
     width: 100%;
     z-index: 10;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .img-main {
     width: 60%;
     height: 70%;
     object-fit: cover;
     position: absolute;
     z-index: 1;
     border: 12px solid #fff;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
     filter: grayscale(100%);
 }

 .polaroid-card {
     position: absolute;
     background: white;
     padding: 8px 8px 30px 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     z-index: 10;
     transition: 0.3s;
 }

 .polaroid-card:hover {
     transform: scale(1.1) rotate(0deg) !important;
     z-index: 50;
 }

 .polaroid-img {
     width: 160px;
     height: 110px;
     object-fit: cover;
     background: #eee;
 }

 .polaroid-label {
     position: absolute;
     bottom: 40px;
     left: 50%;
     transform: translateX(-50%);
     background: rgba(255, 255, 255, 0.9);
     padding: 4px 10px;
     border-radius: 10px;
     font-family: 'Dancing Script', cursive;
     font-size: 1rem;
     color: var(--primary-dark);
     white-space: nowrap;
 }

 /* Scatter Positions */
 .card-tl {
     top: 20px;
     left: 10px;
     transform: rotate(-6deg);
 }

 .card-tr {
     top: 40px;
     right: 20px;
     transform: rotate(4deg);
 }

 .card-bl {
     bottom: 100px;
     left: 20px;
     transform: rotate(5deg);
 }

 .card-br {
     bottom: 80px;
     right: 20px;
     transform: rotate(-4deg);
     z-index: 12;
 }

 .abstract-review {
     position: absolute;
     top: 47%;
     right: -60px;
     transform: translateY(-50%) rotate(3deg);
     background: #fff;
     width: 220px;
     padding: 25px;
     border-radius: 30px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
     z-index: 25;
     text-align: center;
     animation: float 6s ease-in-out infinite;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(-50%) rotate(3deg);
     }

     50% {
         transform: translateY(-55%) rotate(3deg);
     }
 }

 .note-text {
     font-family: 'Courier New', monospace;
     font-size: 0.8rem;
     font-weight: 600;
     margin-bottom: 10px;
 }

 .note-signature {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .note-avatar {
     width: 30px;
     height: 30px;
     border-radius: 50%;
 }

 /* --- 5. TRIANGLE & DOCK SECTION --- */
 .triangle-section {
     position: relative;
     z-index: 5;
     margin-top: -350px;
     /* Pulls triangle UP into Hero */
     padding-bottom: 100px;
 }

 .triangle-bg {
     width: 100%;
     height: 1100px;
     background: linear-gradient(180deg, var(--accent-light) 0%, #d1f2e5 100%);
     clip-path: polygon(0 0, 100% 0, 50% 100%);
     position: absolute;
     top: 0;
     left: 0;
     z-index: 1;
     opacity: 0.5;
 }

 .dock-container {
     position: relative;
     z-index: 30;
     padding-top: 300px;
     display: flex;
     justify-content: center;
 }

 .data-dock-bg {
     position: absolute;
     top: 52%;
     left: 50%;
     transform: translate(-50%, -10%);
     width: 95%;
     max-width: 1000px;
     height: 180px;
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.9);
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
     border-radius: 30px;
     z-index: 25;
 }

 .dock-grid {
     display: grid;
     grid-template-columns: 1fr 340px 1fr;
     align-items: center;
     width: 100%;
     max-width: 1000px;
     position: relative;
     z-index: 35;
 }

 .stat-group {
     display: flex;
     justify-content: center;
     gap: 40px;
 }

 .stat-item {
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 5px;
     min-width: 100px;
 }

 .stat-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #fff, #f0fdf4);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     color: var(--primary-green);
     font-size: 1.5rem;
     border: 1px solid #eee;
 }

 .stat-icon svg {
     width: 28px;
     height: 28px;
     fill: currentColor;
 }

 .icon-gold {
     color: var(--gold);
 }

 .stat-value {
     font-family: 'Poppins', serif;
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--text-dark);
     line-height: 1;
 }

 .stat-label {
     font-size: 0.7rem;
     font-weight: 700;
     color: var(--text-grey);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* Phone Mockup */
 .phone-mockup {
     width: 320px;
     height: 640px;
     background: #1c1c1e;
     border-radius: 50px;
     padding: 4px;
     box-shadow: 0 0 0 4px #3a3a3c, 0 50px 100px rgba(0, 0, 0, 0.4);
     margin: 0 auto;
     z-index: 40;
     will-change: transform;
 }

 .phone-notch {
     position: absolute;
     top: 18px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 26px;
     background: #000;
     border-radius: 20px;
     z-index: 30;
 }

 .screen-container {
     width: 100%;
     height: 100%;
     background: #fff;
     border-radius: 46px;
     overflow: hidden;
     position: relative;
     border: 6px solid #000;
 }

 .screen-content {
     height: 100%;
     display: flex;
     flex-direction: column;
     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
 }

 .status-bar {
     display: flex;
     justify-content: space-between;
     padding: 15px 22px 0;
     font-size: 0.9rem;
     font-weight: 600;
 }

 .google-header {
     padding: 15px;
     border-bottom: 1px solid #f1f3f4;
 }

 .google-search-bar {
     background: #fff;
     border-radius: 24px;
     padding: 10px 15px;
     display: flex;
     align-items: center;
     gap: 10px;
     box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
     font-size: 0.9rem;
 }

 .local-pack {
     padding: 15px;
 }

 .result-header {
     font-size: 1.2rem;
     color: #1a0dab;
 }

 .rating-row {
     display: flex;
     gap: 5px;
     font-size: 0.85rem;
     color: #555;
     margin: 5px 0;
 }

 .stars {
     color: #fbbc04;
 }

 .action-grid {
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 8px;
     margin-top: 10px;
 }

 .g-btn {
     border: 1px solid #ddd;
     border-radius: 18px;
     padding: 8px;
     text-align: center;
     color: #1a73e8;
     font-size: 0.75rem;
     font-weight: 500;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .mini-map {
     height: 100px;
     background: #eee;
     margin-top: 10px;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
 }

 /*--------------------------------3.Pricing------------------------------------------------*/
 .pricing-section {
     padding: 80px 0;
     background: linear-gradient(180deg, #fff 0%, #f4fdf9 100%);
 }

 .section-header {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-tag {
     display: inline-block;
     background: var(--accent-light);
     color: var(--primary-green);
     padding: 6px 14px;
     border-radius: 30px;
     font-size: 0.8rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 15px;
 }

 .section-title {
     font-family: 'Poppins', serif;
     font-size: 2.8rem;
     color: var(--text-dark);
     margin-bottom: 15px;
     line-height: 1.2;
 }

 .section-sub {
     font-size: 1.1rem;
     color: var(--text-grey);
     max-width: 600px;
     margin: 0 auto;
 }

 /* Grid Layout */
 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     align-items: stretch;
 }

 /* CARD STYLES */
 .pricing-card {
     background: #fff;
     border: 1px solid #e0e0e0;
     border-radius: 16px;
     padding: 40px 30px;
     position: relative;
     transition: 0.3s ease;
     display: flex;
     flex-direction: column;
 }

 .pricing-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
     border-color: var(--primary-green);
 }

 /* "Best Value" Card Styling */
 .card-popular {
     border: 2px solid var(--primary-green);
     background: #fff;
     transform: scale(1.05);
     box-shadow: 0 15px 40px rgba(0, 143, 93, 0.1);
     z-index: 2;
 }

 .card-popular:hover {
     transform: scale(1.05) translateY(-5px);
 }

 .popular-badge {
     position: absolute;
     top: 0;
     left: 50%;
     transform: translate(-50%, -50%);
     background: var(--primary-green);
     color: #fff;
     padding: 8px 20px;
     border-radius: 30px;
     font-size: 0.8rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     box-shadow: 0 5px 15px rgba(0, 143, 93, 0.3);
 }

 /* Typography */
 .plan-name {
     font-family: 'Poppins', serif;
     font-size: 1.5rem;
     color: var(--text-dark);
     margin-bottom: 5px;
 }

 .plan-desc {
     font-size: 0.9rem;
     color: var(--text-grey);
     margin-bottom: 25px;
     min-height: 40px;
 }

 .price-wrapper {
     display: flex;
     align-items: baseline;
     gap: 5px;
     margin-bottom: 30px;
 }

 .currency {
     font-size: 1.5rem;
     font-weight: 600;
     color: var(--text-dark);
 }

 .amount {
     font-size: 3rem;
     font-weight: 800;
     color: var(--text-dark);
     line-height: 1;
 }

 .period {
     font-size: 0.95rem;
     color: var(--text-grey);
     font-weight: 500;
 }

 /* Feature List */
 .feature-list {
     list-style: none;
     margin-bottom: 40px;
     display: flex;
     flex-direction: column;
     gap: 15px;
     flex-grow: 1;
 }

 .feature-item {
     display: flex;
     align-items: center;
     gap: 12px;
     color: var(--text-dark);
     font-size: 0.95rem;
     font-weight: 500;
 }

 .check-icon {
     width: 20px;
     height: 20px;
     background: var(--accent-light);
     color: var(--primary-green);
     border-radius: 50%;
     padding: 4px;
     flex-shrink: 0;
 }

 .text-muted {
     color: #999;
     text-decoration: line-through;
 }

 /* Trust Note */
 .trust-note {
     margin-top: 50px;
     text-align: center;
     padding: 15px;
     background: #eefbf6;
     border-radius: 8px;
     display: inline-block;
     width: 100%;
     max-width: 500px;
     font-size: 0.9rem;
     color: var(--primary-dark);
     font-weight: 600;
     border: 1px dashed var(--primary-green);
 }

 /* Mobile */
 @media (max-width: 968px) {
     .pricing-grid {
         grid-template-columns: 1fr;
         gap: 50px;
     }

     .card-popular {
         transform: scale(1);
     }

     .card-popular:hover {
         transform: translateY(-5px);
     }

     .section-title {
         font-size: 2.2rem;
     }
 }

 /*--------------------------------4.Services------------------------------------------------*/

 .services-section {
     padding: 120px 0;
     background: linear-gradient(180deg, #fff 0%, #f7fcf9 100%);
     position: relative;
     overflow: hidden;
 }

 /* Abstract Shapes for Services */
 .abstract-shape-services {
     position: absolute;
     bottom: 5%;
     right: -5%;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle at 70% 70%, rgba(0, 201, 167, 0.2), rgba(230, 247, 239, 0.3));
     /* Teal to Light Green */
     border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
     filter: blur(50px);
     z-index: 0;
     opacity: 0.6;
     animation: float-slow-reverse 18s infinite alternate ease-in-out;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     margin-top: 50px;
     position: relative;
     z-index: 2;
 }

 .svc-image-card {
     background: var(--white);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: all 0.4s ease;
     position: relative;
     border: 1px solid #e0e0e0;
     height: 420px;
     display: flex;
     flex-direction: column;
 }

 .svc-image-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 30px 60px rgba(0, 143, 93, 0.15);
     border: 2px solid var(--primary-green);
 }

 .svc-img-wrapper {
     height: 50%;
     overflow: hidden;
     position: relative;
 }

 .svc-img-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: all 0.6s ease;
 }

 .svc-image-card:hover .svc-img-wrapper img {
     transform: scale(1.1);
 }

 .svc-stat-badge {
     position: absolute;
     bottom: 0;
     right: 0;
     background: var(--primary-green);
     color: #fff;
     padding: 5px 15px;
     font-size: 0.75rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     border-radius: 20px 0 0 0;
     transform: translateY(100%);
     transition: transform 0.4s ease;
 }

 .svc-image-card:hover .svc-stat-badge {
     transform: translateY(0);
 }

 .svc-glass-icon {
     position: absolute;
     top: 50%;
     left: 25px;
     transform: translateY(-50%);
     width: 60px;
     height: 60px;
     background: rgba(255, 255, 255, 0.8);
     backdrop-filter: blur(10px);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-green);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     z-index: 5;
     border: 1px solid rgba(255, 255, 255, 0.9);
 }

 .svc-glass-icon svg {
     width: 28px;
     height: 28px;
     fill: currentColor;
 }

 .svc-content {
     padding: 25px;
     padding-top: 40px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .svc-title {
     font-family: 'Poppins', serif;
     font-size: 1.5rem;
     color: var(--text-dark);
     margin-bottom: 8px;
 }

 .svc-desc {
     font-size: 0.9rem;
     color: var(--text-grey);
     line-height: 1.5;
     margin-bottom: 15px;
 }

 .svc-link-btn {
     margin-top: auto;
     align-self: flex-start;
     padding: 12px 24px;
     background: transparent;
     border: 2px solid var(--primary-green);
     color: var(--primary-green);
     border-radius: 30px 10px 30px 10px;
     font-weight: 700;
     font-size: 0.9rem;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 10px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 .svc-btn-arrow {
     width: 24px;
     height: 24px;
     background: var(--accent-light);
     color: var(--primary-green);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: 0.3s;
     font-size: 1.2rem;
     line-height: 1;
 }

 .svc-image-card:hover .svc-link-btn {
     background: var(--primary-green);
     color: var(--white);
     box-shadow: 0 10px 20px rgba(0, 143, 93, 0.2);
     padding-right: 20px;
 }

 .svc-image-card:hover .svc-btn-arrow {
     background: var(--white);
     color: var(--primary-green);
     transform: translateX(5px);
 }



 /* Mobile */
 @media (max-width: 968px) {

     .services-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .svc-image-card {
         height: auto;
     }

     /* Let height be fluid on mobile */
     .svc-img-wrapper {
         height: 200px;
     }

     /* Adjust shapes for mobile */
     .abstract-shape-pricing {
         width: 300px;
         height: 300px;
         top: 5%;
         left: -20%;
         filter: blur(40px);
     }

     .abstract-shape-services {
         width: 300px;
         height: 300px;
         bottom: 2%;
         right: -20%;
         filter: blur(40px);
     }
 }

 /*--------------------------------5.Reviews-------------------------------------------------*/
 .reviews-section {
     background-color: var(--accent-light);
     /* Light Green Background */
     padding: 100px 0;
     position: relative;
 }

 .google-badge-container {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin-bottom: 20px;
 }

 .google-badge {
     background: #fff;
     padding: 8px 16px;
     border-radius: 30px;
     display: flex;
     align-items: center;
     gap: 8px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     font-weight: 600;
     font-size: 0.9rem;
 }

 .reviews-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     margin-top: 50px;
 }

 .review-card {
     background: #fff;
     padding: 35px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     position: relative;
     transition: 0.3s;
     border-bottom: 4px solid transparent;
 }

 .review-card:hover {
     transform: translateY(-10px);
     border-bottom-color: var(--primary-green);
 }

 .quote-icon {
     font-family: 'Poppins', serif;
     font-size: 4rem;
     color: #d1f2e5;
     line-height: 0;
     position: absolute;
     top: 40px;
     left: 20px;
     z-index: 0;
 }

 .review-content {
     position: relative;
     z-index: 1;
 }

 .review-text {
     font-size: 1.05rem;
     color: var(--text-dark);
     line-height: 1.7;
     margin-bottom: 25px;
     font-style: italic;
 }

 .patient-info {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .patient-img {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     object-fit: cover;
 }

 .patient-details h4 {
     font-size: 0.95rem;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 2px;
 }

 .patient-details span {
     font-size: 0.8rem;
     color: var(--primary-green);
     font-weight: 600;
     text-transform: uppercase;
     display: flex;
     align-items: center;
     gap: 4px;
 }

 .verified-icon {
     width: 14px;
     height: 14px;
     fill: currentColor;
 }

 .review-btn-container {
     text-align: center;
     margin-top: 60px;
 }

 @media(max-width:700px) {
     .reviews-grid {
         grid-template-columns: repeat(1, 1fr);
     }
 }

 /*--------------------------------6.Why Choose Us------------------------------------------------*/
 .why-us-section {
     background-color: var(--accent-light);
     padding: 100px 0;
     position: relative;
 }

 .why-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     margin-top: 50px;
 }

 .why-card {
     background: var(--white);
     padding: 40px 30px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 1px solid rgba(0, 143, 93, 0.05);
 }

 .why-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 50px rgba(0, 143, 93, 0.1);
 }

 .why-icon {
     width: 70px;
     height: 70px;
     background: var(--accent-light);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-green);
     margin-bottom: 25px;
 }

 .why-icon svg {
     width: 32px;
     height: 32px;
     fill: currentColor;
 }

 .why-title {
     font-family: 'Poppins', serif;
     font-size: 1.5rem;
     color: var(--text-dark);
     margin-bottom: 15px;
 }

 .why-desc {
     color: var(--text-grey);
     font-size: 1rem;
     line-height: 1.6;
 }

 /* Mobile */
 @media (max-width: 968px) {
     .hero-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .hero-collage {
         height: 500px;
         margin-bottom: 20px;
     }

     .polaroid-img {
         width: 110px;
         height: 80px;
     }

     /* .polaroid-label,
     .abstract-review {
         display: none;
     } */

     .hero-actions {
         flex-direction: column;
         align-items: flex-start;
     }

     .triangle-section {
         margin-top: -150px;
     }

     .triangle-bg {
         clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
         border-radius: 0 0 50px 50px;
         height: 1100px;
         opacity: 0.4;
     }

     .dock-container {
         padding-top: 100px;
         flex-direction: column;
     }

     .data-dock-bg {
         display: none;
     }

     .dock-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .phone-mockup {
         width: 280px;
         height: 560px;
         order: 1;
         margin-bottom: 30px;
     }

     .stat-group {
         display: flex;
         flex-direction: row;
         gap: 10px;
         width: 100%;
         justify-content: space-around;
         order: 2;
         background: rgba(255, 255, 255, 0.8);
         padding: 20px;
         border-radius: 20px;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     }

     .pricing-grid {
         grid-template-columns: 1fr;
         gap: 50px;
     }

     .card-popular {
         transform: scale(1);
     }

     .why-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }
 }

 /*--------------------------------7.Gallery------------------------------------------------*/
 .results-section {
     padding: 80px 0;
     width: 100%;
 }

 .results-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .hero-tag {
     display: inline-block;
     background: var(--accent-light);
     color: var(--primary-green);
     padding: 6px 14px;
     border-radius: 30px;
     font-size: 0.85rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin-bottom: 15px;
 }

 .results-header h2 {
     font-family: 'Poppins', serif;
     font-size: 2.8rem;
     color: var(--text-dark);
     margin-top: 10px;
     line-height: 1.2;
 }

 .highlight {
     color: var(--primary-green);
 }

 .results-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     margin: 0 auto;
 }

 /* CARD DESIGN */
 .result-card {
     background: var(--white);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 1px solid #edf2f0;
     display: flex;
     flex-direction: column;
 }

 .result-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 25px 50px rgba(0, 143, 93, 0.15);
     /* Green glow on hover */
 }

 /* IMAGE AREA */
 .card-image {
     height: 240px;
     width: 100%;
     position: relative;
     overflow: hidden;
 }

 .card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .result-card:hover .card-image img {
     transform: scale(1.05);
 }

 /* FLOATING BADGE */
 .result-badge {
     position: absolute;
     bottom: 15px;
     left: 15px;
     background: rgba(255, 255, 255, 0.95);
     padding: 8px 16px;
     border-radius: 30px;
     font-size: 0.8rem;
     font-weight: 700;
     color: var(--primary-green);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     display: flex;
     align-items: center;
     gap: 8px;
     z-index: 2;
 }

 .check-icon {
     background: var(--primary-green);
     color: white;
     width: 18px;
     height: 18px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.7rem;
 }

 /* DATA AREA */
 .card-data {
     padding: 30px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .card-data h3 {
     font-family: 'Poppins', serif;
     font-size: 1.4rem;
     margin-bottom: 20px;
     color: var(--text-dark);
     border-bottom: 2px solid var(--accent-light);
     padding-bottom: 12px;
     display: inline-block;
     width: 100%;
 }

 .data-row {
     display: flex;
     justify-content: space-between;
     margin-bottom: 14px;
     font-size: 0.95rem;
     border-bottom: 1px dashed #eee;
     padding-bottom: 6px;
 }

 .data-label {
     color: var(--text-grey);
     font-weight: 500;
 }

 .data-val {
     font-weight: 700;
     color: var(--text-dark);
 }

 .data-val.alert {
     color: var(--alert-red);
 }

 .data-val.success {
     color: var(--primary-green);
 }

 .case-link {
     margin-top: auto;
     /* Pushes link to bottom */
     padding-top: 15px;
     font-size: 0.85rem;
     font-weight: 700;
     color: var(--primary-green);
     text-decoration: none;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     transition: 0.2s;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .case-link:hover {
     color: var(--primary-dark);
     letter-spacing: 1px;
 }

 /* Responsive */
 @media (max-width: 968px) {
     .results-grid {
         grid-template-columns: 1fr;
         max-width: 420px;
     }

     .results-header h2 {
         font-size: 2.2rem;
     }
 }

 /*--------------------------------8.Doctor-------------------------------------------------*/
 .doctor-section {
     padding: 100px 0;
     position: relative;
     overflow: hidden;
 }

 .doc-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     gap: 60px;
 }

 /* LEFT SIDE: THE BLOB & IMAGE */
 .visual-wrapper {
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
     height: 500px;
 }

 /* The Animated Abstract Background Blob */
 .abstract-blob {
     position: absolute;
     width: 450px;
     height: 450px;
     background: linear-gradient(135deg, #d4f7e8 0%, #a7e8d6 100%);
     z-index: 1;
     /* The "Blob" Magic using border-radius */
     border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
     animation: morph-blob 8s ease-in-out infinite;
     filter: blur(1px);
 }

 /* A second, outlined blob for depth */
 .abstract-blob-outline {
     position: absolute;
     width: 480px;
     height: 480px;
     border: 2px dashed var(--primary-green);
     z-index: 0;
     opacity: 0.3;
     border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
     animation: rotate-blob 20s linear infinite;
 }

 /* The Doctor's Image (Masked) */
 .doctor-img-mask {
     position: relative;
     z-index: 2;
     width: 400px;
     height: 420px;
     overflow: hidden;
     border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
     /* Organic arch shape */
     box-shadow: 0 20px 40px rgba(0, 143, 93, 0.15);
     transition: transform 0.4s ease;
 }

 .doctor-img-mask:hover {
     transform: scale(1.02);
 }

 .doctor-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: top;
 }

 /* Floating Badge */
 .exp-badge {
     position: absolute;
     bottom: 40px;
     right: 20px;
     z-index: 5;
     background: var(--white);
     padding: 15px 25px;
     border-radius: 50px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     display: flex;
     align-items: center;
     gap: 10px;
     animation: float-y 4s ease-in-out infinite;
 }

 .badge-icon {
     font-size: 1.5rem;
 }

 .badge-text {
     font-weight: 700;
     color: var(--primary-dark);
     font-size: 0.9rem;
     line-height: 1.2;
 }

 .badge-sub {
     font-weight: 400;
     font-size: 0.75rem;
     color: var(--text-grey);
     text-transform: uppercase;
 }

 /* RIGHT SIDE: CONTENT */
 .content-wrapper {
     z-index: 10;
 }

 .section-tag {
     color: var(--primary-green);
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     font-size: 0.85rem;
     margin-bottom: 15px;
     display: inline-block;
 }

 h2 {
     font-family: 'Poppins', serif;
     font-size: 3rem;
     line-height: 1.1;
     margin-bottom: 25px;
     color: var(--text-dark);
 }

 .highlight-script {
     font-family: 'Dancing Script', cursive;
     color: var(--primary-green);
     font-weight: 400;
     font-size: 1.1em;
     /* Relative to H2 */
 }

 p.lead {
     font-size: 1.1rem;
     color: var(--text-grey);
     margin-bottom: 30px;
     line-height: 1.7;
     max-width: 90%;
 }

 .creds-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     margin-bottom: 35px;
 }

 .cred-item {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .check-blob {
     width: 24px;
     height: 24px;
     background: var(--accent-light);
     color: var(--primary-green);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     font-size: 0.8rem;
 }

 .signature {
     height: 50px;
     opacity: 0.7;
     margin-bottom: 30px;
 }

 .btn-outline {
     display: inline-block;
     padding: 12px 30px;
     border: 2px solid var(--text-dark);
     color: var(--text-dark);
     text-decoration: none;
     font-weight: 600;
     border-radius: 50px;
     transition: 0.3s;
 }

 .btn-outline:hover {
     background: var(--text-dark);
     color: var(--white);
 }

 /* --- ANIMATIONS --- */
 @keyframes morph-blob {
     0% {
         border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
     }

     50% {
         border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
     }

     100% {
         border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
     }
 }

 @keyframes rotate-blob {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 @keyframes float-y {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }
 }

 /* Mobile Responsive */
 @media (max-width: 900px) {
     .doc-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .visual-wrapper {
         height: 400px;
         order: 1;
     }

     /* Image on top on mobile */
     .content-wrapper {
         order: 2;
         text-align: center;
     }

     .abstract-blob,
     .abstract-blob-outline {
         width: 350px;
         height: 350px;
     }

     .doctor-img-mask {
         width: 300px;
         height: 320px;
     }

     .creds-grid {
         text-align: left;
         max-width: 300px;
         margin: 0 auto 30px auto;
     }

     .exp-badge {
         right: 10%;
     }

     h2 {
         font-size: 2.2rem;
     }
 }

 /*--------------------------------9.FAQ------------------------------------------------*/


.faq-section{
    padding: 1.6rem 3.2rem;
    padding-bottom:5.2rem;
}

 .faq-container {
     max-width: 800px;
     margin: 0 auto;
 }

 .faq-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .faq-header h2 {
     font-family: 'Poppins', serif;
     font-size: 2.5rem;
     color: var(--text-dark);
     margin-bottom: 10px;
 }

 .faq-header p {
     color: var(--text-grey);
 }

 .faq-item {
     margin-bottom: 15px;
     border: 1px solid #eee;
     border-radius: 15px;
     overflow: hidden;
     transition: 0.3s;
 }

 .faq-item:hover {
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
     border-color: var(--primary-green);
 }

 details {
     padding: 20px;
 }

 summary {
     font-weight: 600;
     font-size: 1.1rem;
     cursor: pointer;
     list-style: none;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 summary::after {
     content: '＋';
     color: var(--primary-green);
     font-size: 1.2rem;
     transition: 0.3s;
 }

 details[open] summary::after {
     transform: rotate(45deg);
 }

 .faq-content {
     padding-top: 15px;
     color: var(--text-grey);
     line-height: 1.7;
     border-top: 1px solid #f9f9f9;
     margin-top: 15px;
 }

 .highlight-text {
     color: var(--primary-green);
     font-weight: 600;
 }

 /*--------------------------------10.Contact-------------------------------------------------*/
 .contact-section{
    padding: 1.6rem 3.2rem;
    padding-bottom:5.2rem;
}

 .main-wrapper {
     max-width: 1100px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1.2fr 0.8fr;
     gap: 40px;
     align-items: stretch;
 }

 /* --- LEFT SIDE: FORM --- */
 .form-section {
     background: var(--white);
     padding: 50px;
     border-radius: 32px;
     box-shadow: var(--shadow);
     border: 1px solid #f0f0f0;
 }

 .form-section h2 {
     font-family: 'Poppins', serif;
     font-size: 2.5rem;
     margin-bottom: 12px;
     letter-spacing: -0.5px;
 }

 .form-section p {
     color: var(--text-grey);
     margin-bottom: 35px;
     font-size: 1rem;
 }

 .input-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     margin-bottom: 20px;
 }

 .input-group {
     display: flex;
     flex-direction: column;
     gap: 8px;
     margin-bottom: 20px;
 }

 .input-group label {
     font-size: 0.8rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--primary-green);
 }

 .input-field {
     padding: 14px 18px;
     background: #f8f9fa;
     border: 1px solid #edeef0;
     border-radius: 12px;
     font-size: 0.95rem;
     transition: all 0.3s ease;
 }

 .input-field:focus {
     outline: none;
     background: #fff;
     border-color: var(--primary-green);
     box-shadow: 0 0 0 4px rgba(0, 143, 93, 0.05);
 }

 .submit-btn {
     width: 100%;
     padding: 18px;
     background: var(--primary-green);
     color: white;
     border: none;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 10px;
 }

 .submit-btn:hover {
     background: var(--primary-dark);
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(0, 92, 59, 0.15);
 }

 /* --- RIGHT SIDE: LOCATION --- */
 .location-section {
     display: flex;
     flex-direction: column;
     gap: 25px;
 }

 .map-card {
     background: var(--white);
     border-radius: 32px;
     overflow: hidden;
     flex-grow: 1;
     box-shadow: var(--shadow);
     border: 1px solid #f0f0f0;
     position: relative;
     min-height: 350px;
 }

 .address-card {
     background: var(--primary-green);
     color: white;
     padding: 35px;
     border-radius: 32px;
     box-shadow: 0 15px 30px rgba(0, 143, 93, 0.2);
 }

 .info-item {
     display: flex;
     align-items: flex-start;
     gap: 18px;
     margin-bottom: 20px;
 }

 .info-item:last-child {
     margin-bottom: 0;
 }

 .info-icon {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.15);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
     flex-shrink: 0;
 }

 .info-text h4 {
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin: 0 0 4px 0;
     opacity: 0.8;
 }

 .info-text p {
     margin: 0;
     font-size: 0.95rem;
     font-weight: 500;
     line-height: 1.5;
 }

 @media (max-width: 968px) {
     .main-wrapper {
         grid-template-columns: 1fr;
     }

     .form-section {
         padding: 30px;
     }

     .input-row {
         grid-template-columns: 1fr;
     }
 }

 /*--------------------------------11.Footer-------------------------------------------------*/

 footer {
     background-color: #f9fdfb;
     padding: 80px 0 30px 0;
     border-top: 1px solid var(--accent-light);
     position: relative;
     overflow: hidden;
 }

 /* Subtle Background Decoration */
 footer::before {
     content: '';
     position: absolute;
     bottom: -100px;
     left: -100px;
     width: 300px;
     height: 300px;
     background: var(--accent-light);
     border-radius: 50%;
     filter: blur(80px);
     z-index: 0;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     position: relative;
     z-index: 1;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
     gap: 60px;
     margin-bottom: 60px;
 }

 .footer-logo {
     font-weight: 800;
     font-size: 1.5rem;
     color: var(--primary-green);
     display: flex;
     align-items: center;
     gap: 10px;
     letter-spacing: -1px;
     margin-bottom: 20px;
 }

 .footer-about p {
     color: var(--text-grey);
     font-size: 0.95rem;
     line-height: 1.6;
 }

 .footer-heading {
     font-size: 1.1rem;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 25px;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     text-decoration: none;
     color: var(--text-grey);
     font-size: 0.95rem;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: var(--primary-green);
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .contact-item {
     display: flex;
     gap: 12px;
     font-size: 0.95rem;
     color: var(--text-grey);
 }

 .footer-bottom {
     padding-top: 30px;
     border-top: 1px solid rgba(0, 0, 0, 0.05);
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: var(--text-grey);
     font-size: 0.85rem;
 }

 /* --- FIXED SOCIAL MEDIA ICONS --- */
 .social-links {
     display: flex;
     gap: 12px;
     margin-top: 5px;
 }

 .social-circle {
     width: 40px;
     height: 40px;
     background: var(--white);
     border: 1px solid #e0eadd;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     text-decoration: none;
     color: var(--primary-green);
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
 }

 .social-circle svg {
     width: 18px;
     height: 18px;
     fill: currentColor;
 }

 .social-circle:hover {
     background: var(--primary-green);
     color: var(--white);
     transform: translateY(-4px);
     box-shadow: 0 8px 15px rgba(0, 143, 93, 0.2);
     border-color: var(--primary-green);
 }

 @media (max-width: 968px) {
     .footer-grid {
         grid-template-columns: 1fr 1fr;
         gap: 40px;
     }
 }

 @media (max-width: 500px) {
     .footer-grid {
         grid-template-columns: 1fr;
     }

     .footer-bottom {
         flex-direction: column;
         gap: 20px;
         text-align: center;
     }
 }