@charset "utf-8";
/* CSS Document */

        /* === Color Variables === */
        :root {
            --primary-teal: #0f4c5c;
            --primary-teal-hover: #104850;
            --dark-text: #1a2a33;
			--light-subtext: #0c8284;
            --gray-text: #51627b;
			--bg-light-blue: #f0f9f8;
            --light-bg: #f6f7f7;
			--icon-light-bg: #dcf2f1;
			--white: #fff;
			--bold-text: #1b3d5b;
			--border-color: #e3e7ea;
			--star:        #F5A623;
      		--border-card: #E2E8F0;
      		--active-border: #3DADA8;
			--pp-gold: #c9a84c;
			--pp-teal-lt: #3d9a9a;
        }

        /* === Base Typography === */
        body {
            font-family: 'Inter', sans-serif;
            color: var(--gray-text);
            background-color: var(--white);
            -webkit-font-smoothing: antialiased;
        }

.coming-soon-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(61, 154, 154, 0.16), transparent 32%),
        radial-gradient(circle at bottom right, rgba(201, 168, 76, 0.16), transparent 34%),
        var(--bg-light-blue);
}

.coming-soon-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.coming-soon-card {
    width: min(780px, 100%);
    padding: 52px;
    border: 1px solid rgba(15, 76, 92, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 70px rgba(15, 76, 92, 0.14);
    text-align: center;
}

.coming-soon-logo {
    width: 88px;
    height: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--icon-light-bg);
}

.coming-soon-logo img {
    max-width: 62px;
    height: auto;
}

.coming-soon-eyebrow {
    margin-bottom: 12px;
    color: var(--light-subtext);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.coming-soon-card h1 {
    margin-bottom: 18px;
    font-size: clamp(2.4rem, 7vw, 5rem);
    line-height: 1;
}

.coming-soon-text {
    max-width: 560px;
    margin: 0 auto 34px;
    color: var(--gray-text);
    font-size: 18px;
    line-height: 1.7;
}

.coming-soon-timer {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 34px;
}

.coming-soon-time-box {
    padding: 22px 12px;
    border: 1px solid var(--border-card);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 76, 92, 0.08);
}

.coming-soon-time-box span {
    display: block;
    color: var(--primary-teal);
    font-size: clamp(2rem, 5vw, 3.3rem);
    font-weight: 700;
    line-height: 1;
}

.coming-soon-time-box small {
    display: block;
    margin-top: 8px;
    color: var(--gray-text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.coming-soon-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

        h1, h2, .font-serif {
            font-family: 'Playfair Display', serif;
            color: var(--dark-text);
        }

        /* === Header & Navigation === */
		.header { padding-bottom: 50px; padding-top: 20px; }
        .navbar {
            padding: 0px;
            border-bottom: 1px solid #eaeaea;
            background-color: #ffffff;
        }

        .navbar-brand .logo-icon {
            font-size: 28px;
            color: var(--primary-teal);
        }

        .navbar-brand .logo-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-teal);
            line-height: 1.2;
            letter-spacing: 0.5px;
        }

        .navbar-brand .logo-subtitle {
            font-size: 12px;
            color: var(--gray-text);
            font-weight: 400;
        }

        .nav-link {
            color: var(--dark-text) !important;
            font-weight: 700;
            font-size: 12px;
            margin: 0 4px;
            padding: 7px 2px !important;
            transition: color 0.3s ease;
			text-transform: uppercase;
        }

        .nav-link:hover {
            color: var(--primary-teal) !important;
        }

        .nav-link.active {
            position: relative;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-teal);
        }

        /* === Buttons === */
        .btn-custom-primary {
            background-color: var(--primary-teal);
            color: #ffffff;
            font-weight: 500;
            padding: 12px 15px;
            border-radius: 6px;
            border: 2px solid var(--primary-teal);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
			text-transform: uppercase;
			font-size: 12px;
        }

        .btn-custom-primary:hover {
            background-color: var(--primary-teal-hover);
            border-color: var(--primary-teal-hover);
            color: #ffffff;
        }

        .btn-custom-outline {
            background-color: transparent;
            color: #11c253;
            font-weight: 500;
            padding: 12px 24px;
            border-radius: 6px;
            border: 1px solid #128c7e;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-custom-outline i {
            color: #11c253;
            font-size: 1.2rem;
        }

        .btn-custom-outline:hover {
            border-color: var(--primary-teal);
            background-color: #f4f9f9;
        }

        .btn-linkedin-outline {
            background-color: transparent;
            color: #0077b5;
            font-weight: 500;
            padding: 12px 15px;
            border-radius: 6px;
            border: 1px solid #0077b5;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
			font-size: 12px;
			text-transform: uppercase;
			margin: 0px auto;
        }

        .btn-linkedin-outline i {
            color: #0077b5;
            font-size: 1.2rem;
        }

        .btn-linkedin-outline:hover {
            border-color: #0077b5;
            background-color: #0077b5;
            color: #ffffff !important;
        }
        .btn-linkedin-outline:hover i {
            color: #ffffff !important;
        }

        /* === Hero Section === */
        .hero-section {
            padding: 0px 0;
        }

        .hero-badge {
            font-size: 15px;
            font-weight: 600;
            color: var(--primary-teal);
            letter-spacing: 2.5px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
        }

        .hero-badge i {
            font-size: 20px;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 24px;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--gray-text);
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 90%;
        }

        /* === Avatars Section === */
        .trust-section {
            margin-top: 40px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .avatar-group {
            display: flex;
        }

        .avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 3px solid #ffffff;
            object-fit: cover;
            margin-left: -15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .trust-text {
            font-size: 15px;
            color: var(--gray-text);
            font-weight: 500;
        }

        /* === Hero Image === */
        .hero-image-wrapper {
            position: relative;
            height: 100%;
            min-height: 550px;
            width: 100%;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        /* === Responsive Adjustments === */
        @media (max-width: 991px) {
            .navbar-nav {
                padding: 20px 0;
                gap: 15px;
            }
            .hero-section {
                padding: 50px 0;
            }
            .hero-title {
                font-size: 3.5rem;
            }
            .hero-image-wrapper {
                min-height: 400px;
                margin-top: 50px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.8rem;
            }
            .hero-subtitle {
                font-size: 1.05rem;
                max-width: 100%;
            }
            .btn-container {
                flex-direction: column;
                width: 100%;
            }
            .btn-custom-primary, .btn-custom-outline, .btn-whatsapp-primary, .btn-linkedin-outline, .intl-section .wa-btn, .cta-btn {
                width: 100%;
                justify-content: center;
            }
            .trust-section {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.4rem;
            }
            .hero-image-wrapper {
                min-height: 300px;
            }
        }
		@media (max-width: 435px) {
			.logo-title {
				font-size: 0.76rem !important;
			}
			.navbar-brand {
				gap: 0.35rem !important;
			}
			.navbar-brand img {
				max-width: 61px;
				width: 61px;
			}
		}
		@media (max-width: 480px) and (min-resolution: 2dppx),
		       (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
			.navbar-brand img {
				max-width: 61px;
				width: 61px;
			}
		}
		/* --- Main Card --- */
        .features-card {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            padding: 50px 0;
            border: 1px solid rgba(0,0,0,0.06);
        }

        /* --- Individual Feature Item 
        .features-card .feature-item {
            padding: 0 20px;
        }--- */
.features-card .feature-item {
    padding: 0px 20px; /* Added vertical padding for better spacing */
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effects */
    cursor: pointer;
    border-radius: 12px;
}

.features-card .feature-item:hover {
    background-color: #ffffff;
    transform: translateY(-2px); /* Creates the 'lift' effect */
    z-index: 10;
}

/* Optional: Subtle animation for the image/icon on hover */
.features-card .feature-item:hover .icon-wrapper img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Ensure the wrapper doesn't jump */
.features-card .icon-wrapper img {
    transition: transform 0.3s ease;
}

        /* --- Custom Icon Wrapper with Arc Effect --- */
        .features-card .icon-wrapper {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            /*background-color: #f0fcfc;  Very light teal background */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 0 15px rgba(32, 178, 170, 0.1);
        }

        .features-card .icon-wrapper img {
            height: auto;
			width: 110px;
        }

        /* The partial circular line
        .icon-wrapper::before {
            content: '';
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            border: 1.5px solid transparent;
            border-top-color: #2cbba9; 
            border-right-color: #2cbba9; 

            border-radius: 50%;
            transform: rotate(35deg);
        }

        /* The dot at the end of the line 
        .icon-wrapper::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background-color: #2cbba9;
            border-radius: 50%;
            right: 1px;
            top: 78px;
        }

        /* --- Typography & Separators --- */
        .features-card .feature-title {
            color: #1a202c;
            font-size: 1.15rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .features-card .feature-divider {
            width: 35px;
            height: 2px;
            background-color: #2cbba9;
            margin: 0 auto 20px;
        }

        .features-card .feature-subtitle {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 0;
        }

        /* --- Responsive Borders --- */
        /* Desktop: Vertical borders between columns */
        @media (min-width: 992px) {
            .features-card .feature-item:not(:last-child) {
				border-right: 1px solid #f1f5f9;
				border-bottom: none;
			}
        }
		@media (max-width: 991px) {
    .features-card .feature-item {
        /* This ensures the div takes the full width of the row */
        flex: 0 0 50% !important; 
        max-width: 50% !important;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .features-card .feature-item:not(:last-child) {
        border-bottom: 1px solid #f1f5f9;
        border-right: none; /* Remove the vertical line from desktop */
    }

    .features-card {
        padding: 40px 15px; /* Add some side padding for mobile */
    }
}
        /* Tablet: 2x2 grid, adjust borders */
        @media (max-width: 991px) and (min-width: 768px) {
            .features-card .feature-item:nth-child(odd) {
                border-right: 1px solid #f1f5f9;
            }
            .features-card .feature-item:nth-child(1),
            .features-card .feature-item:nth-child(2) {
                border-bottom: 1px solid #f1f5f9;
                padding-bottom: 40px;
                margin-bottom: 40px;
            }
        }

        /* Mobile: Stacked, add bottom borders instead */
        @media (max-width: 767px) {
            .features-card .feature-item:not(:last-child) {
                border-bottom: 1px solid #f1f5f9;
                padding-bottom: 40px;
                margin-bottom: 5px;
            }
			.features-card { padding: 30px 0px 0px 0px; }
			.doctor-image-wrapper::before {
            display: none !important;
        }
			.doctor-image-wrapper { min-height: 380px !important; }
        }
		
		/* === Typography === */
        .font-serif {
            font-family: 'Playfair Display', serif;
            color: var(--dark-text);
        }

        .text-teal {
            color: var(--light-subtext) !important;
        }

        /* === Image Column Styles === */
        .doctor-image-wrapper {
            position: relative;
            
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            min-height: 450px;
            padding-top: 40px;
            z-index: 1;
        }

        /* Subtle background circle effect */
        .doctor-image-wrapper::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 300px;
            background-color: #e0ecee;
            border-radius: 50%;
            z-index: -1;
        }


        .doctor-img {
            max-width: 90%;
            height: auto;
            display: block;
            position: relative;
            z-index: 1;
        }

        /* === Floating Info Card === */
        .floating-card {
            position: absolute;
            bottom: 30px;
            left: 50px;
            background: #ffffff;
            padding: 20px 25px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            z-index: 10;
			
        }
		
		.floating-card::before {
			  margin-left: 10px;
			  content: "";
			  position: absolute;
			  left: 0;
			  top: 10%;           /* Starts 10% from the top */
			  height: 80%;        /* Line is only 80% of the div height */
			  width: 2px;
			  background-color: #0f4c5c;
			}
		
        .floating-card .signature {
            font-family: 'Great Vibes', cursive;
            font-size: 1.8rem;
            color: var(--light-subtext);
            margin-bottom: 5px;
        }

        .floating-card .credentials {
            font-size: 0.8rem;
            color: var(--dark-text);
            font-weight: 500;
            margin-bottom: 2px;
        }

        .floating-card .title {
            font-size: 0.75rem;
            color: var(--gray-text);
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 0;
        }

        /* === Text Column Styles === */
        .section-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--light-subtext);
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
			margin-top: 30px;
        }

        .section-label::after {
            content: '';
            position: absolute;
            bottom: -5px;
            width: 40px;
            height: 2px;
			left: 0; /* 1. Move the left edge to the exact middle of the parent */
    		
            background-color: var(--light-subtext);
        }
		
        .doctor-name {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 5px;
            letter-spacing: -0.5px;
			color: #1a2a33;
        }

        .doctor-degree {
            font-size: 1.1rem;
            font-weight: 500;
            color: #0f4c5c;
            margin-bottom: 15px;
        }

        /* Decorative Divider */
        .fancy-divider {
            position: relative;
            height: 1px;
            background-color: #e5e7eb;
            margin: 25px 0;
            display: flex;
            align-items: center;
        }

        .fancy-divider::before {
            content: '✦';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            color: #dcf2f1;
            font-size: 20px;
            background: #ffffff;
            padding: 0 15px;
        }

        .doctor-desc {
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 90%;
        }

        /* === Icon Features Grid === */
        .features-grid {
            display: flex;
            margin-bottom: 44px;
			margin-top: 17px;
        }

        .feature-item {
            flex: 1;
            text-align: center;
            padding: 0 15px;
            position: relative;
        }

        .aboutus .feature-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 10%;
            height: 80%;
            width: 1px;
            background-color: #c9cacb;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: #dcf2f1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: var(--dark-text);
            font-size: 20px;
        }
.btn-whatsapp-primary {
    background-color: transparent !important;
    color: #11c253 !important;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid #128c7e;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
	font-size: 12px !important;
}
.feature-icon img {
            width: 40px;
            height: 40px;
}
        .feature-text {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--dark-text);
            line-height: 1.4;
        }

        /* === Worldwide Box === */
        .worldwide-box {
            background-color: #f4f8fb;
            border-radius: 12px;
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            overflow: hidden;
			box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        }

        .globe-icon {
            width: 55px;
            height: 55px;
            background-color: #dbeae9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-subtext);
            font-size: 28px;
            flex-shrink: 0;
            z-index: 2;
        }

        .worldwide-content {
            z-index: 2;
        }

        .worldwide-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .worldwide-desc {
            font-size: 0.9rem;
            margin-bottom: 0;
            line-height: 1.4;
        }

        /* Decorative map background for the box */
        .worldwide-box::after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 250px;
            height: 120px;
            background-image: url('../../images/map.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: right center;
            z-index: 1;
        }

        /* === Quote Section === */
        .quote-section {
            border-top: 1px solid #e5e7eb;
            margin-top: 60px;
            padding-top: 30px;
            text-align: center;
        }

        .quote-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-text);
            display: inline-flex;
            align-items: center;
            gap: 15px;
        }

        .quote-text i {
            color: var(--dark-text);
            font-size: 1.2rem;
        }

        /* === Responsive Adjustments === */
        @media (max-width: 991px) {
            .doctor-name { font-size: 2.8rem; }
            .floating-card { left: 20px; right: 20px; bottom: 20px; }
            .doctor-image-wrapper { margin-bottom: 50px; }
            .feature-item { padding: 0 5px; }
            .worldwide-box::after { opacity: 0.05; } /* Faint on tablet to read text */
        }

        @media (max-width: 767px) {
            .features-grid {
                flex-direction: column;
                gap: 20px;
            }
            .feature-item:not(:last-child)::after {
                display: none;
            }
            .feature-icon { margin-bottom: 10px; }
            .worldwide-box {
                flex-direction: column;
                text-align: center;
            }
            .quote-text { font-size: 1.2rem; }
        }

     /* ─── Treatment SECTION WRAPPER ─────────────────────────────── */
    .treatments-section {
      background-color: var(--bg-light-blue);
      padding: 60px 20px 50px;
    }

    /* ─── HEADER ──────────────────────────────────────── */
    .treatments-section .section-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 10px;
    }
    .treatments-section .section-eyebrow::before,
    .treatments-section .section-eyebrow::after {
      content: '';
      display: block;
      width: 60px;
      height: 2px;
      background: var(--light-subtext);
    }
    .treatments-section .section-eyebrow span {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--light-subtext);
    }
    .treatments-section .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 800;
      color: var(--dark-text);
      text-align: center;
      line-height: 1.15;
      margin-bottom: 40px;
    }

    /* ─── TREATMENT CARDS ─────────────────────────────── */
    .treatments-section .treatments-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
      margin-bottom: 32px;
    }
    @media (max-width: 1199px) { .treatments-section .treatments-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 767px)  { .treatments-section .treatments-grid { grid-template-columns: repeat(2, 1fr); } .btn-review-outline { margin-top: 15px !important; } }
    @media (max-width: 480px)  { .treatments-section .treatments-grid { grid-template-columns: 1fr; } .treatments-section .section-eyebrow span { text-align: center; } }

    .treatments-section .treatment-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 22px 18px 20px;
      text-align: center;
      transition: transform .25s ease, box-shadow .25s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .treatments-section .treatment-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(61,173,168,.15);
    }

    /* circular image */
    .treatments-section .card-img-wrap {
      position: relative;
      width: 110px;
      height: 110px;
      margin-bottom: 14px;
    }
    .treatments-section .card-img-wrap img.photo {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
    }
    /* small teal icon badge */
    .treatments-section .card-badge {
      position: absolute;
      bottom: 1px;
      left: -1px;
      width: 37px;
      height: 37px;
      background: var(--white);
      border: 2px solid var(--light-subtext);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .treatments-section .card-badge img { width: 25px; height: 25px; }

    .treatments-section .card-title {
      font-size: 14px;
      font-weight: 700;
      color: #1b3d5b;
      line-height: 1.35;
      margin-bottom: 8px;
    }
    .treatments-section .card-desc {
      font-size: 12.5px;
      color: var(--gray-text);
      line-height: 1.6;
    }

    /* ─── DARK BANNER ─────────────────────────────────── */
    .treatments-section .features-banner {
      background: var(--dark-text);
      border-radius: 16px;
      padding: 28px 32px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-bottom: 36px;
    }
    @media (max-width: 991px)  { .treatments-section .features-banner { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
    @media (max-width: 480px)  { .treatments-section .features-banner { grid-template-columns: 1fr; gap: 24px; } }

    .treatments-section .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 0 20px;
      border-right: 1px solid rgba(255,255,255,.05);
    }
    .treatments-section .feature-item:last-child { border-right: none; }
    @media (max-width: 991px)  {
      .treatments-section .feature-item { border-right: none; }
      .treatments-section .feature-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.05); }
    }
    @media (max-width: 480px)  { .treatments-section .feature-item { border-right: none !important; } }

    .treatments-section .feature-icon-wrap {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .treatments-section .feature-icon-wrap img { width: 40px; height: 40px; }

    .feature-text-wrap {}
    .treatments-section .feature-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.35;
      margin-bottom: 6px;
    }
    .treatments-section .feature-desc {
      font-size: 12.5px;
      color: rgba(255,255,255,.75);
      line-height: 1.6;
    }

    /* ─── FOOTER TAGLINE ──────────────────────────────── */
    .treatments-section .tagline-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .treatments-section .tagline-line {
      flex: 1;
      max-width: 90px;
      height: 1px;
      background: var(--dark-text);
      position: relative;
    }
    .treatments-section .tagline-line::after {
      content: '◆';
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 10px;
      color: var(--dark-text);
    }
    .treatments-section .tagline-line.left::after { right: auto; left: -10px; content: '◆'; }

    .treatments-section .tagline-text {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--dark-text);
      
      text-align: center;
		margin-bottom: 0px;
    }
    .treatments-section .tagline-text .highlight { color: var(--light-subtext) !important; font-weight: 700; }

/* why choose us section */
/* Container styling to center everything */
.section-heading {
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Clean sans-serif font */
  margin: 40px 0;
}

/* Heading Text Styling */
.section-heading h2 {
  color: #1b9b96; /* Teal color matching the image */
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.5px; /* Slight space between letters */
  text-transform: uppercase;
  margin: 0 0 12px 0; /* Space between text and divider */
}

/* Flexbox container for the decorative divider */
.chooseus .heading-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px; /* Spacing between the lines and diamond */
}

/* The thin light gray lines on the outsides */
.chooseus .line-gray {
  height: 1px;
  width: 40px; /* Adjust width to make the outer lines longer/shorter */
  background-color: #d6d6d6;
}

/* The thicker teal line in the middle-left */
.chooseus .line-teal {
  height: 2px;
  width: 25px;
  background-color: #1b9b96;
}

/* The teal diamond shape in the middle-right */
.chooseus .dot {
  width: 4px;
  height: 4px;
  background-color: #1b9b96;
  border-radius: 50%; /* This turns the square into a circle */
}
		.chooseus .section-subtitle {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--light-subtext);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .chooseus .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .chooseus .section-desc {
            font-size: 1.05rem;
            color: var(--gray-text);
            margin-bottom: 40px;
        }

        /* === Decorative Dividers === */
        .chooseus .diamond-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 15px 0;
            gap: 15px;
        }

        .chooseus .diamond-divider::before,
        .chooseus .diamond-divider::after {
            content: '';
            height: 1px;
            width: 50px;
            background-color: #d1d5db;
        }

        .chooseus .diamond-icon {
            width: 8px;
            height: 8px;
            background-color: var(--dark-text);
            transform: rotate(45deg);
        }

        /* Bottom quote divider */
        .chooseus .quote-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 40px;
            gap: 20px;
        }

        .chooseus .quote-text {
            font-weight: 500;
            color: #1b3d5b;
            font-size: 0.9rem;
        }
        
        .chooseus .quote-text span {
            color: var(--light-subtext);
            font-weight: 600;
        }

        /* === Feature Cards (Top Row) === */
        .chooseus .feature-card {
            border: 1px solid rgba(227, 231, 234, 0.5);
            border-radius: 12px;
            padding: 30px 15px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            background: #ffffff;
        }

        .chooseus .feature-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.02);
            transform: translateY(-5px);
            border-color: var(--active-border);
        }

        .chooseus .card-icon-wrapper {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--icon-light-bg);
            border-radius: 50%;
            color: var(--primary-teal);
            font-size: 22px;
        }
.chooseus .card-icon-wrapper img { width: 35px; height: 35px; }
        .chooseus .feature-card h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--bold-text);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .chooseus .feature-card p {
            font-size: 0.85rem;
            color: var(--text-gray-light);
            margin-bottom: 0;
            line-height: 1.4;
        }

        /* === International Banner (Bottom Box) === */
        .international-banner {
            background-color: var(--light-bg);
            border-radius: 12px;
            padding: 35px;
            margin-top: 30px;
            border: 1px solid var(--border-color);
        }

        .banner-left-icon {
            font-size: 50px;
            color: var(--primary-teal);
            position: relative;
        }

        .banner-left-icon img {
            width: 120px; height: auto;
        }

        .banner-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--bold-text);
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
        }
.chooseus .feature-divider {
            width: 35px;
            height: 2px;
            background-color: #2cbba9;
            margin: 0 auto 15px;
        }
.chooseus .banner-feature-divider {
            width: 35px;
            height: 2px;
            background-color: #2cbba9;
           
        }
        /*.banner-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 20%;
            height: 2px;
            background-color: var(--light-subtext);
            
        }*/

        .banner-desc {
            font-size: 0.9rem;
            color: var(--gray-text);
            margin-bottom: 0;
			margin-top: 10px;
        }

        /* Banner Features Grid */
        .banner-feature {
            text-align: center;
            padding: 0 15px;
        }

        .banner-feature:not(:last-child), .banner-left-content {
            border-right: 1px solid rgba(227, 231, 234, 0.5);
        }

        .banner-feature i {
            font-size: 24px;
            color: var(--dark-text);
            margin-bottom: 10px;
            opacity: 0.8;
        }

        .banner-feature p {
            font-size: 0.8rem;
            color: var(--gray-text);
            font-weight: 500;
            margin-bottom: 0;
			margin-top: 10px;
            line-height: 1.3;
        }

        /* === Responsive Tweaks === */
        @media (max-width: 991px) {
            .section-title { font-size: 2.2rem; }
            .international-banner { padding: 25px; }
            .banner-left { margin-bottom: 25px; text-align: center; }
            .banner-left-content { align-items: center; flex-direction: column; text-align: center; }
            .banner-feature:nth-child(2) { border-right: none; }
            .banner-feature { margin-bottom: 20px; }
            .quote-divider::before, .quote-divider::after { width: 50px; }
        }

        @media (max-width: 767px) {
            .feature-card { padding: 20px 10px; }
            .banner-feature:not(:last-child) { border-right: none; }
            .banner-feature { margin-bottom: 30px; }
        }

.chooseus .quote-divider .tagline-text {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--dark-text);
      
      text-align: center;
		margin-bottom: 0px;
    }
    .chooseus .quote-divider .tagline-text .highlight { color: var(--light-subtext) !important; font-weight: 600; }
.chooseus .tagline-line::after {
      content: '◆';
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 10px;
      color: var(--dark-text);
    }
    .chooseus .tagline-line.left::after { right: auto; left: -10px; content: '◆'; }
.chooseus .tagline-line {
      flex: 1;
      max-width: 140px;
      height: 1px;
      background-color: #e5e7eb;
      position: relative;
    }

/* ══════════════════════════════════════════════════════
    International Patients SECTION WRAPPER
    ══════════════════════════════════════════════════════ */
    .intl-section {
      position: relative;
      overflow: hidden;
      background-image: url("../../images/international-patients-bg-optimized.jpg");
      background-image: image-set(
        url("../../images/international-patients-bg-optimized.webp") type("image/webp"),
        url("../../images/international-patients-bg-optimized.jpg") type("image/jpeg")
      );
		background-repeat: no-repeat;
  background-position: right center;  /* Aligns image to the right */
  background-size: auto 100%;         /* Fits full height, auto width */
  background-color: #f8f9fb;
      padding: 0;
    }

    /* ── Hero two-column layout ────────────────────────── */
    .intl-section .hero-row {
      display: grid;
      grid-template-columns: 1fr;
      min-height: 420px;
      position: relative;
    }

    @media (max-width: 991px) {
      .intl-section .hero-row { grid-template-columns: 1fr; }
    }

    /* LEFT: content */
    .intl-section .hero-content {
      padding: 55px 20px 45px 20px;
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
    }
    @media (max-width: 767px) { 
      .intl-section .hero-content { padding: 36px 20px 28px; } 
      .intl-section {
        background-image: 
          linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.9) 0%,    /* very light white at top */
            rgba(255, 255, 255, 0.3) 100%   /* very light white at bottom */
          ),
          url('../../images/international-patients-bg-optimized.jpg');
        background-image:
          linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.3) 100%   /* very light white at bottom */
          ),
          image-set(
            url('../../images/international-patients-bg-optimized.webp') type('image/webp'),
            url('../../images/international-patients-bg-optimized.jpg') type('image/jpeg')
          );
        background-repeat: no-repeat;
        background-position: right center;
        background-size: cover;
		
      }
      .intl-section .trust-banner { padding: 24px 15px !important; }
      .tagline-line right, .tagline-line left, .intl-section .tagline-line.left::after, .intl-section .tagline-line.right::before { display: none !important; }
    }

    /* center header */
    .intl-section .intl-header {
      margin-bottom: 35px;
    }
    .intl-section .eyebrow-label {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--light-subtext);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: block;
    }
    .intl-section .hero-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 3.2vw, 42px);
      font-weight: 700;
      line-height: 1.2;
      color: var(--dark-text);
      margin-bottom: 15px;
      text-transform: uppercase;
     /* text-align: center;*/
    }
    .intl-section .hero-sub {
      font-size: 14.5px;
      color: var(--gray-text);
      line-height: 1.6;
      max-width: 750px;
     /* margin: 0 auto 20px;
      text-align: center;*/
    }
    .intl-section .hero-accent-line {
      width: 50px;
      height: 3px;
      background: var(--light-subtext);
      border-radius: 4px;
      /*margin: 0 auto 30px;*/
    }

    /* ── Feature mini-cards row ──────────────────────────── */
    .intl-section .feature-cards-row {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }
    @media (max-width: 1199px) { .intl-section .feature-cards-row { grid-template-columns: repeat(3, 1fr); gap: 15px; } }
    @media (max-width: 767px)  { .intl-section .feature-cards-row { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
    @media (max-width: 480px)  { .intl-section .feature-cards-row { grid-template-columns: 1fr; } }

    .intl-section .feat-card {
      background: var(--white);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px 16px 20px;
      text-align: center;
      transition: transform .22s ease, box-shadow .22s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .intl-section .feat-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 28px rgba(61,173,168,.14);
    }

    .intl-section .feat-card-icon {
      width: 40px;
      height: 40px;
      margin: 0 auto 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .intl-section .feat-card-icon svg { width: 36px; height: 36px; stroke: var(--teal); fill: none; stroke-width: 1.5; }

    .intl-section .feat-card-title {
      font-size: 13.5px;
      font-weight: 800;
      color: var(--bold-text);
      line-height: 1.35;
      margin-bottom: 8px;
    }
    .intl-section .feat-card-desc {
      font-size: 10.5px;
      color: var(--gray-text);
      line-height: 1.7;
      margin-bottom: 0;
    }

    /* RIGHT: background image panel */
    .intl-section .hero-image-panel {
      position: relative;
      overflow: hidden;
    }
    .intl-section .hero-image-panel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    /* fade the left edge of the photo into white */
    .intl-section .hero-image-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(255,255,255,.95) 0%, rgba(255,255,255,.3) 30%, transparent 60%);
      z-index: 1;
      pointer-events: none;
    }

    /* plane + dashed path SVG overlay */
    .intl-section .plane-overlay {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 2;
      pointer-events: none;
    }

    @media (max-width: 991px) {
      .intl-section .hero-image-panel {
        height: 320px;
      }
    }
    @media (max-width: 480px) {
      .intl-section .hero-image-panel { height: 240px; }
    }

    /* ── Bottom trust banner ────────────────────────────── */
    .intl-section .trust-banner {
      background: var(--bg-light-blue);
      border: 1px solid var(--border-color);
      border-radius: 15px;
      padding: 24px 32px;
      display: grid;
      grid-template-columns: repeat(4, 1fr) auto;
      gap: 0;
      align-items: center;
    }
    @media (max-width: 991px)  {
      .intl-section .trust-banner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    }
    @media (max-width: 480px)  {
      .intl-section .trust-banner { grid-template-columns: 1fr; gap: 20px; }
    }

    .intl-section .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 20px;
      border-right: 1px solid var(--border-color);
    }
    .intl-section .trust-item:last-child { border-right: none; padding-right: 0; }
    @media (max-width: 991px) {
      .intl-section .trust-item { border-right: none; padding: 0; }
    }

    .intl-section .trust-icon {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
    }
    .intl-section .trust-icon img { width: 50px; height: 50px; }

    .intl-section .trust-text {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.45;
		margin-bottom: 0px;
    }

    /* Whatsapp CTA button */
    .intl-section .wa-btn {
      background: var(--primary-teal);
      color: var(--white);
      border-radius: 12px;
      padding: 16px 22px;
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      transition: background .2s ease, transform .2s ease;
      white-space: nowrap;
      min-width: 220px;
    }
    .intl-section .wa-btn:hover { background: var(--dark-text); transform: scale(1.02); color: var(--white); }
    .intl-section .wa-btn-icon {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .intl-section .wa-btn-icon svg { width: 20px; height: 20px; fill: var(--white); stroke: none; }
    .intl-section .wa-btn-text {}
    .intl-section .wa-btn-title { font-size: 13.5px; font-weight: 700; line-height: 1.3; text-transform: uppercase; }
    .intl-section .wa-btn-sub   { font-size: 11px; opacity: .7; margin-top: 2px; }

    /* ── Bottom tagline ─────────────────────────────────── */
    .intl-section .tagline-bar {
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }
    .intl-section .tagline-line {
      flex: 1;
      max-width: 120px;
      height: 1px;
      background: #bbb;
      position: relative;
    }
    .intl-section .tagline-line.right::before {
      content: '◆';
      position: absolute;
      left: -10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 9px;
      color: #0f4c5c;
    }
    .intl-section .tagline-line.left::after {
      content: '◆';
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 9px;
      color: #0f4c5c;
    }
    .intl-section .tagline-text {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--dark-text);
      text-align: center;
		margin-bottom: 0px;
    }

    /* outer card border */
    .intl-section .section-card {
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      margin: 32px auto;
      max-width: 1320px;
    }

 /* ── SMILE TRANSFORMATIONS ── */
    .smile-transforms { background: white; padding: 70px 0px 0px; }
	.smile-transforms .section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-subtext);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
		display: block;
		margin: 0 auto 15px;
}
.smile-transforms .section-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%; /* 1. Move the left edge to the exact middle of the parent */
    transform: translateX(-50%); /* 2. Shift it back by half its own width */
    width: 40px;
    height: 2px;
    background-color: var(--light-subtext);
}
.smile-transforms .section-title {
			font-size: 2.8rem;
			font-weight: 700;
			margin-bottom: 15px;
			letter-spacing: -0.5px;
	font-family: 'Playfair Display', serif;
    color: var(--dark-text);
		}
.smile-transforms .section-descri {
			font-size: 14.5px;
    color: var(--gray-text);
    line-height: 1.6;
   
	text-align: center;
		}
    .smile-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .smile-pair { border-radius: 14px; overflow: hidden;  }
    .smile-images {
      display: grid; grid-template-columns: 1fr 1fr;
    }
    .smile-img {
      /*height: 130px;
      background: linear-gradient(135deg, #fde8e8, #f5c6c6);*/
      display: flex; align-items: center; justify-content: center; font-size: 28px;
    }
    .smile-img.after { /*background: linear-gradient(135deg, #e6f7f7, #b2e8e8);*/ }
.smile-img img { width: 100%; height: auto; }
    .smile-labels {
      display: grid; grid-template-columns: 1fr 1fr;
    }
    .smile-labels span {
      text-align: center; padding: 6px; font-size: 11px;
      color: var(--muted); font-weight: 600;
      
    }
 /* ═══════════════════════════════════════════
     review  SECTION
    ═══════════════════════════════════════════ */
    .reviews-section {
      padding: 70px 0 30px;
      background: var(--white);
      position: relative;
      overflow: hidden;
    }

    /* large decorative quote marks */
    .deco-quote {
      position: absolute;
      font-family: Georgia, serif;
      line-height: 1;
      color: #D9EEEC;
      pointer-events: none;
      user-select: none;
      top: 30px;
	  font-weight: bold;
    }
    .deco-quote.left  { left: 20px; font-size: 300px; }
    .deco-quote.right { right: 20px; font-size: 200px; top: 200px; }
    @media (max-width: 768px) { .deco-quote { font-size: 120px; } }

    /* ── Header ─────────────────────────────── */
    .reviews-header {
      text-align: center;
      margin-bottom: 36px;
      position: relative;
      z-index: 2;
    }

    .reviews-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .reviews-eyebrow::before,
    .reviews-eyebrow::after {
      content: '';
      display: block;
      width: 50px;
      height: 2px;
      background: var(--light-subtext);
    }
    .reviews-eyebrow span {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--light-subtext);
    }

    .reviews-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 5vw, 60px);
      font-weight: 800;
      color: var(--dark-text);
      line-height: 1.1;
      margin-bottom: 24px;
    }

    /* Google rating pill */
    .google-rating {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      border: 1px solid #E0E0E0;
      border-radius: 50px;
      padding: 10px 24px;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
    }
    .btn-review-outline {
      border: 1px solid var(--primary-teal);
      color: var(--primary-teal);
      background: transparent;
      border-radius: 50px;
      padding: 10px 24px;
      font-size: 13.5px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: all 0.2s ease;
	  margin-top: -20px;
    }
    .btn-review-outline:hover {
      background: var(--primary-teal);
      color: var(--white);
      transform: translateY(-1px);
    }
    .google-rating-score {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
    }
    .stars {
      display: flex;
      gap: 2px;
    }
    .stars svg { width: 18px; height: 18px; }
    .star-full  { fill: var(--star); }
    .star-half  { fill: url(#halfGrad); }
    .star-empty { fill: #E0E0E0; }
    .google-rating-divider {
      width: 1px;
      height: 22px;
      background: #DDD;
    }
    .google-rating-text {
      font-size: 13.5px;
      color: var(--muted);
		margin-bottom: 0px;
    }
    .google-rating-link {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease;
    }
    .google-rating-link:hover,
    .google-rating-link:focus {
      color: var(--teal);
      text-decoration: underline;
    }
    .google-rating-text strong { color: var(--teal); font-weight: 600; }

    /* Google "G" logo */
    .g-logo {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    /* ═══════════════════════════════════════════
       SWIPER WRAPPER
    ═══════════════════════════════════════════ */
    .swiper-outer {
      position: relative;
      padding: 30px 0 10px;
    }

    /* The swiper itself must clip — no overflow visible */
    .swiper {
      overflow: hidden !important;
      padding: 20px 4px 40px !important;
    }

    /* constrain visible area */
    .swiper-clip {
      overflow: hidden;
      padding: 0 60px;
    }
    @media (max-width: 1199px) { .swiper-clip { padding: 0 40px; } }
    @media (max-width: 767px)  { .swiper-clip { padding: 0 25px; } .deco-quote.right, .deco-quote.left { display: none !important; } }

    /* ── Review Card ─────────────────────────── */
    .review-card {
      background: var(--white);
      border: 1.5px solid var(--border-card);
      border-radius: 16px;
      padding: 28px 24px 24px;
      height: auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: transform .4s cubic-bezier(.25,.8,.25,1),
                  box-shadow .4s ease,
                  border-color .4s ease;
      transform: scale(0.93);
      box-shadow: none;
    }

    /* Active (center) card */
    .swiper-slide-active .review-card {
      transform: scale(1);
      border-color: var(--active-border);
      box-shadow: 0 8px 32px rgba(61,173,168,.18);
    }

    /* ── Card top row: quote icon + stars ─────── */
    .card-top {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .quote-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--icon-light-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .quote-icon svg {
      width: 18px;
      height: 18px;
      fill: var(--primary-teal);
    }

    .card-stars {
      display: flex;
      gap: 3px;
    }
    .card-stars svg { width: 20px; height: 20px; fill: var(--star); }

    /* ── Review text ─────────────────────────── */
    .review-text {
      font-size: 14px;
      color: var(--dark);
      line-height: 1.75;
      flex: 1;
    }

    /* ── Reviewer info ───────────────────────── */
    .reviewer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 8px;
    }
    .reviewer-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .reviewer-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      background: var(--teal-light);
      border: 2px solid var(--teal-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }
    .reviewer-avatar img {
      width: 48px;
      height: auto;
      
    }
    .reviewer-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.2;
		margin-bottom: 5px;
    }
    .reviewer-location {
      font-size: 12px;
      color: var(--muted);
      margin-top: 2px;
	  margin-bottom: 5px;
    }

    /* flag emoji circle */
    .flag-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      line-height: 1;
      flex-shrink: 0;
    }
.flag-circle img { width: 48px; height: 48px; border-radius: 50%; }

    /* ── Nav Arrows ──────────────────────────── */
    .swiper-button-prev,
    .swiper-button-next {
      width: 44px !important;
      height: 44px !important;
      border-radius: 50%;
      background: var(--white);
      border: 1.5px solid #E0E0E0;
      box-shadow: 0 3px 12px rgba(0,0,0,.1);
      color: var(--dark) !important;
      transition: border-color .2s, background .2s;
      top: 50% !important;
    }
    .swiper-button-prev { left: 10px !important; }
    .swiper-button-next { right: 10px !important; }
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
      border-color: var(--teal);
      background: var(--teal-light);
    }
    .swiper-button-prev::after,
    .swiper-button-next::after {
      font-size: 13px !important;
      font-weight: 700;
    }

    /* ── Pagination dots ─────────────────────── */
    .swiper-pagination {
      bottom: -1px !important;
    }
    .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background: #C0CDD6;
      opacity: 1;
      transition: background .2s, transform .2s;
    }
    .swiper-pagination-bullet-active {
      background: var(--dark);
      transform: scale(1.15);
    }

/* === CTA Container === */
        .cta-banner {
            background-color: var(--bg-light-blue);
            border-radius: 12px;
            padding: 40px 45px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0,0,0,0.02);
			margin: 30px 0px
        }

        /* Decorative bottom-left curve */
        .cta-banner::before {
            content: '';
            position: absolute;
            bottom: -70px;
            left: -70px;
            width: 150px;
            height: 150px;
            background-color: #daf1ef;
            border-radius: 50%;
            z-index: 0;
            opacity: 0.8;
        }

        /* Ensure content sits above the background shape */
        .cta-content {
            position: relative;
            z-index: 1;
        }

        /* === Custom Outline Icon === */
        .icon-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            background: radial-gradient(circle, rgba(44, 187, 169, 0.12) 0%, transparent 70%);
            border-radius: 50%;
           /* width: 140px;
            height: 140px;*/
            margin: 0 auto;
            position: relative;
        }

        .custom-tooth-icon img {
            width: 110px;
            height: 110px;
            position: relative;
            z-index: 2;
        }

        

        /* Vertical Divider (Desktop only) */
        @media (min-width: 768px) {
            .divider-col {
                border-right: 1.5px solid var(--border-color);
                padding-right: 20px;
            }
            .content-col {
                padding-left: 40px;
            }
        }

        /* === Typography === */
        .cta-heading {
            font-family: 'Playfair Display', serif;
            color: var(--dark-text);
            font-size: 2.3rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 10px;
        }

        .cta-subheading {
            color: var(--gray-text);
            font-size: 1rem;
            margin-bottom: 25px;
            font-weight: 400;
        }

        /* === Buttons === */
        .btn-cta-primary {
            background-color: var(--primary-teal);
            color: #ffffff;
            font-weight: 500;
            /*padding: 12px 24px;*/
			padding: 14px 28px;
            border-radius: 8px;
            border: 2px solid var(--primary-dark);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
			font-size: 14px;
        }

        .btn-cta-primary:hover {
            background-color: #113f48;
            border-color: #113f48;
            color: #ffffff;
        }

        .btn-cta-outline {
            background-color: transparent;
            color: var(--primary-teal);
            font-weight: 500;
            /*padding: 12px 24px;*/
			padding: 14px 28px;
            border-radius: 8px;
            border: 1px solid var(--primary-teal);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
			font-size: 14px;
        }

        .btn-cta-outline:hover {
            border-color: var(--primary-dark);
            background-color: #ffffff;
        }
        
        .btn-cta-outline i, .btn-cta-primary i {
            font-size: 1.1rem;
        }

        /* === Responsive Adjustments === */
        @media (max-width: 767px) {
            .cta-banner {
                padding: 30px 20px;
                text-align: center;
            }
            .icon-wrapper {
                margin-bottom: 25px;
            }
            .cta-heading {
                font-size: 1.8rem;
            }
            .btn-cta-primary, .btn-cta-outline {
                width: 100%;
                justify-content: center;
                margin-bottom: 10px;
            }
            .cta-buttons {
                display: flex;
                flex-direction: column;
                gap: 5px;
            }
        }


/* ═══════════════════════════════════════════
       FOOTER WRAPPER
    ═══════════════════════════════════════════ */
    footer {
      background: var(--primary-teal);
      color: var(--white);
    }

    /* ── Top tagline bar ─────────────────────── */
    .footer-tagline-bar {
      padding: 25px 0;
      border-bottom: 1px solid #366a78;
    }
    .footer-tagline {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }
    .ft-line {
      flex: 1;
      max-width: 140px;
      height: 1px;
      background: var(--white);
      position: relative;
    }
    .ft-line.left::after {
      content: '◆';
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 9px;
      color: var(--light-subtext);
    }
    .ft-line.right::before {
      content: '◆';
      position: absolute;
      left: -10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 9px;
      color: var(--light-subtext);
    }
    .footer-tagline-text {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--white);
      text-align: center;
      white-space: nowrap;
		margin-bottom: 0px;
    }
    @media (max-width: 600px) {
      .footer-tagline-text { white-space: normal; font-size: 13px; }
      .ft-line { max-width: 40px; }
    }

    /* ── Main footer body ────────────────────── */
    .footer-body {
      padding: 52px 0 36px;
      border-bottom: 1px solid #366a78;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1.4fr 1.3fr;
      gap: 40px 32px;
    }
    @media (max-width: 1199px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; } }

    /* col headings */
    .footer-col-title {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 24px;
    }

    /* ── COL 1: Brand ────────────────────────── */
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }
    .brand-logo-icon {
      width: 58px;
      height: 58px;
      flex-shrink: 0;
    }
    .brand-logo-icon img {
      width: 58px;
      height: 58px;
      
    }
    .brand-name {
      line-height: 1.15;
    }
    .brand-name-main {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 1px;
      color: var(--white);
      display: block;
    }
    .brand-name-sub {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--white-60);
      display: block;
    }
.brand-doctor { font-size: 9px; }
    .brand-desc {
      font-size: 13.5px;
      color: var(--white-60);
      line-height: 1.7;
      margin-bottom: 18px;
      max-width: 260px;
    }

    .brand-divider {
      width: 36px;
      height: 2.5px;
      background: var(--teal-accent);
      border-radius: 2px;
      margin-bottom: 24px;
    }

    .follow-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 14px;
    }

    .social-icons {
      display: flex;
      gap: 10px;
    }
    .social-icon {
      width: 40px;
      height: 40px;
      border: 1.5px solid var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: border-color .2s, background .2s;
    }
    .social-icon:hover {
      border-color: var(--teal-accent);
      background: rgba(75,189,183,.15);
    }
    .social-icon svg {
      width: 16px;
      height: 16px;
      fill: var(--white);
      stroke: none;
    }


    /* ── COL 2: Quick Links ──────────────────── */
    .quick-links-list {
      list-style: none;
      padding: 0;
    }
    .quick-links-list li {
      border-bottom: 1px solid #366a78;
    }
    .quick-links-list li:last-child { border-bottom: none; }
    .quick-links-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 0;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--white-60);
      text-decoration: none;
      transition: color .2s;
    }
    .quick-links-list a:hover { color: var(--white); }
    .quick-links-list a svg {
      width: 14px;
      height: 14px;
      stroke: var(--teal-accent);
      fill: none;
      stroke-width: 2;
      flex-shrink: 0;
    }

    /* ── COL 3: Contact Us ───────────────────── */
    .contact-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 13px 0;
      border-bottom: 1px solid #366a78;
    }
    .contact-item:last-child { border-bottom: none; }

    .contact-icon-wrap {
      width: 36px;
      height: 36px;
      border: 1.5px solid var(--light-subtext);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon-wrap svg {
      width: 16px;
      height: 16px;
      stroke: var(--white);
      fill: none;
      stroke-width: 1.7;
    }

    .contact-text {
      font-size: 13.5px;
      color: var(--white);
      line-height: 2;
    }
    .contact-text a {
      color: var(--white);
      text-decoration: none;
    }
    .contact-text a:hover { color: var(--white); }

    /* ── COL 4: Locate Us ────────────────────── */
    .map-embed {
      width: 100%;
      height: 160px;
      border-radius: 10px;
      overflow: hidden;
      border: 2px solid var(--white-15);
      margin-bottom: 14px;
    }
    .map-embed iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .map-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--white);
      border-radius: 10px;
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
      text-decoration: none;
      transition: border-color .2s, background .2s;
    }
    .map-btn:hover {
      border-color: var(--teal-accent);
      background: rgba(75,189,183,.12);
      color: var(--white);
    }
    .map-btn svg {
      width: 16px;
      height: 16px;
      stroke: var(--white);
      fill: none;
      stroke-width: 1.8;
    }

    /* ── Bottom bar ──────────────────────────── */
    .footer-bottom {
      padding: 18px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-copy {
      font-size: 13px;
      color: var(--white-60);
	  margin-bottom: 0px;
    }

    .footer-legal {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .footer-legal a {
      font-size: 13px;
      color: var(--white-60);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-legal a:hover { color: var(--white); }
    .footer-legal span {
      color: var(--white-30);
      font-size: 12px;
    }

/* ═══════════════════════════════════════════
       GLOBAL SMOOTH SCROLL
    ═══════════════════════════════════════════ */
html {
    scroll-behavior: smooth;
}

/* ═══════════════════════════════════════════
       FLOATING ACTIONS CONTAINER
    ═══════════════════════════════════════════ */
.floating-actions-container {
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-btn i {
    font-size: 18px;
}

.wa-chat-btn {
    background-color: #25D366;
}

.wa-chat-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.book-appointment-btn {
    background-color: var(--primary-teal);
}

.book-appointment-btn:hover {
    background-color: var(--primary-teal-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 76, 92, 0.35);
}

@media (max-width: 767px) {
    .floating-actions-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .floating-btn {
        padding: 14px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
        align-items: center;
    }
    .floating-btn-text {
        display: none;
    }
    .floating-btn i {
        font-size: 20px;
    }
}

/* ═══════════════════════════════════════════
       APPOINTMENT SECTION & FORM
    ═══════════════════════════════════════════ */
.appointment-section {
    background-color: var(--bg-light-blue);
    position: relative;
    overflow: hidden;
}

.appointment-info-list {
    margin-top: 30px;
}

.appointment-info-list .info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--icon-light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 18px;
    flex-shrink: 0;
}

.appointment-info-list .info-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.appointment-info-list .info-text {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 0;
    line-height: 1.5;
}

.appointment-info-list .info-text a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.appointment-info-list .info-text a:hover {
    color: var(--primary-teal-hover);
}

.appointment-card-wrapper {
    position: relative;
}

.appointment-card-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--light-subtext) 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 0;
    opacity: 0.3;
}

.appointment-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(15, 76, 92, 0.08);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(15, 76, 92, 0.05);
}

.form-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
}

.form-card-subtitle {
    font-size: 14px;
    color: var(--gray-text);
}

/* Floating labels adjustments */
.appointment-form-card .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px 12px;
    color: var(--dark-text);
    font-size: 15px;
    font-weight: 500;
    background-color: #fafbfc;
    box-shadow: none;
    transition: all 0.2s ease;
}

.appointment-form-card .form-control:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(15, 76, 92, 0.1);
    background-color: var(--white);
}

.appointment-form-card .form-select {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: var(--dark-text);
    font-size: 15px;
    font-weight: 500;
    background-color: #fafbfc;
    box-shadow: none;
    transition: all 0.2s ease;
}

.appointment-form-card .form-select:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(15, 76, 92, 0.1);
    background-color: var(--white);
}

.appointment-form-card .was-validated .form-control:valid,
.appointment-form-card .form-control.is-valid {
    border-color: #e2e8f0;
    padding-right: 12px;
    background-image: none;
    box-shadow: none;
}

.appointment-form-card .was-validated .form-select:valid,
.appointment-form-card .form-select.is-valid {
    border-color: #e2e8f0;
    background-image: var(--bs-form-select-bg-img);
    box-shadow: none;
}

.appointment-form-card .was-validated .form-control:valid:focus,
.appointment-form-card .form-control.is-valid:focus,
.appointment-form-card .was-validated .form-select:valid:focus,
.appointment-form-card .form-select.is-valid:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(15, 76, 92, 0.1);
}

.phone-field-label {
    color: var(--gray-text);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.phone-input-group {
    display: grid;
    grid-template-columns: minmax(150px, 0.85fr) minmax(0, 1fr);
    gap: 10px;
}

.phone-code-select,
.phone-input-group .form-control {
    min-height: 58px;
}

.appointment-form-card .form-floating > label {
    color: var(--gray-text);
    font-size: 14px;
}

.appointment-form-card .form-floating > .form-control:focus ~ label,
.appointment-form-card .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-teal);
}

.btn-submit-apt {
    background-color: var(--primary-teal);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.btn-submit-apt:hover {
    background-color: var(--primary-teal-hover);
    box-shadow: 0 6px 20px rgba(15, 76, 92, 0.25);
    transform: translateY(-2px);
}

.btn-submit-apt:active {
    transform: translateY(0);
}

.appointment-form-card .alert {
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 500;
    padding: 14px;
    margin-bottom: 0;
}

.admin-page {
    background: var(--bg-light-blue);
    min-height: 100vh;
}

.admin-auth-wrapper,
.admin-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.admin-auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.admin-auth-card,
.admin-card {
    background: var(--white);
    border: 1px solid rgba(15, 76, 92, 0.08);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(15, 76, 92, 0.08);
}

.admin-auth-card {
    width: min(460px, 100%);
    padding: 34px;
}

.admin-auth-card h1,
.admin-header h1 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-text);
    font-weight: 700;
}

.admin-auth-card p {
    color: var(--gray-text);
}

.admin-shell {
    padding: 42px 0;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.admin-card {
    padding: 24px;
}

.admin-card-title {
    color: var(--dark-text);
    font-size: 20px;
    font-weight: 700;
}

.admin-count {
    color: var(--gray-text);
    font-size: 14px;
    font-weight: 600;
}

.admin-table {
    min-width: 980px;
}

.admin-table thead th {
    color: var(--dark-text);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.admin-table td {
    color: var(--gray-text);
    font-size: 14px;
    vertical-align: top;
}

.admin-table a {
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: none;
}

.admin-message {
    min-width: 240px;
    max-width: 360px;
}

@media (max-width: 991px) {
    .appointment-section .pe-lg-5 {
        padding-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .coming-soon-card {
        padding: 34px 20px;
        border-radius: 22px;
    }

    .coming-soon-text {
        font-size: 16px;
    }

    .coming-soon-timer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .appointment-form-card {
        padding: 30px 20px;
    }

    .phone-input-group {
        grid-template-columns: 1fr;
    }

    .admin-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-auth-card,
    .admin-card {
        padding: 22px;
    }
}
/* ── Breadcrumb ──────────────────────────────────── */
        .pp-breadcrumb {
            background: #f4f3f2;
            border-bottom: 1px solid rgba(42,124,124,.1);
            padding: 12px 0;
        }
        .pp-breadcrumb nav { font-size: .8rem; color: var(--pp-muted); }
        .pp-breadcrumb a { color: #2cbba9; text-decoration: none; }
        .pp-breadcrumb a:hover { text-decoration: underline; }
        .pp-breadcrumb .sep { margin: 0 8px; opacity: .5; }
        .svg-defs { position: absolute; }
        .trust-item--last { border-right: none; }
		.pp-hero {
            background: var(--bg-light-blue);
            padding: 60px 0 40px;
            position: relative;
            overflow: hidden;
        }
        
        .pp-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201,168,76,.12);
            border: 1px solid rgba(201,168,76,.35);
            border-radius: 40px;
            padding: 5px 16px;
            font-size: .72rem;
            font-weight: 500;
            color: #0f4c5c;
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-bottom: 22px;
        }
        .pp-hero h1 {
            font-family: var(--serif);
            font-size: clamp(2.2rem, 5vw, 3.6rem);
            font-weight: 600;
            color: #2cbba9;
            line-height: 1.12;
            margin-bottom: 18px;
        }
        .pp-hero h1 em {
            font-style: italic;
            color: #0f4c5c;
        }
        .pp-hero p.subtitle {
            font-size: 1rem;
            color: rgba(255,255,255,.62);
            max-width: 520px;
            line-height: 1.7;
        }
        .pp-hero-divider {
            width: 56px;
            height: 3px;
            background: linear-gradient(90deg, #0f4c5c, transparent);
            border-radius: 2px;
            margin: 28px 0 22px;
        }
        .pp-hero-updated {
            font-size: .78rem;
            color: #0f4c5c;
            letter-spacing: .05em;
        }
        .pp-hero-updated span { color: #0f4c5c; }

        /* ── Floating Shield Icon ────────────────────────── */
        .pp-hero-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, rgba(42,124,124,.25), rgba(42,124,124,.08));
            border: 1px solid rgba(42,124,124,.4);
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--pp-teal-lt);
            backdrop-filter: blur(8px);
            float: right;
            margin-top: -10px;
        }
		.hero-section.ppolicy {
			padding: 24px 0 44px;
		}
		.ppolicy p {
			font-size: 0.8rem;
			color: var(--gray-text);
			font-weight: 500;
			margin: 0;
			line-height: 1.6;
		}

		@media (max-width: 576px) {
			.hero-section.ppolicy {
				padding: 12px 0 32px;
			}
		}
/* Separator */
.separator { display: flex; align-items: center; gap: 16px; margin: 10px 0 24px; }
.sep-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, #ccc, transparent); }
.sep-icon { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ddd; display: flex; align-items: center; justify-content: center; }

/* CTA */
.cta-section { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 10px 32px; flex-wrap: wrap; }
.cta-left { display: flex; align-items: center; gap: 14px; flex: 1; }
.cta-arrows { display: flex; gap: 2px; }
.blink-arrow { font-size: 30px; color:  var(--light-subtext); animation: blink-pulse 1.2s ease-in-out infinite; }
.blink-arrow:nth-child(2) { animation-delay: 0.2s; }
.blink-arrow:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink-pulse { 0%,100%{opacity:0.2;transform:translateX(0)} 50%{opacity:1;transform:translateX(4px)} }
.cta-headline { font-size: 26px; font-weight: 600; margin: 0; }
.cta-headline span { color:  var(--light-subtext); }
.cta-btn { text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: var(--primary-teal); color: #fff; font-size: 14px; font-weight: 600; border-radius: 10px; text-decoration: none; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
.cta-btn:hover { background: #0F6E56; transform: translateY(-2px); }

/* Smile card hover effect (add to .smile-pair) */
.smile-pair { transition: transform 0.25s, box-shadow 0.25s; border-radius: 12px; }
.smile-pair:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); }
.thank-you-card {
    max-width: 800px;
    margin: 0 auto;
    background: #f0f9f8;
    border: 1px solid #e9ecef;
}

.next-steps {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0f4c5c;
}

.next-steps li {
    margin-bottom: 10px;
}

/* Ensure mobile responsiveness */
@media (max-width: 768px) {
    .thank-you-card {
        padding: 20px !important;
    }
}/* Style for the FontAwesome Checkmark */
.success-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #d1e7dd; /* Light green background */
    color: #0f5132;           /* Dark green icon color */
    border-radius: 50%;
    font-size: 2.5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

/* Optional: Subtle animation on load */
.success-icon-wrapper:hover {
    transform: scale(1.1);
}

/* Ensure the check icon inside the list also uses the new styling */
.next-steps i.fa-solid.fa-check {
    color: #007bff; /* Primary brand color for list items */
    margin-right: 10px;
    font-size: 0.9rem;
}
.lead { font-size: 0.9rem; }

.see-more-btn {
  background: none;
  border: none;
  padding: 0;
  margin-left: 4px;
  cursor: pointer;
  font-size: 0.85em;
  font-weight: 600;
  color: var(--your-accent-color, #4285F4); /* match your brand color */
  text-decoration: underline;
  text-underline-offset: 2px;
  vertical-align: baseline;
  line-height: inherit;
}

.see-more-btn:hover {
  opacity: 0.75;
}
.modal-body { padding: 30px !important; }

/* Force hamburger menu on screens up to 1024px */
@media (max-width: 1024px) {
  .navbar-expand-lg .navbar-collapse {
    display: none !important;
  }
  .navbar-expand-lg .navbar-toggler {
    display: block !important;
  }
  
  /* Optional: Fix for expanding the menu when toggled */
  .navbar-expand-lg .navbar-collapse.show {
    display: block !important;
  }
}