@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-orange: #f38f1e;
    --primary-orange-hover: #e07f12;
    --secondary-pink: #ec5d92;
    --accent-red: #e30613;
    --navy-deep: #0b1329;
    --navy-light: #1c2541;
    --bg-light: #fafaf9;
    --card-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(243, 143, 30, 0.18);
    --text-main: #475569;
    --text-heading: #0f172a;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-pink) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(243, 143, 30, 0.15) 0%, rgba(236, 93, 146, 0.15) 100%);
    --shadow-premium: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.03);
    --shadow-glow: 0 15px 35px -5px rgba(243, 143, 30, 0.22);
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

/* Common Layout Components */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--navy-deep);
    color: #e2e8f0;
}

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

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: var(--gradient-glow);
    border: 1px solid var(--glass-border);
    color: var(--primary-orange);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-main);
}

.section-dark .section-subtitle {
    color: #94a3b8;
}

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

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(243, 143, 30, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-heading);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: var(--shadow-premium);
}

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

.btn-white {
    background: var(--white);
    color: var(--primary-orange);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 250, 249, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(243, 143, 30, 0.08);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-premium);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
    height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: auto;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    height: 44px;
}

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

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-heading);
    text-decoration: none;
    position: relative;
    padding: 6px 0;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
    border-radius: 4px;
}

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-heading);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(243, 143, 30, 0.08) 0%, rgba(236, 93, 146, 0.05) 50%, rgba(250, 250, 249, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(243, 143, 30, 0.08);
    border: 1px solid rgba(243, 143, 30, 0.15);
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-main);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-image-container {
    width: 100%;
    height: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
    background: var(--gradient-primary);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
}

/* Floating 3D Card overlay on Hero */
.hero-floating-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 20;
    animation: floating 4s ease-in-out infinite;
}

.hero-floating-card .icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.hero-floating-card-text h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.hero-floating-card-text p {
    font-size: 0.8rem;
    color: var(--text-main);
}

/* About / Doctor Section */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-img-container {
    position: relative;
}

.about-img-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    height: 540px;
    border: 1px solid var(--glass-border);
}

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

.about-experience-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    padding: 24px;
    text-align: center;
    animation: floating 4.5s ease-in-out infinite;
}

.about-experience-badge h3 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2px;
}

.about-experience-badge p {
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.doctor-name {
    font-size: 2.2rem;
    margin-bottom: 6px;
}

.doctor-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 16px;
}

.qualifications-list {
    margin: 24px 0;
    list-style: none;
}

.qualifications-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text-heading);
}

.qualifications-list li i {
    color: var(--secondary-pink);
    font-size: 1.1rem;
}

/* Stats Counter Section */
.stats {
    background: var(--gradient-primary);
    padding: 60px 0;
    color: var(--white);
    position: relative;
}

.stats::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 19, 41, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-item p {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Services Cards (3D Tilt) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    transition: var(--transition-smooth);
    cursor: pointer;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.service-card:hover {
    border-color: rgba(243, 143, 30, 0.4);
    box-shadow: 0 20px 40px rgba(243, 143, 30, 0.08);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-md);
    background: var(--gradient-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(243, 143, 30, 0.1);
    transform: translateZ(30px);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gradient-primary);
}

.service-card:hover .service-icon-wrapper i {
    color: var(--white);
}

.service-icon-wrapper i {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-smooth);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    transform: translateZ(25px);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 24px;
    transform: translateZ(20px);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition-smooth);
    transform: translateZ(15px);
}

.service-link:hover {
    gap: 12px;
    color: var(--secondary-pink);
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
}

.why-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gradient-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.3rem;
    border: 1px solid rgba(243, 143, 30, 0.1);
}

.why-text h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.why-text p {
    font-size: 0.95rem;
}

.why-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 480px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--glass-border);
}

.why-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Carousel */
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 40px;
    text-align: center;
}

.testimonial-card {
    padding: 50px 40px;
}

.quote-icon {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-heading);
    line-height: 1.6;
    margin-bottom: 30px;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.client-info p {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-orange);
    letter-spacing: 1px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
    width: 24px;
    border-radius: 10px;
}

/* Appointment Call To Action Banner */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 36px auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact page styles & Quick Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: var(--transition-smooth);
}

a.contact-info-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(243, 143, 30, 0.35) !important;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-md);
    background: var(--gradient-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-text h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
}

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

.form-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-heading);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-heading);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(243, 143, 30, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-alert {
    padding: 14px 18px;
    border-radius: var(--border-radius-md);
    margin-bottom: 24px;
    font-weight: 500;
    display: none;
}

.form-alert-success {
    background-color: #ecfdf5;
    border: 1px solid #10b981;
    color: #065f46;
}

.form-alert-error {
    background-color: #fef2f2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

/* Newsletter Subscription */
.newsletter-section {
    padding: 60px 0;
    background-color: #f1f5f9;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.newsletter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    width: 100%;
}

.newsletter-form .form-control {
    background: var(--white);
}

/* Footer styling */
.footer {
    background-color: var(--navy-deep);
    color: #94a3b8;
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--primary-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 56px;
    margin-bottom: 12px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gradient-primary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--primary-orange);
    transform: translateX(4px);
}

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

.footer-contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-contact-info i {
    color: var(--secondary-pink);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Dynamic Entrance Animations (ScrollTrigger/GSAP helper classes) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Appointment Modal Setup */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(11, 19, 41, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

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

.modal-content {
    width: 90%;
    max-width: 680px;
    padding: 40px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-smooth);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-heading);
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    background: #e2e8f0;
    color: var(--accent-red);
    transform: rotate(90deg);
}

/* Animations definition */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Admin Styles */
.admin-login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(243, 143, 30, 0.1) 0%, rgba(11, 19, 41, 0.05) 100%);
    padding: 24px;
}

.admin-login-card {
    width: 100%;
    max-width: 440px;
    padding: 40px;
}

.admin-login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.admin-login-logo img {
    height: 56px;
    margin: 0 auto;
}

/* Admin Dashboard layout */
.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background-color: var(--navy-deep);
    color: #94a3b8;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
}

.admin-brand {
    padding: 0 24px 30px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}

.admin-brand img {
    height: 44px;
}

.admin-menu {
    list-style: none;
}

.admin-menu-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.admin-menu-item a:hover,
.admin-menu-item.active a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
    border-left-color: var(--primary-orange);
}

.admin-logout-btn {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.admin-main {
    background-color: #f8fafc;
    padding: 40px;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.admin-stat-card {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-stat-info h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 6px;
}

.admin-stat-info p {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-heading);
}

.admin-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    background: var(--gradient-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.3rem;
}

.admin-panel-card {
    padding: 30px;
    margin-bottom: 40px;
}

.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    padding: 14px 18px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #64748b;
    border-bottom: 2px solid #f1f5f9;
}

.admin-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: var(--text-main);
}

.admin-table tr:hover {
    background-color: rgba(243, 143, 30, 0.02);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-pending {
    background-color: #fef3c7;
    color: #d97706;
}

.badge-approved {
    background-color: #d1fae5;
    color: #059669;
}

.badge-cancelled {
    background-color: #fee2e2;
    color: #dc2626;
}

/* Action Dropdowns/Buttons */
.actions-cell {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.action-btn-approve {
    background-color: #e6fcf5;
    color: #099268;
}

.action-btn-approve:hover {
    background-color: #099268;
    color: var(--white);
}

.action-btn-cancel {
    background-color: #fff5f5;
    color: #fa5252;
}

.action-btn-cancel:hover {
    background-color: #fa5252;
    color: var(--white);
}

.action-btn-delete {
    background-color: #f8f9fa;
    color: #495057;
}

.action-btn-delete:hover {
    background-color: #e9ecef;
    color: var(--accent-red);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-wrapper,
    .why-image-wrapper {
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        display: none;
        /* In production, we'd add a toggle, but for simplicity we keep it standard */
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-container {
        height: 350px;
    }

    .hero-floating-card {
        display: none;
    }

    .about-experience-badge {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

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

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        border-bottom: 1px solid rgba(15, 23, 42, 0.05);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Premium 3D & Advanced Animations Additions --- */

/* Hero Cursor Glow Blob */
.hero-cursor-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(243, 143, 30, 0.12) 0%, rgba(236, 93, 146, 0.04) 50%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero:hover .hero-cursor-glow {
    opacity: 1;
}

/* Floating Background Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    animation: floatShape 20s infinite ease-in-out;
}

.hero-shape-1 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(243, 143, 30, 0.16) 0%, rgba(243, 143, 30, 0) 70%);
    top: 15%;
    left: 4%;
}

.hero-shape-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(236, 93, 146, 0.14) 0%, rgba(236, 93, 146, 0) 70%);
    bottom: 8%;
    right: 12%;
    animation-delay: -5s;
    animation-duration: 26s;
}

.hero-shape-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.08) 0%, rgba(227, 6, 19, 0) 70%);
    top: 48%;
    left: 42%;
    animation-delay: -10s;
    animation-duration: 18s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    50% {
        transform: translateY(-45px) scale(1.15) rotate(180deg);
    }
}

/* Before-After Interactive Split-Screen 3D Slider */
.before-after-slider {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium), 0 20px 50px rgba(0, 0, 0, 0.06);
    user-select: none;
    border: 1px solid var(--glass-border);
}

.ba-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-before img {
    filter: contrast(1.1) brightness(0.9);
}

.ba-after {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    z-index: 2;
}

.ba-after img {
    filter: brightness(1.04) contrast(1.02);
}

.ba-label {
    position: absolute;
    top: 24px;
    padding: 6px 14px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.ba-label-before {
    left: 24px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-label-after {
    right: 24px;
    background: var(--gradient-primary);
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    cursor: ew-resize;
}

.ba-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary-orange);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.25);
    transition: background-color 0.2s, transform 0.2s;
}

.ba-handle:hover .ba-handle-button {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Service Cards Gloss / Shine Animation */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover::before {
    left: 150%;
}

/* Navigation Dropdown Menu styling */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.95);
    width: 540px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
    z-index: 999;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.dropdown-column h4 {
    font-size: 0.9rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(243, 143, 30, 0.1);
    padding-bottom: 4px;
}

.dropdown-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.dropdown-column a i {
    font-size: 0.95rem;
    color: var(--secondary-pink);
    transition: var(--transition-smooth);
    width: 18px;
    text-align: center;
}

.dropdown-column a:hover {
    color: var(--primary-orange);
    transform: translateX(4px);
}

.dropdown-column a:hover i {
    color: var(--primary-orange);
}

/* Mobile Dropdown styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0 0 0 16px;
        display: none;
    }

    .nav-item.dropdown.active-mobile .dropdown-menu {
        display: block;
    }

    .dropdown-columns {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Filter Tab Buttons styling */
.filter-btn {
    padding: 12px 26px;
    border-radius: 50px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: var(--white);
    color: var(--text-heading);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

/* Services Grid Transitioning cards */
.service-card {
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-card.hidden-card {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
    width: 0;
    height: 0;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    overflow: hidden;
}

/* Hover gap bridge for desktop dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 24px;
    background: transparent;
}

/* Booking form container responsive grid styles */
.booking-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    overflow: hidden;
}

.booking-info-panel {
    background: var(--gradient-primary);
    padding: 60px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-form-panel-inline {
    padding: 50px;
}

/* Responsive updates for mobile viewport */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-info-panel {
        padding: 40px;
    }

    .booking-form-panel-inline {
        padding: 35px;
    }
}

@media (max-width: 768px) {

    /* Allow mobile menu to be scrollable when open */
    .nav-menu {
        max-height: calc(100vh - 85px);
        overflow-y: auto;
    }
}

/* --- Top Contact Bar Nesting Styles --- */
.top-contact-bar {
    background-color: var(--navy-deep);
    color: #94a3b8;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    max-height: 40px;
    opacity: 1;
}

.top-contact-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-contact-left {
    display: flex;
    gap: 20px;
}

.top-contact-bar a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.top-contact-bar a:hover {
    color: var(--primary-orange);
}

/* Scrolled toggles */
.header.scrolled .top-contact-bar {
    max-height: 0;
    padding: 0;
    border-bottom: none;
    opacity: 0;
}

/* Standardized Inner Banners */
.inner-banner {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 160px 0 60px 0;
    /* Add top spacing to clear fixed nav bar height */
    text-align: center;
    border-bottom: 3px solid var(--primary-orange);
}

.inner-banner h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    color: var(--white);
}

.inner-banner h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inner-banner p {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive updates for navigation components */
@media (max-width: 768px) {
    .top-contact-bar {
        display: none !important;
        /* Hide to save mobile viewport space */
    }

    .inner-banner {
        padding: 130px 0 50px 0;
    }

    .inner-banner h1 {
        font-size: 2.3rem;
    }
}

/* ================================================
   TREATMENT CATALOG - Premium 3D Service Cards
================================================ */

/* Grid layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
    perspective: 1200px;
}

/* Base card - flex column, no padding */
.service-card {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transform-style: preserve-3d;
    transform: translateZ(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    background: #fff;
    position: relative;
}

/* On hover: lift card up */
.service-card:hover {
    transform: translateY(-10px) translateZ(20px);
    box-shadow: 0 28px 60px -8px rgba(15, 23, 42, 0.18),
        0 8px 18px -5px rgba(243, 143, 30, 0.22) !important;
    border-color: rgba(243, 143, 30, 0.3) !important;
}

/* Animated accent bottom line */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

.service-card:hover::after {
    width: 100%;
}

/* Image container */
.service-img-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

/* Service photo */
.service-card .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.5s ease;
    filter: brightness(0.92) saturate(1.1);
}

/* 3D zoom + brighten on hover */
.service-card:hover .service-img {
    transform: scale(1.13) rotate(0.5deg);
    filter: brightness(1.05) saturate(1.2);
}

/* Dark gradient overlay on image */
.service-img-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(11, 19, 41, 0) 30%,
            rgba(11, 19, 41, 0.55) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-img-container::before {
    opacity: 0.7;
}

/* Glossy shimmer sweep */
.service-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.18) 50%,
            rgba(255, 255, 255, 0) 70%);
    transform: translateX(-100%);
    z-index: 2;
    transition: transform 0.7s ease;
}

.service-card:hover .service-img-container::after {
    transform: translateX(120%);
}

/* Floating icon badge */
.service-icon-badge {
    position: absolute;
    bottom: -20px;
    right: 18px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.15rem;
    box-shadow: 0 6px 16px rgba(243, 143, 30, 0.4);
    z-index: 4;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease;
    border: 3px solid #fff;
}

.service-card:hover .service-icon-badge {
    transform: translateY(-6px) scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 25px rgba(243, 143, 30, 0.5);
}

/* Card body */
.service-body {
    padding: 28px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-heading);
    transition: color 0.3s ease;
}

.service-card:hover .service-body h3 {
    color: var(--primary-orange);
}

.service-body p {
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.55;
    margin-bottom: 18px;
    flex-grow: 1;
}

/* Book treatment link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary-orange);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.service-link:hover,
.service-link:focus {
    color: var(--secondary-pink);
    gap: 12px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Gloss sweep on whole card */
.service-card .service-card-gloss {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.12) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg) translateX(-150%);
    transition: transform 0.7s ease;
    z-index: 5;
    pointer-events: none;
}

.service-card:hover .service-card-gloss {
    transform: skewX(-20deg) translateX(250%);
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }

    .service-img-container {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   HERO SLIDER - Full-screen 3D Auto Carousel
============================================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    background: var(--navy-deep);
}

/* Each slide - full size, flex row */
.hs-slide {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.hs-slide.active {
    opacity: 1;
    pointer-events: all;
}

/* LEFT panel - dark BG + text */
.hs-left {
    position: relative;
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-left: 30px;
}

/* Animated deep navy gradient background */
.hs-left-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #060d1f 0%,
            #0b1329 50%,
            #111d40 100%);
}

/* Subtle animated circle patterns on left panel */
.hs-left-bg::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 143, 30, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: bgpulse 8s ease-in-out infinite alternate;
}

.hs-left-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 93, 146, 0.07) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    animation: bgpulse 10s ease-in-out infinite alternate-reverse;
}

@keyframes bgpulse {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.15) translate(20px, 20px);
    }
}

/* Text content inside left panel */
.hs-left-content {
    position: relative;
    z-index: 2;
    padding: 0 20px 0 0;
    max-width: 580px;
    width: 100%;
}

/* RIGHT panel - photo */
.hs-right {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #0e1a35, #1a2750);
}

/* Photo wrapper with clip and glow */
.hs-photo-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transform: translateX(40px);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
        opacity 0.9s ease 0.3s;
}

.hs-slide.active .hs-photo-wrap {
    transform: translateX(0);
    opacity: 1;
}

/* The actual photo */
.hs-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    display: block;
    filter: brightness(1.05) contrast(1.02) saturate(1.08);
    animation: photoZoom 7s ease forwards;
}

.hs-slide.active .hs-photo {
    animation: photoZoom 7s ease forwards;
}

@keyframes photoZoom {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1.0);
    }
}

/* Orange glow overlay on right panel */
.hs-photo-glow {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to right, #0b1329, transparent);
    z-index: 2;
    pointer-events: none;
}

/* Diagonal decorative line on right panel */
.hs-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 60%,
            rgba(11, 19, 41, 0.6) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Content area (legacy - keep for .hs-content refs) */
.hs-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 60px;
    max-width: 700px;
}


/* Badge pill */
.hs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 143, 30, 0.18);
    border: 1px solid rgba(243, 143, 30, 0.45);
    color: #fbbf6e;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    letter-spacing: 0.08em;
    width: fit-content;
    margin-bottom: 10px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
        opacity 0.7s ease 0.1s;
}

.hs-slide.active .hs-badge {
    transform: translateY(0);
    opacity: 1;
}

/* Heading */
.hs-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    white-space: nowrap;
    transform: translateY(35px);
    opacity: 0;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.22s,
        opacity 0.75s ease 0.22s;
}

.hs-title span {
    white-space: nowrap;
}

.hs-slide.active .hs-title {
    transform: translateY(0);
    opacity: 1;
}

.hs-title span {
    white-space: nowrap;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.hs-desc {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    margin-bottom: 14px;
    max-width: 100%;
    letter-spacing: 0.01em;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.34s,
        opacity 0.75s ease 0.34s;
}

.hs-slide.active .hs-desc {
    transform: translateY(0);
    opacity: 1;
}

.hs-desc strong {
    color: #fbbf6e;
}

/* Buttons row */
.hs-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    /* Slightly wider gap between buttons */
    margin-bottom: 16px;
    transform: translateY(25px);
    opacity: 0;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.46s,
        opacity 0.75s ease 0.46s;
}

.hs-slide.active .hs-btns {
    transform: translateY(0);
    opacity: 1;
}

/* Outline white button */
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s ease;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-white:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(243, 143, 30, 0.12);
    transform: translateY(-2px);
}

/* Floating info card */
.hs-float-card {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 18px;
    padding: 16px 22px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.58s,
        opacity 0.75s ease 0.58s;
}

.hs-slide.active .hs-float-card {
    transform: translateY(0);
    opacity: 1;
}

.hs-float-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hs-float-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    min-width: 70px;
}

.hs-float-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.hs-float-lbl {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    white-space: nowrap;
}

.hs-float-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* Navigation Arrows */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hs-arrow:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(243, 143, 30, 0.4);
}

.hs-prev {
    left: 28px;
}

.hs-next {
    right: 28px;
}

/* Dot indicators */
.hs-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.hs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hs-dot.active {
    background: var(--primary-orange);
    width: 28px;
    border-radius: 5px;
    border-color: var(--primary-orange);
}

/* Progress bar */
.hs-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    width: 0%;
    z-index: 10;
    transition: width 0.1s linear;
}

/* Slide counter */
.hs-counter {
    position: absolute;
    right: 32px;
    bottom: 28px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

#hs-current {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: 800;
}

.hs-counter-sep {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive - split layout */
@media (max-width: 960px) {
    .hs-left {
        flex: 0 0 60%;
        justify-content: flex-end;
    }

    .hs-right {
        flex: 0 0 40%;
    }

    .hs-left-content {
        padding: 0 30px 0 0;
        padding-top: 110px;
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 100svh;
        height: auto;
    }

    .hs-slide {
        flex-direction: column;
        position: absolute;
        inset: 0;
    }

    .hs-left {
        flex: 0 0 100%;
        min-height: 100svh;
    }

    .hs-right {
        display: none;
    }

    .hs-left-content {
        padding: 0 24px;
        padding-top: 110px;
        max-width: 100%;
    }

    .hs-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hs-arrow {
        display: none;
    }

    .hs-float-row {
        gap: 10px;
    }

    .hs-float-item {
        min-width: 52px;
    }

    .hs-float-num {
        font-size: 1rem;
    }

    .hs-counter {
        display: none;
    }
}




/* ============================================================
   GALLERY SECTION — Premium 3D Gallery with Image & Video Tabs
   ============================================================ */

/* Section wrapper */
.gallery-section {
    position: relative;
    padding: 100px 0 110px;
    background: linear-gradient(165deg, #0b1329 0%, #12203f 40%, #1a1035 100%);
    overflow: hidden;
}

/* Floating particle canvas */
.gallery-bg-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.gallery-bg-particles .gp {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: gParticleFloat linear infinite;
}

@keyframes gParticleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.6);
    }

    15% {
        opacity: 0.6;
    }

    85% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: translateY(-110vh) scale(1.1);
    }
}

/* Override heading colors inside dark section */
.gallery-section .section-title,
.gallery-section .section-title span {
    color: #fff;
}

.gallery-section .section-subtitle {
    color: rgba(255, 255, 255, 0.62);
}

.gallery-section .section-badge {
    background: rgba(243, 143, 30, 0.15);
    color: var(--primary-orange);
    border: 1px solid rgba(243, 143, 30, 0.3);
}

/* ── Tab Toggle ── */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.gallery-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 36px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.gallery-tab:hover {
    border-color: rgba(243, 143, 30, 0.5);
    color: #fff;
    background: rgba(243, 143, 30, 0.12);
}

.gallery-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px -6px rgba(243, 143, 30, 0.5);
}

.gallery-tab i {
    font-size: 1rem;
}

/* ── Panel transitions ── */
.gallery-panel {
    animation: gPanelIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-panel--hidden {
    display: none;
}

@keyframes gPanelIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Photo Slider ── */
.gallery-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0 10px;
}

.gallery-slider-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 18px;
    padding: 10px 0;
}

.gallery-slider-track {
    display: flex;
    gap: 15px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.gallery-slider-track .g-card {
    flex: 0 0 calc((100% - 45px) / 4);
    min-width: 0;
    height: 220px;
}

@media (max-width: 991px) {
    .gallery-slider-track .g-card {
        flex: 0 0 calc((100% - 30px) / 3);
        height: 190px;
    }
}

@media (max-width: 600px) {
    .gallery-slider-track .g-card {
        flex: 0 0 calc((100% - 15px) / 2);
        height: 160px;
    }
}

.gallery-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 5;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.gallery-nav-btn:hover {
    background: var(--primary-orange, #f38f1e);
    border-color: var(--primary-orange, #f38f1e);
    box-shadow: 0 6px 20px rgba(243, 143, 30, 0.4);
    transform: scale(1.08);
}

.gallery-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--primary-orange, #f38f1e);
    box-shadow: 0 2px 10px rgba(243, 143, 30, 0.5);
}

/* ── Photo Grid (for Certificates) ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 265px;
    gap: 20px;
}

/* Large card spans 2 columns */
.g-card--large {
    grid-column: span 2;
}

/* Wide card spans all 3 columns (full row) */
.g-card--wide {
    grid-column: span 3;
    grid-auto-rows: 320px;
}

.g-card--wide .g-img {
    object-position: center 30%;
}

/* ── Single Image Card ── */
.g-card {
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: box-shadow 0.4s ease;
}

.g-card:hover {
    box-shadow: 0 24px 60px -12px rgba(243, 143, 30, 0.4), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.g-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

.g-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-card:hover .g-img {
    transform: scale(1.08);
}

/* Overlay */
.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 19, 41, 0) 30%, rgba(11, 19, 41, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.g-card:hover .g-overlay {
    opacity: 1;
}

.g-overlay-content {
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-card:hover .g-overlay-content {
    transform: translateY(0);
}

.g-zoom-icon {
    width: 40px;
    height: 40px;
    background: rgba(243, 143, 30, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.g-label {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* 3D Shine overlay */
.g-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.g-card:hover .g-shine {
    opacity: 1;
}

/* ── Video Grid ── */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.video-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 50px -10px rgba(243, 143, 30, 0.35);
}

.video-thumb-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.7);
}

.video-card:hover .video-thumb {
    transform: scale(1.06);
}

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-play-icon {
    width: 62px;
    height: 62px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    box-shadow: 0 8px 28px -4px rgba(243, 143, 30, 0.6);
}

.video-play-icon i {
    color: #fff;
    font-size: 1.3rem;
    margin-left: 4px;
}

.video-play-btn:hover .video-play-icon {
    transform: scale(1.15);
    box-shadow: 0 12px 36px -4px rgba(243, 143, 30, 0.8);
}

/* Ripple ring animation */
.video-ripple {
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 3px solid rgba(243, 143, 30, 0.5);
    animation: videoRipple 2s ease-out infinite;
}

@keyframes videoRipple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.video-duration-badge {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.video-card-body {
    padding: 18px 20px 22px;
}

.video-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.35;
}

.video-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
}

/* ── Lightbox (Image) ── */
.g-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.g-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.g-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 22, 0.93);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.g-lightbox-inner {
    position: relative;
    z-index: 2;
    max-width: 88vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.g-lightbox-img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

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

.g-lightbox-caption {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.g-lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.g-lightbox-close:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: rotate(90deg);
}

.g-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.g-lightbox-nav:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.g-lb-prev {
    left: 22px;
}

.g-lb-next {
    right: 22px;
}

/* ── Video Lightbox ── */
.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.video-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.video-lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 22, 0.95);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.video-lb-close {
    position: absolute;
    top: 18px;
    right: 22px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.video-lb-close:hover {
    background: var(--primary-orange);
    transform: rotate(90deg);
}

.video-lb-inner {
    position: relative;
    z-index: 2;
    width: 85vw;
    max-width: 960px;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.video-lb-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .g-card--large {
        grid-column: span 2;
    }

    .videos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .gallery-section {
        padding: 70px 0 80px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .g-card--large {
        grid-column: span 1;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .gallery-tabs {
        gap: 10px;
    }

    .gallery-tab {
        padding: 11px 22px;
        font-size: 0.9rem;
    }

    .g-lb-prev {
        left: 8px;
    }

    .g-lb-next {
        right: 8px;
    }
}



/* ============================================================
   HERO SLIDER — Full CSS
   ============================================================ */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--navy-deep);
}

/* ── Individual Slide ── */
.hs-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.18;
    filter: blur(8px);
    pointer-events: none;
}

.hs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060d1f 0%, #0b1329 60%, #111d40 100%);
    z-index: 1;
    pointer-events: none;
}

.hs-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
    overflow: hidden;
}

.hs-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hs-slide .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hs-content {
    position: relative;
    z-index: 4;
    max-width: 54%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 40px;
}

/* ── Badge ── */
.hs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 143, 30, 0.15);
    border: 1px solid rgba(243, 143, 30, 0.35);
    color: var(--primary-orange);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    width: fit-content;
}

.hs-slide.active .hs-badge {
    animation: hsFadeUp 0.6s ease both 0.1s;
}

/* ── Title ── */
.hs-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin-bottom: 26px;
}

.hs-title span {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hs-slide.active .hs-title {
    animation: hsFadeUp 0.65s ease both 0.2s;
}

/* ── Description ── */
.hs-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    margin-bottom: 36px;
    letter-spacing: 0.01em;
}

.hs-slide.active .hs-desc {
    animation: hsFadeUp 0.65s ease both 0.3s;
}

/* ── Buttons ── */
.hs-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hs-slide.active .hs-btns {
    animation: hsFadeUp 0.65s ease both 0.4s;
}

/* ── Float Stats Card ── */
.hs-float-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px 24px;
    display: inline-block;
}

.hs-slide.active .hs-float-card {
    animation: hsFadeUp 0.65s ease both 0.5s;
}

.hs-float-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hs-float-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hs-float-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hs-float-lbl {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.hs-float-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* ── Right Side Image wrap ── */
.hs-image-wrap {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 44%;
    z-index: 2;
    overflow: hidden;
}

.hs-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy-deep) 0%, transparent 20%),
        linear-gradient(0deg, rgba(11, 19, 41, 0.4) 0%, transparent 40%);
    z-index: 3;
    pointer-events: none;
}

.hs-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.08);
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hs-slide.active .hs-image-wrap img {
    transform: scale(1);
}

/* ── Navigation Arrows ── */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
}

.hs-arrow:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.hs-prev {
    left: 24px;
}

.hs-next {
    right: 24px;
}

/* ── Dot Indicators ── */
.hs-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.hs-dot.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    width: 28px;
    border-radius: 6px;
}

/* ── Progress Bar ── */
.hs-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-pink));
    z-index: 10;
}

/* ── Slide Counter ── */
.hs-counter {
    position: absolute;
    bottom: 26px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    z-index: 10;
}

#hs-current {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.hs-counter-sep {
    opacity: 0.5;
}

/* ── Keyframe Animations ── */
@keyframes hsFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-slider {
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .hs-slide {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .hs-image-wrap {
        position: relative;
        width: 100%;
        height: 320px;
        order: 1;
        flex-shrink: 0;
    }

    .hs-slide .container {
        order: 2;
        flex-grow: 1;
        display: flex;
        align-items: center;
        padding: 30px 20px 50px 20px;
    }

    .hs-content {
        max-width: 100%;
        padding-top: 0;
        padding-bottom: 0;
        text-align: center;
        align-items: center;
    }

    .hs-image-wrap::after {
        background: linear-gradient(180deg, transparent 60%, var(--navy-deep) 100%);
    }

    .hs-title {
        font-size: clamp(1.7rem, 6vw, 2.4rem);
        margin-bottom: 18px;
    }

    .hs-badge {
        margin-bottom: 18px;
    }

    .hs-desc {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .hs-btns {
        margin-bottom: 0;
        justify-content: center;
    }

    .hs-arrow {
        display: none;
    }

    .hs-dots {
        bottom: 16px;
    }

    .hs-counter {
        bottom: 12px;
        right: 16px;
        font-size: 0.8rem;
    }

    .hs-float-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .hs-image-wrap {
        height: 250px;
    }

    .hs-slide .container {
        padding: 20px 16px 40px 16px;
    }

    .hs-title {
        font-size: 1.6rem;
    }

    .hs-btns {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hs-btns .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ============================================================
   3D CIRCULAR CAROUSEL ANIMATION FOR SERVICES
   ============================================================ */

.carousel-3d-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 40px auto;
}

/* Base styles for the 3D stage and cards, enabled only on desktop */
@media (min-width: 992px) {
    .carousel-3d-active {
        height: 600px;
        position: relative;
        perspective: 1800px;
        perspective-origin: 50% 35%;
        overflow: visible !important;
        display: block !important;
    }

    .carousel-3d-active .services-grid {
        display: block !important;
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.8s cubic-bezier(0.25, 1, 0.25, 1);
        margin: 0;
        padding: 0;
    }

    .carousel-3d-active .service-card {
        position: absolute;
        width: 310px;
        height: 440px;
        left: 50%;
        top: 50%;
        margin-left: -155px;
        /* Half of width */
        margin-top: -220px;
        /* Half of height */
        transform-style: preserve-3d;
        backface-visibility: hidden;
        transition: transform 0.8s cubic-bezier(0.25, 1, 0.25, 1),
            opacity 0.8s cubic-bezier(0.25, 1, 0.25, 1),
            filter 0.8s cubic-bezier(0.25, 1, 0.25, 1),
            border-color 0.4s ease,
            box-shadow 0.4s ease;
        z-index: 1;
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    }

    .carousel-3d-active .service-card.back-face {
        opacity: 0.15;
        pointer-events: none;
        filter: blur(2px) grayscale(0.2);
    }

    .carousel-3d-active .service-card.side-face {
        opacity: 0.6;
        filter: blur(0.5px);
    }

    .carousel-3d-active .service-card.active-face {
        opacity: 1;
        z-index: 10;
        filter: none;
        box-shadow: 0 30px 60px rgba(243, 143, 30, 0.18), 0 10px 20px rgba(0, 0, 0, 0.08) !important;
        border-color: rgba(243, 143, 30, 0.4) !important;
    }
}

/* Mobile & Tablet fallback */
@media (max-width: 991.98px) {
    .carousel-3d-wrapper {
        margin: 30px 0;
    }

    .carousel-3d-active {
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
    }

    .carousel-3d-active .services-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 20px;
        padding: 10px 20px;
        width: max-content;
        perspective: none;
    }

    .carousel-3d-active .service-card {
        scroll-snap-align: center;
        width: 290px;
        flex-shrink: 0;
        opacity: 1 !important;
        filter: none !important;
        pointer-events: auto !important;
    }

    /* Hide default scrollbar but allow scrolling */
    .carousel-3d-active::-webkit-scrollbar {
        height: 6px;
    }

    .carousel-3d-active::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.03);
    }

    .carousel-3d-active::-webkit-scrollbar-thumb {
        background: rgba(243, 143, 30, 0.2);
        border-radius: 4px;
    }
}

/* Control buttons (next, prev) */
.carousel-3d-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 100;
    padding: 0 10px;
}

@media (min-width: 1200px) {
    .carousel-3d-controls {
        left: -60px;
        width: calc(100% + 120px);
        padding: 0;
    }
}

.carousel-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(243, 143, 30, 0.15);
    color: #f38f1e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    font-size: 1.2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #f38f1e, #ec5d92);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(243, 143, 30, 0.25);
    border-color: transparent;
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Indicators */
.carousel-3d-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator.active {
    width: 28px;
    border-radius: 5px;
    background: linear-gradient(135deg, #f38f1e, #ec5d92);
    box-shadow: 0 4px 10px rgba(243, 143, 30, 0.2);
}

/* ============================================================
   OVERLAPPING CIRCULAR IMAGE/ICON DESIGN FOR SERVICE CARDS
   ============================================================ */

/* Make room for absolute positioned circular image/icon overlapping top */
.services-grid {
    padding-top: 105px !important;
    overflow: visible !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    gap: 70px 45px !important;
    /* Increased card layout gap space */
}

/* Base Card Style matching the reference photo exactly */
.service-card {
    overflow: visible !important;
    padding: 120px 30px 40px 30px !important;
    /* Increased internal padding/space */
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    position: relative !important;
    background: #ffffff !important;
    border-radius: 4px !important;
    /* Clean square-ish corners matching photo */
    border: none !important;
    /* No borders */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    /* Soft premium drop shadow */
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    transform: none !important;
}

/* Card lift on hover */
.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Card Body centering updates */
.service-body {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    flex-grow: 1 !important;
    width: 100% !important;
}

.service-body h3,
.service-card h3 {
    text-align: center !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: var(--text-heading, #1e293b) !important;
    font-family: 'Outfit', sans-serif !important;
}

.service-body p,
.service-card p {
    text-align: center !important;
    font-size: 0.9rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    flex-grow: 1 !important;
}

/* 1. Homepage Service Card Image Container -> Perfect Circle overlapping top */
.service-img-container {
    position: absolute !important;
    width: 170px !important;
    height: 170px !important;
    border-radius: 50% !important;
    border: 6px solid #ffffff !important;
    /* Thick white border like reference */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
    overflow: hidden !important;
    top: -85px !important;
    /* Shift up by exactly half */
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.3s ease !important;
    flex-shrink: 0 !important;
}

.service-card:hover .service-img-container {
    transform: translateX(-50%) scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18) !important;
}

.service-img-container img.service-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    transition: transform 0.3s ease !important;
}

.service-card:hover .service-img-container img.service-img {
    transform: scale(1.05) !important;
}

.service-img-container::before,
.service-img-container::after {
    display: none !important;
    /* Hide gradient/glimmer sweep overlays */
}

/* Category Icon Badge floated at bottom-right of the circle */
.service-icon-badge {
    position: absolute !important;
    bottom: 4px !important;
    right: 4px !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: var(--gradient-primary, linear-gradient(135deg, #f38f1e, #ec5d92)) !important;
    border: 3px solid #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    z-index: 12 !important;
}

/* 2. Treatments page Service Card Icon Wrapper -> Circle Shape overlapping top */
.service-icon-wrapper {
    position: absolute !important;
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    border: 6px solid #ffffff !important;
    background: var(--gradient-glow, #f8fafc) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    top: -60px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        background 0.3s ease,
        box-shadow 0.3s ease !important;
    margin-bottom: 0 !important;
}

.service-icon-wrapper i {
    font-size: 2.4rem !important;
    color: #f38f1e !important;
    transition: transform 0.3s ease !important;
}

.service-card:hover .service-icon-wrapper {
    transform: translateX(-50%) scale(1.05) !important;
    background: linear-gradient(135deg, #f38f1e, #ec5d92) !important;
    box-shadow: 0 15px 30px rgba(243, 143, 30, 0.2) !important;
}

.service-card:hover .service-icon-wrapper i {
    color: #ffffff !important;
    transform: scale(1.05) !important;
}

/* 3. Button / Link style matching reference exactly (centered, bold, static underline) */
.service-link {
    display: inline-block !important;
    margin-top: auto !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: #f38f1e !important;
    text-decoration: none !important;
    border-bottom: 2px solid #f38f1e !important;
    /* Thick static underline matching reference */
    padding-bottom: 4px !important;
    transition: color 0.3s ease, border-color 0.3s ease !important;
    align-self: center !important;
    transform: none !important;
}

.service-link i {
    display: none !important;
    /* Hide original arrow icons */
}

.service-link::after {
    display: none !important;
    /* Remove expanding animation overlay line */
}

.service-link:hover,
.service-link:focus {
    color: #ec5d92 !important;
    border-bottom-color: #ec5d92 !important;
}

/* Hide cards during filtering and force grid reflow */
.service-card.hidden-card {
    display: none !important;
}

/* Modal responsiveness and scroll improvements */
.modal {
    overflow-y: auto !important;
}

.modal-content {
    max-height: 90vh !important;
    overflow-y: auto !important;
}

/* Floating Book Appointment Widget */
.appointment-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    height: 54px;
    padding: 0 24px;
    background: linear-gradient(135deg, #f38f1e, #ec5d92);
    color: #ffffff !important;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(243, 143, 30, 0.35);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.appointment-float:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(243, 143, 30, 0.45);
    color: #ffffff !important;
}

/* ============================================================
   GOOGLE-STYLE CLIENT REVIEWS OVERRIDE (OLIVA CLINIC STYLE)
   ============================================================ */

/* Review filter pills */
.review-filters {
    margin-top: 10px;
}

.review-filter-btn {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #475569 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    padding: 8px 22px !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.review-filter-btn:hover {
    border-color: #cbd5e1 !important;
    color: #1e293b !important;
}

.review-filter-btn.active {
    background: linear-gradient(135deg, #f38f1e, #ec5d92) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(243, 143, 30, 0.25) !important;
}

/* Card design matching Oliva screenshots */
.review-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 32px !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: 100% !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    position: relative !important;
}

.review-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
}

/* Headline */
.review-card-title {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: var(--text-heading, #1e293b) !important;
    margin-bottom: 12px !important;
    font-family: 'Outfit', sans-serif !important;
    text-align: left !important;
}

/* Text body */
.review-text {
    font-size: 0.92rem !important;
    color: #4b5563 !important;
    line-height: 1.65 !important;
    margin-bottom: 24px !important;
    font-style: italic !important;
    flex-grow: 1 !important;
    text-align: left !important;
}

/* User Profile Row */
.review-user-info {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: auto !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.review-avatar {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    font-family: 'Outfit', sans-serif !important;
}

.review-user-details {
    text-align: left !important;
}

.review-user-details h5 {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--text-heading, #1e293b) !important;
    margin-bottom: 2px !important;
    margin-top: 0 !important;
}

.review-stars {
    color: #f59e0b !important;
    font-size: 0.85rem !important;
}

/* Tag */
.review-footer-tag {
    font-size: 0.78rem !important;
    color: #94a3b8 !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-align: left !important;
}

/* Animation collapse utility */
.review-card.hidden-review {
    display: none !important;
}

/* ============================================================
   AWARDS & RECOGNITION SECTION (OLIVA CLINIC STYLE)
   ============================================================ */

.awards-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

/* Safety: ensure awards elements are visible even if GSAP animation doesn't fire */
.awards-left,
.award-card {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.awards-left {
    position: relative;
    background: #ffffff !important;
    border: 1px solid rgba(243, 143, 30, 0.12) !important;
    border-radius: 24px !important;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.04) !important;
    min-height: 480px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.awards-left:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 30px 60px -20px rgba(243, 143, 30, 0.15) !important;
    border-color: rgba(243, 143, 30, 0.25) !important;
}

.india-map-bg {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 250px;
    height: auto;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

.huge-3d-num-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.huge-number-3d {
    font-family: 'Outfit', sans-serif !important;
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(4px 4px 0px rgba(243, 143, 30, 0.2));
    display: inline-block;
    position: relative;
    letter-spacing: -5px;
}

.huge-number-3d .hash {
    font-size: 4.5rem;
    font-weight: 800;
    vertical-align: super;
    margin-right: -10px;
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.awards-left-text {
    position: relative;
    z-index: 2;
    max-width: 340px;
    margin-top: 10px;
}

.awards-left-text h3 {
    font-size: 1.55rem !important;
    font-weight: 800 !important;
    color: var(--primary-orange) !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
    font-family: 'Outfit', sans-serif !important;
}

.awards-left-text p {
    font-size: 0.95rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
}

.awards-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.award-card {
    background: #ffffff !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 20px !important;
    padding: 45px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
}

.award-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 169, 180, 0.08) !important;
    border-color: rgba(0, 169, 180, 0.25) !important;
}

.award-wreath-container {
    position: relative;
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.laurel-wreath {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 180px;
    height: 100%;
    color: #64748b !important;
    opacity: 0.15 !important;
    transition: all 0.4s ease !important;
}

.award-card:hover .laurel-wreath {
    color: #00a9b4 !important;
    opacity: 0.22 !important;
    transform: translateX(-50%) scale(1.05) !important;
}

.award-title {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #334155 !important;
    line-height: 1.45 !important;
    max-width: 140px;
    text-align: center;
    z-index: 2;
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif !important;
}

.award-org {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: #00a9b4 !important;
    letter-spacing: 1px;
    margin-top: 10px !important;
    font-family: 'Outfit', sans-serif !important;
}

/* Media Queries for Awards Section Responsive Behavior */
@media (max-width: 991px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .awards-left {
        min-height: auto;
        padding: 50px 30px;
    }
}

@media (max-width: 575px) {
    .awards-right {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .award-card {
        padding: 35px 15px;
    }

    .award-wreath-container {
        height: 120px;
    }

    .laurel-wreath {
        max-width: 150px;
    }

    .award-title {
        font-size: 0.75rem !important;
        max-width: 120px;
    }

    .huge-number-3d {
        font-size: 8rem;
    }

    .huge-number-3d .hash {
        font-size: 3.5rem;
    }

    .awards-left-text h3 {
        font-size: 1.35rem !important;
    }
}

/* ============================================================
   SERVICE DETAIL PAGE STYLES — HERO BANNER
   ============================================================ */

.service-hero-banner {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--navy-deep);
}

.service-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    opacity: 0.45;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(11, 19, 41, 0.88) 0%,
            rgba(11, 19, 41, 0.70) 50%,
            rgba(11, 19, 41, 0.55) 100%);
    z-index: 1;
}

.service-hero-banner .container {
    position: relative;
    z-index: 3;
    padding-top: 140px;
    padding-bottom: 70px;
}

.service-hero-content {
    max-width: 620px;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 143, 30, 0.18);
    border: 1px solid rgba(243, 143, 30, 0.35);
    color: var(--primary-orange);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    backdrop-filter: blur(8px);
}

.service-hero-banner h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    margin-bottom: 18px;
    font-family: 'Outfit', sans-serif;
}

.service-hero-banner h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-hero-banner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
}

.service-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.service-hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.service-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.service-hero-stat .stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
}

/* Right-side floating image */
.service-hero-image-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 42%;
    z-index: 2;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.6) 20%, black 60%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.6) 20%, black 60%);
}

.service-hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.65;
}

.hero-deco-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 4;
}

/* ============================================================
   SERVICE DETAIL PAGE — MAIN CONTENT GRID
   ============================================================ */

.service-detail-page {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.service-detail-main {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Intro card */
.service-detail-intro {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 36px;
}

.service-detail-icon-large {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.service-detail-intro .section-badge {
    display: inline-block;
    background: rgba(243, 143, 30, 0.10);
    color: var(--primary-orange);
    border: 1px solid rgba(243, 143, 30, 0.25);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.service-detail-intro h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.service-detail-intro p {
    color: var(--text-main);
    line-height: 1.75;
    font-size: 0.97rem;
}

/* Info cards grid */
.service-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-info-card {
    padding: 28px;
}

.service-info-card>i {
    font-size: 1.6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
    display: block;
}

.service-info-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
}

.service-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-info-card ul li {
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
}

.service-info-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

/* Procedure steps */
.service-procedure {
    padding: 36px;
}

.service-procedure h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-family: 'Outfit', sans-serif;
}

.service-procedure h3 i {
    color: var(--primary-orange);
}

.procedure-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.procedure-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(243, 143, 30, 0.04);
    border-radius: 14px;
    border-left: 3px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.procedure-step:hover {
    background: rgba(243, 143, 30, 0.08);
    transform: translateX(4px);
}

.step-num {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    min-width: 50px;
}

.procedure-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.procedure-step p {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
}

/* Benefits grid */
.service-benefits {
    padding: 36px;
}

.service-benefits h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
}

.service-benefits h3 i {
    color: var(--primary-orange);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(243, 143, 30, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(243, 143, 30, 0.12);
    font-size: 0.87rem;
    color: var(--text-main);
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(243, 143, 30, 0.10);
    border-color: rgba(243, 143, 30, 0.25);
}

.benefit-item i {
    color: #22c55e;
    font-size: 1rem;
    min-width: 18px;
}

/* ============================================================
   SERVICE DETAIL — SIDEBAR
   ============================================================ */

.service-detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    padding: 28px;
}

.sidebar-widget h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(243, 143, 30, 0.15);
    font-family: 'Outfit', sans-serif;
}

.sidebar-widget h4 i {
    color: var(--primary-orange);
}

.sidebar-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-services-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.28s ease;
    border: 1px solid transparent;
}

.sidebar-services-list li a:hover {
    background: rgba(243, 143, 30, 0.08);
    border-color: rgba(243, 143, 30, 0.2);
    color: var(--primary-orange);
    transform: translateX(4px);
}

.sidebar-services-list li a i {
    font-size: 0.9rem;
    color: var(--primary-orange);
    min-width: 16px;
}

/* Sidebar CTA card */
.sidebar-cta {
    background: var(--gradient-primary) !important;
    border: none !important;
    text-align: center;
}

.sidebar-cta-icon {
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 auto 14px;
}

.sidebar-cta h4 {
    font-size: 1.1rem;
    color: #fff !important;
    border-bottom-color: rgba(255, 255, 255, 0.25) !important;
}

.sidebar-cta p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
    line-height: 1.6;
}

.sidebar-cta .btn-primary {
    background: rgba(255, 255, 255, 0.22) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: none !important;
    width: 100%;
    justify-content: center;
}

.sidebar-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.35) !important;
}

/* Doctor mini widget */
.sidebar-doctor {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.sidebar-doctor-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid rgba(243, 143, 30, 0.3);
    background: #fff;
}

.sidebar-doctor div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-doctor strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    font-family: 'Outfit', sans-serif;
}

.sidebar-doctor span {
    font-size: 0.78rem;
    color: var(--text-main);
}

.sidebar-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: gap 0.25s ease;
}

.sidebar-more-link:hover {
    gap: 10px;
}

/* ============================================================
   SERVICE DETAIL — RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr 300px;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .service-hero-banner {
        min-height: 420px;
    }

    .service-hero-image-wrap {
        display: none;
    }

    .service-hero-banner .container {
        padding-top: 110px;
        padding-bottom: 50px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-sidebar {
        position: static;
    }

    .service-info-cards {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-hero-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .service-hero-banner {
        min-height: 360px;
    }

    .service-detail-intro {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .service-procedure {
        padding: 24px;
    }

    .service-benefits {
        padding: 24px;
    }

    .sidebar-widget {
        padding: 20px;
    }
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
}

.cta-section p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 30px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-white {
    background: #ffffff;
    color: var(--primary-orange);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
    color: var(--primary-orange);
}

/* ============================================================
   GOOGLE REVIEWS SECTION & AUTOMATIC SLIDER CAROUSEL STYLES
   ============================================================ */
.google-reviews-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.google-rating-summary-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 820px;
    margin: 25px auto 40px auto;
    padding: 22px 30px;
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
}

.grs-main {
    display: flex;
    align-items: center;
    gap: 18px;
}

.google-g-logo {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.grs-score-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.grs-score {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.grs-stars-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.grs-stars {
    color: #f59e0b;
    font-size: 1.15rem;
    display: flex;
    gap: 3px;
}

.grs-count {
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
}

.grs-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-google-write {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 11px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

.btn-google-write:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.45);
    color: #ffffff !important;
}

.btn-google-maps {
    background: #ffffff;
    color: #334155 !important;
    border: 1px solid #cbd5e1;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 11px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-google-maps:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a !important;
    transform: translateY(-2px);
}

/* Reviews Slider Container & Viewport */
.reviews-slider-container {
    position: relative;
    padding: 10px 0 50px 0;
    margin-top: 10px;
}

.reviews-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(226, 232, 240, 0.8);
    border-radius: 3px;
    overflow: hidden;
    z-index: 5;
}

.reviews-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4285F4, #f38f1e, #ec5d92);
    transition: width 0.1s linear;
}

.reviews-slider-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    padding: 15px 5px;
}

.reviews-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.review-card-slide {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 12px;
    box-sizing: border-box;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.review-card-slide.hidden-slide {
    display: none !important;
}

.review-card-slide .review-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.review-card-slide .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(243, 143, 30, 0.4);
}

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.google-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #1e293b;
    background: #e8f0fe;
    padding: 5px 10px;
    border-radius: 50px;
    border: 1px solid rgba(66, 133, 244, 0.25);
}

.review-time {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
}

.review-stars-row {
    margin-bottom: 14px;
}

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
    display: flex;
    gap: 3px;
}

.review-text {
    font-size: 0.96rem;
    line-height: 1.65;
    color: #334155;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.review-user-details h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.review-user-sub {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.review-footer-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-orange);
    background: rgba(243, 143, 30, 0.08);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    width: fit-content;
}

/* Slider Arrow Controls */
.reviews-nav-btn {
    position: absolute;
    top: calc(50% - 25px);
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-nav-btn:hover {
    background: var(--primary-orange);
    color: #ffffff;
    border-color: var(--primary-orange);
    box-shadow: 0 8px 25px rgba(243, 143, 30, 0.4);
    transform: translateY(-50%) scale(1.08);
}

.reviews-prev-btn {
    left: -18px;
}

.reviews-next-btn {
    right: -18px;
}

/* Slider Dots Indicator */
.reviews-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.review-dot.active {
    background: var(--primary-orange);
    width: 28px;
    border-radius: 5px;
}

/* Responsive Breakpoints for Slider */
@media (max-width: 1024px) {
    .review-card-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .reviews-prev-btn {
        left: -5px;
    }
    
    .reviews-next-btn {
        right: -5px;
    }
}

@media (max-width: 640px) {
    .google-rating-summary-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 18px;
    }

    .grs-main {
        flex-direction: column;
    }

    .grs-score-box {
        flex-direction: column;
        gap: 6px;
    }

    .grs-stars-wrapper {
        align-items: center;
    }

    .grs-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-google-write, .btn-google-maps {
        width: 100%;
        justify-content: center;
    }

    .review-card-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .reviews-prev-btn {
        left: 2px;
    }

    .reviews-next-btn {
        right: 2px;
    }
}