   /* ADD TO END OF style.css for doctor profiles PREMIUM upgrade */

/* ULTRA-PREMIUM DOCTOR PROFILE CARDS */
.service-card .circular-profile {
    position: relative !important;
    width: min(240px, 60vw) !important;
    height: min(240px, 60vw) !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    margin: 0 auto 30px !important;
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.25),
        0 0 0 12px rgba(255,122,0,0.2),
        inset 0 4px 20px rgba(255,255,255,0.8) !important;
    border: clamp(4px, 1.5vw, 8px) solid rgba(255,255,255,0.95) !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.service-card .circular-profile::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: conic-gradient(var(--primary-orange), var(--golden-yellow), var(--primary-orange-dark), var(--golden-yellow), transparent);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: profileGlowRotate 4s linear infinite;
    filter: blur(8px);
    transition: opacity 0.5s ease;
}

.service-card .circular-profile:hover {
    transform: translateY(-20px) scale(1.08) !important;
    box-shadow: 
        0 50px 120px rgba(0,0,0,0.35),
        0 0 0 20px rgba(255,122,0,0.3) !important;
}

.service-card .circular-profile:hover::before {
    opacity: 1;
}

.service-card .circular-profile img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.service-card .circular-profile:hover img {
    transform: scale(1.15) rotate(2deg) !important;
}

@keyframes profileGlowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card:hover .circular-profile {
    animation: profilePulse 2s ease-in-out infinite;
}

@keyframes profilePulse {
    0%, 100% { box-shadow: 0 30px 80px rgba(0,0,0,0.25), 0 0 0 12px rgba(255,122,0,0.2); }
    50% { box-shadow: 0 40px 100px rgba(0,0,0,0.3), 0 0 0 16px rgba(255,122,0,0.25); }
}

/* Team section enhancements */
.about section .services-grid {
    gap: 40px;
}

@media (max-width: 768px) {
    .service-card .circular-profile {
        width: 200px !important;
        height: 200px !important;
    }
}
    letter-spacing: 0.2px;
}
.medical-aid-list li:hover {
    background: var(--primary-orange-light);
    color: var(--white);
    border-color: var(--primary-orange);
    box-shadow: 0 4px 16px rgba(255, 122, 0, 0.13);
}
/* ============================================
   MEDICAL AID LIST (HOME PAGE)
   ============================================ */
.medical-aid-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    justify-content: center;
    align-items: center;
    margin: 24px 0 0 0;
    padding: 0;
    list-style: none;
}
.medical-aid-list li {
    background: var(--white-off);
    border: 2px solid var(--primary-orange-light);
    border-radius: var(--border-radius-sm);
    padding: 10px 22px;
    font-size: 1.05rem;
    color: var(--text-gray);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.07);
    transition: background 0.2s, border 0.2s, color 0.2s;
}
.medical-aid-list li:hover {
    background: var(--primary-orange-light);
    color: var(--white);
    border-color: var(--primary-orange);
}
/* ============================================
   MEDICAL AID SEGMENT
   ============================================ */
.medical-aid-segment {
    background: var(--white-off);
    padding: 60px 0;
}

.medical-aid-box {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.medical-aid-title {
    font-size: 2rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-weight: 600;
    text-align: center;
}

.medical-aid-img {
    width: 100%;
    max-width: 900px;
    height: 350px;
    object-fit: contain;
    border-radius: var(--border-radius);
    border: 4px solid var(--primary-orange-light);
    box-shadow: 0 8px 32px rgba(255, 122, 0, 0.10);
    background: var(--white-off);
    display: block;
}
/* ============================================
   DENTIST NEAR YOU - MAIN STYLESHEET
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-orange: #FF7A00;
    --primary-orange-dark: #E56B00;
    --primary-orange-light: #FF9333;
    --golden-yellow: #FFD43B;
    --golden-yellow-light: #FFE566;
    --white: #FFFFFF;
    --white-off: #F8F9FA;
    --white-dark: #E9ECEF;
    --text-dark: #1A1A2E;
    --text-gray: #4A4A68;
    --text-light: #6C757D;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
}

/* ============================================
   ENHANCED ENGAGING LOADING SCREEN
   ============================================ */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
background: #FFFFFF;
    /* Removed heavy gradient animation for performance */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.loader-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,122,0,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,212,59,0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255,122,0,0.03) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.loader-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.loader-particle {
    position: absolute;
    color: var(--primary-orange);
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
filter: drop-shadow(0 0 4px rgba(255,122,0,0.3));
    font-size: clamp(1rem, 3vw, 2rem);
    transform-origin: center;
}

.loader-particle.p1 { top: 10%; left: 10%; --size: 1; animation-delay: var(--delay, 0s); animation-duration: 7s; }
.loader-particle.p2 { top: 20%; right: 15%; --size: 0.8; animation-delay: var(--delay, -0.3s); animation-duration: 6.5s; }
.loader-particle.p3 { top: 60%; left: 5%; --size: 1.2; animation-delay: var(--delay, -0.6s); animation-duration: 7.5s; }
.loader-particle.p4 { bottom: 30%; right: 20%; --size: 0.9; animation-delay: var(--delay, -0.9s); animation-duration: 6.8s; }
.loader-particle.p5 { top: 40%; left: 3%; --size: 1.1; animation-delay: var(--delay, -1.2s); animation-duration: 7.2s; }
.loader-particle.p6 { bottom: 50%; left: 15%; --size: 0.7; animation-delay: var(--delay, -1.5s); animation-duration: 6.2s; }
.loader-particle.p7 { top: 70%; right: 30%; --size: 0.6; animation-delay: var(--delay, -1.8s); animation-duration: 5.8s; color: var(--golden-yellow); }
.loader-particle.p8 { bottom: 20%; right: 10%; --size: 0.5; animation-delay: var(--delay, -2.1s); animation-duration: 5.5s; color: var(--golden-yellow); }
.loader-particle.p9 { top: 30%; left: 70%; --size: 0.4; animation-delay: var(--delay, -2.4s); animation-duration: 6s; color: var(--golden-yellow-light); }
.loader-particle.p10 { bottom: 40%; left: 80%; --size: 0.8; animation-delay: var(--delay, -2.7s); animation-duration: 6.8s; color: var(--golden-yellow); }
.loader-particle.p11 { top: 5%; right: 5%; --size: 1.3; animation-delay: var(--delay, -3s); animation-duration: 8s; }
.loader-particle.p12 { bottom: 10%; left: 50%; --size: 0.95; animation-delay: var(--delay, -3.3s); animation-duration: 7s; }

.loader-sparkle-emitters {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.loader-sparkle-emitters::before,
.loader-sparkle-emitters::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--golden-yellow);
    border-radius: 50%;
    animation: sparkleEmit 2s linear infinite;
    box-shadow: 0 0 6px var(--golden-yellow);
}

.loader-sparkle-emitters::before { top: 40%; left: 50%; animation-delay: -1s; }
.loader-sparkle-emitters::after { top: 50%; left: 45%; animation-delay: -0.5s; }

.loader-content {
    text-align: center;
    position: relative;
    z-index: 10;
    animation: contentSlideUp 1s ease-out 0.5s both;
}

.loader-logo-container {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.loader-logo {
    width: clamp(120px, 25vw, 200px);
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255,122,0,0.4));
    animation: logoGlow 2s ease-in-out infinite alternate, logoRotateIn 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.8s both;
    transform-origin: center;
}

.loader-shine {
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-20deg);
    animation: shineSweep 2.5s ease-in-out infinite;
    border-radius: 50%;
    pointer-events: none;
}

.loader-title-container {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
}

.loader-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-orange), var(--golden-yellow), var(--primary-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleStagger 2s steps(20) 1s both, titleGlow 1.5s ease-in-out infinite alternate 2s;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(255,122,0,0.3);
}

.title-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: titleShineSweep 3s ease-in-out infinite 2.5s;
    pointer-events: none;
}

.loader-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 2.5rem;
    animation: subtitleFadeSlide 1s ease-out 1.8s both;
    letter-spacing: 0.02em;
}

.loader-progress {
    width: clamp(180px, 35vw, 280px);
    height: 6px;
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.loader-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: progressShine 1.5s ease-in-out infinite;
    z-index: 1;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--golden-yellow) 50%, var(--primary-orange-dark) 100%);
    border-radius: 10px;
    animation: enhancedProgress 3s cubic-bezier(0.4,0,0.6,1) infinite;
    box-shadow: 0 0 20px rgba(255,122,0,0.6);
    position: relative;
    z-index: 2;
}

.loader-progress-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--golden-yellow) 20%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: barPulse 0.6s ease-in-out infinite alternate;
}

/* Keyframe Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
    33% { transform: translate(30px, -30px) rotate(120deg); opacity: 0.4; }
    66% { transform: translate(-20px, 20px) rotate(240deg); opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg) scale(var(--size, 1));
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
        transform: translateY(-20vh) rotate(360deg) scale(var(--size, 1) * 1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-120vh) rotate(720deg) scale(var(--size, 1) * 0.5);
    }
}

@keyframes sparkleEmit {
    0% {
        transform: translate(0, 0) scale(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--random-x, 50px), var(--random-y, -50px)) scale(0) rotate(720deg);
        opacity: 0;
    }
}

@keyframes contentSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 0 20px rgba(255,122,0,0.4)); }
    to { filter: drop-shadow(0 0 40px rgba(255,122,0,0.8)) brightness(1.1); }
}

@keyframes logoRotateIn {
    from { opacity: 0; transform: rotate(-180deg) scale(0.5); }
    to { opacity: 1; transform: rotate(0deg) scale(1); }
}

@keyframes shineSweep {
    0% { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(300%) skewX(-20deg); }
}

@keyframes titleStagger {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0 0 0); }
}

@keyframes titleGlow {
    from { text-shadow: 0 0 20px rgba(255,122,0,0.3); }
    to { text-shadow: 0 0 30px rgba(255,122,0,0.6), 0 0 40px rgba(255,212,59,0.4); }
}

@keyframes titleShineSweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes subtitleFadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes enhancedProgress {
    0% {
        width: 0%;
        background-position: 0%;
    }
    50% {
        width: 85%;
        background-position: 100%;
    }
    100% {
        width: 0%;
        background-position: 200%;
    }
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

@keyframes barPulse {
    from { transform: translate(-50%, -50%) scale(1); }
    to { transform: translate(-50%, -50%) scale(1.3); }
}

/* Responsive */
@media (max-width: 768px) {
    .loader-particle { font-size: clamp(0.8rem, 2.5vw, 1.5rem); }
    .loader-title { font-size: clamp(1.5rem, 5vw, 2rem); }
    .loader-progress { height: 5px; }
}

@media (max-width: 480px) {
    .loader-logo { width: clamp(100px, 30vw, 150px); }
    .loader-particle { animation-duration: 8s; }
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Mobile-optimized aesthetic border */
    border: clamp(1px, 0.3vw, 3px) solid var(--white);
    border-radius: clamp(4px, 1vw, var(--border-radius-sm));
    box-shadow: clamp(0 1px 5px, 0 2px 10px, var(--shadow-sm));
}

@media (max-width: 480px) {
    img {
        border-width: 1px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--primary-orange);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--golden-yellow));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-orange);
}

.btn-yellow {
    background: var(--golden-yellow);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 212, 59, 0.3);
}

.btn-yellow:hover {
    background: var(--golden-yellow-light);
    transform: translateY(-2px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-orange), var(--golden-yellow));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.logo span {
    color: var(--primary-orange);
}

.logo-img {
    width: 120px;
    height: 120px;
    width: 120px;
    border: none; /* No border for logo */
    height: 120px;
    animation: logoBounce 14s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
    object-fit: contain;
    border: none; /* No border for logo */
    box-shadow: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 12px 24px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-btn {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--white-off) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

/* Page Header - Hero Sections (About, Services, Contact) */
.page-header {
    padding: 150px 0 100px;
    background: var(--text-dark);
    position: relative;
    overflow: hidden;
    filter: grayscale(100%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Page Header Content - Centered */
.page-header-content {
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-header h1 span {
    color: var(--primary-orange);
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 193, 7, 0.95);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.page-header .breadcrumb a {
    color: var(--primary-orange);
    font-weight: 500;
    transition: var(--transition);
}

.page-header .breadcrumb a:hover {
    color: var(--golden-yellow);
}

.page-header .breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 140%;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(255, 212, 59, 0.08) 100%);
    border-radius: 50%;
    z-index: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--golden-yellow);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-title span {
    color: var(--primary-orange);
    background: linear-gradient(90deg, var(--primary-orange), var(--golden-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start; /* Fix gap from removed stat */
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.hero-stat-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.hero-image-main {
    width: 100%;
    height: clamp(250px, 40vh, 500px);
    background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--golden-yellow-light) 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Added aesthetic container border */
    border: 8px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-lg);
}

.hero-image-main::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.hero-image-main::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
}

.hero-image-icon {
    font-size: 8rem;
    color: var(--white);
    z-index: 1;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
    /* Aesthetic card border */
    border: 1px solid var(--white-dark);
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        background: linear-gradient(180deg, var(--white) 0%, var(--white-off) 60%, var(--primary-orange-light) 100%);
        text-align: center;
    }
    
    .hero-inner {
        gap: 2rem;
    }
    
    .hero-badge {
        background: rgba(255,255,255,0.9);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.5);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .hero-title {
        font-size: 2.6rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--text-dark), var(--primary-orange));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
        text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .hero-text {
        font-size: 1.1rem;
        max-width: 90%;
        margin: 0 auto 2rem;
        color: var(--text-gray);
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 340px;
        margin: 0 auto 2.5rem;
    }
    
    .hero-buttons .btn {
        padding: 16px 24px;
        font-size: 1.05rem;
        border-radius: 50px;
        box-shadow: 0 8px 25px rgba(255,122,0,0.3);
    }
    
    .hero-buttons .btn-primary {
        background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    }
    
    .hero-buttons .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(255,122,0,0.4);
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 2.5rem;
        position: relative;
    }
    
    .hero-image img {
        border-radius: 25px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        border: 6px solid rgba(255,255,255,0.8);
    }
    
    .hero-stats {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 2rem;
    }
    
    .hero-stat {
        background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.9));
        backdrop-filter: blur(15px);
        border: 2px solid var(--primary-orange-light);
        border-radius: 20px;
        padding: 1.5rem 1.2rem;
        box-shadow: 0 10px 40px rgba(255,122,0,0.15);
        transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
        flex: 1;
        min-width: 130px;
        max-width: 160px;
        position: relative;
        overflow: hidden;
    }
    
    .hero-stat::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-orange), var(--golden-yellow));
    }
    
    .hero-stat:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 20px 60px rgba(255,122,0,0.25);
        border-color: var(--primary-orange);
    }
    
    .hero-stat-number {
        font-size: 1.7rem;
        font-weight: 800;
        color: var(--primary-orange);
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .hero-stat-text {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-gray);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .hero-floating-card {
        display: none !important;
    }
}

.hero-floating-card.card-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 1.5s;
}

.hero-floating-icon {
    width: 40px;
    height: 40px;
    background: var(--golden-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.hero-floating-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-floating-text p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--white-off);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--white-off) 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid rgba(255, 122, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 340px;
    transition: var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-orange), var(--golden-yellow));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.25);
    border-color: var(--primary-orange);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 212, 59, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: var(--primary-orange);
    transition: var(--transition);
    border: 3px solid rgba(255, 122, 0, 0.3);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.15);
}

.service-card:hover .service-icon {
    background: var(--primary-orange-light);
    color: var(--primary-orange-dark);
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.25);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0 25px 0;
    text-align: left;
}

.service-checklist li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 12px;
    font-size: 0.98rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

.service-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,122,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-checklist li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: white;
    font-size: 0.8rem;
    z-index: 2;
}

.service-link {
    color: var(--primary-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    gap: 10px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Auto-adjust for removed stat */
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--white);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    padding: 12px;
    background: var(--white);
    border-radius: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--white-dark);
    position: relative;
    transition: var(--transition);
}

.about-image-main {
    width: 100%;
    height: clamp(220px, 35vh, 450px);
    border: 8px solid var(--primary-orange);
    border-radius: 25px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-image-icon {
    font-size: 10rem;
    color: var(--primary-orange);
}

.about-image-badge {
    position: absolute;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
    bottom: 20px;
    right: -10px;
    border: 5px solid var(--white);
    z-index: 10;
}

.about-image-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.about-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(255, 122, 0, 0.15);
}

.about-image-badge h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.about-image-badge p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content h2 span {
    color: var(--primary-orange);
}

.about-content > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 30px;
    height: 30px;
    background: var(--golden-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.about-feature p {
    font-weight: 500;
    color: var(--text-dark);
}

.about-logos {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--white-dark);
}

.about-logos p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.logos-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-item {
    padding: 10px 20px;
    background: var(--white-off);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.85rem;
    border: 1px solid var(--white-dark);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
    background: var(--white-off);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 100%;
    padding: 0 15px;
}

.review-inner {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.02);
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--golden-yellow);
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--golden-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.review-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.review-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.reviews-nav button {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-orange);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.reviews-nav button:hover {
    background: var(--primary-orange);
    color: var(--white);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white-off);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--white-dark);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-question i {
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--primary-orange);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 25px 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-image {
    position: sticky;
    top: 100px;
}

.faq-image-main {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--golden-yellow-light) 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 8px solid rgba(255, 122, 0, 0.1);
}

.faq-image-icon {
    font-size: 8rem;
    color: var(--white);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--golden-yellow) 0%, var(--golden-yellow-light) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--white-off);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.02);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 212, 59, 0.1) 100%);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 122, 0, 0.2);
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.contact-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--white-off);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition);
    border: 1px solid var(--white-dark);
}

.social-link:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.02);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-form > p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--white-dark);
    border-radius: var(--border-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-map {
    margin-top: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
    background: var(--white-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.footer h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--primary-orange);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}



/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page {
    padding: 80px 0;
    background: var(--white);
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

@media (max-width: 1024px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
}

/* Services Page Cards - Premium Dental Design */
.service-page-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(248,249,250,0.8));
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(255,122,0,0.15), 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,122,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 320px;
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    position: relative;
    overflow: hidden;
}

.service-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--golden-yellow), var(--primary-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-page-card:hover::before {
    transform: scaleX(1);
}

.service-page-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 80px rgba(255,122,0,0.25), 0 15px 35px rgba(0,0,0,0.12);
    border-color: var(--primary-orange);
}

.service-page-image {
    position: relative;
    margin-bottom: 2rem;
    width: clamp(90px, 22vw, 110px);
    height: clamp(90px, 22vw, 110px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-page-icon-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,122,0,0.15) 0%, rgba(255,212,59,0.1) 50%, rgba(255,122,0,0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 2.8rem;
    box-shadow: 
        0 0 0 3px rgba(255,255,255,0.9),
        0 8px 25px rgba(255,122,0,0.2),
        inset 0 1px 5px rgba(255,255,255,0.4);
    transition: all 0.4s ease;
    position: relative;
}

.service-page-icon-bg::before {
    content: '';
    position: absolute;
    inset: 6px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: innerGlow 2s ease-in-out infinite alternate;
}

.service-page-icon-bg i {
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    filter: drop-shadow(0 4px 12px rgba(255,122,0,0.4));
    position: relative;
    z-index: 2;
    font-size: 2.8rem;
}

.service-page-card:hover .service-page-icon-bg {
    background: linear-gradient(135deg, rgba(255,122,0,0.25) 0%, rgba(255,212,59,0.2) 50%, rgba(255,122,0,0.25) 100%);
    transform: translateY(-8px);
    box-shadow: 
        0 0 0 4px rgba(255,255,255,0.95),
        0 15px 40px rgba(255,122,0,0.3),
        inset 0 2px 8px rgba(255,255,255,0.5);
}

.service-page-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.service-page-content p,
.service-page-content ul {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-page-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: grid;
    gap: 0.5rem;
}

.service-page-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.3rem;
}

.service-page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,122,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-page-card .btn {
    margin-top: auto;
    box-shadow: 0 5px 20px rgba(255,122,0,0.3);
}

.service-page-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,122,0,0.5);
}

/* Keyframe Animations */
@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255,255,255,0.8), 0 20px 50px rgba(255,122,0,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255,255,255,0.9), 0 25px 60px rgba(255,122,0,0.6); }
}

@keyframes innerGlow {
    from { transform: scale(0.8); opacity: 0.6; }
    to { transform: scale(1.1); opacity: 1; }
}

@keyframes bulletPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@media (max-width: 768px) {
    .service-page-card {
        padding: 2rem 1.5rem;
        min-height: 300px;
    }
    
    .service-page-icon-bg {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
}





/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes logoBounce {
    0%, 10%, 20%, 90%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
    30%, 40% {
        transform: translateY(-8px) scale(1.03) rotate(-1deg);
    }
    60%, 70% {
        transform: translateY(-12px) scale(1.05) rotate(1deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 30px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-text {
        margin: 0 auto 30px;
    }

    .hero-buttons, .hero-stats {
        justify-content: center;
    }
    
    .hero-floating-card.card-1 {
        left: 0;
        top: 10%;
    }

    .hero-floating-card.card-2 {
        right: 0;
        bottom: 10%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-image {
        position: relative;
        top: 0;
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title h2, .hero-title, .page-header h1 {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 20px;
    }
    
    .header-inner {
        padding: 10px 0;
    }
    
.logo-img {
        width: 90px;
        height: 90px;
        animation: logoBounce 14s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    }
.logo-img {
        width: 90px;
        height: 90px;
    }
    
    .logo {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding: 30px 20px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s ease-in-out;
        display: flex !important;
    }
    
    .nav-menu .nav-link {
        font-size: 1.2rem;
        padding: 10px 20px;
        display: block !important;
        width: 100%;
        text-align: center;
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-btn {
        display: inline-flex;
    }

    .nav-menu .nav-btn {
        margin-top: 15px;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }
    
    .hero::before {
        display: none;
    }

    .hero-image-main {
        height: 400px;
    }

    .hero-floating-card {
        padding: 10px 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image-badge {
        left: 10px;
        bottom: 10px;
    }
    
    .reviews-slider {
        padding: 0;
    }
    
    .review-inner {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about .logo,
    .footer-social {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title h2, .hero-title, .page-header h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn {
        width: 100%;
    }

    .hero-image-main {
        height: 300px;
    }
    
    .hero-floating-card {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    
    .review-card {
        padding: 0;
    }
    
    .review-author {
        flex-direction: column;
        gap: 10px;
    }

    .contact-form,
    .contact-info {
        padding: 25px;
    }
@media (max-width: 768px) {

    /* HERO SECTION MOBILE REDESIGN */
    .hero {
        min-height: 100vh;
        padding: 120px 20px 60px 20px;
        background: linear-gradient(135deg, #FF7A00 0%, #FF9333 40%, #FFD43B 100%);
        text-align: center;
        display: flex;
        align-items: center;
    }

    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1), transparent 40%);
        z-index: 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        position: relative;
        z-index: 1;
    }

    /* Hide image */
    .hero-image {
        display: none;
    }

    /* Badge */
    .hero-badge {
        margin: 0 auto 15px auto;
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.3);
        color: white;
    }

    /* Title */
    .hero-title {
        font-size: 2.3rem;
        line-height: 1.3;
        color: white;
        margin-bottom: 15px;
    }

    .hero-title span {
        color: white;
        -webkit-text-fill-color: white;
        background: none;
    }

    /* Text */
    .hero-text {
        font-size: 1rem;
        color: rgba(255,255,255,0.95);
        max-width: 95%;
        margin: 0 auto 25px auto;
    }

    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 30px auto;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 16px;
        font-size: 1rem;
        border-radius: 40px;
    }

    .btn-primary {
        background: white;
        color: #FF7A00;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .btn-secondary {
        border: 2px solid white;
        color: white;
    }

    /* Stats */
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 10px;
    }

    .hero-stat {
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.3);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 18px 10px;
    }

    .hero-stat-number {
        color: white;
        font-size: 1.5rem;
        font-weight: 800;
    }

    .hero-stat-text {
        color: white;
        font-size: 0.8rem;
    }/* FIX HERO TITLE ON MOBILE */
.hero-title {
    font-size: 2.4rem;
    line-height: 1.25;
    color: white;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-title span {
    color: #FFE5B4; /* soft light orange highlight */
    -webkit-text-fill-color: #FFE5B4;
    background: none;
}

/* Optional: make one word stand out */
.hero-title .highlight {
    color: #fff;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.25);
    border-radius: 10px;
    z-index: -1;
}.hero-buttons {
    position: relative;
    z-index: 2;
}.hero-buttons .btn-primary {
    background: white;
    color: #FF7A00;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-buttons .btn-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}.hero-buttons .btn:active {
    transform: scale(0.97);
}@media (max-width: 768px) {

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .about-image {
        width: 100%;
        order: -1; /* This puts the image ABOVE the text on mobile */
    }

    .about-image-main {
        width: 100%;
        min-height: 250px;
        border-radius: 20px;
    }

    .about-content {
        text-align: center;
    }

    .about-features {
        align-items: center;
    }

    .about-feature {
        justify-content: center;
    }

    .about-content .btn {
        margin: 20px auto 0 auto;
        display: inline-block;
    }
}@media (max-width: 768px) {

    .about-image-badge {
        position: absolute;
        right: 15px;
        bottom: 15px;
        padding: 8px 12px;
        border-radius: 12px;
    }

    .about-image-badge-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .about-image-badge h4 {
        font-size: 14px;
        margin: 0;
    }

    .about-image-badge p {
        font-size: 11px;
        margin: 0;
    }
}
}.dental-bg, .dental-bg-icons {
    position: fixed; /* full viewport coverage */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: -1; /* behind everything */
}

.dental-bg .tooth-icon, .dental-bg-icons .tooth-icon {
    position: absolute;
    font-size: clamp(60px, 8vw, 100px);
    background: linear-gradient(135deg, var(--primary-orange), var(--golden-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255,165,0,0.4));
    animation: dentalFloat 25s ease-in-out infinite;
}

/* 10 randomized positions */
.dental-bg .tooth-icon:nth-child(1), .dental-bg-icons .tooth1 { top: 10%; left: 10%; animation-duration: 28s; animation-delay: 0s; }
.dental-bg .tooth-icon:nth-child(2), .dental-bg-icons .tooth2 { top: 20%; left: 80%; animation-duration: 32s; animation-delay: -2s; }
.dental-bg .tooth-icon:nth-child(3), .dental-bg-icons .tooth3 { top: 40%; left: 5%; animation-duration: 30s; animation-delay: -5s; }
.dental-bg .tooth-icon:nth-child(4), .dental-bg-icons .tooth4 { top: 70%; left: 85%; animation-duration: 27s; animation-delay: -8s; }
.dental-bg .tooth-icon:nth-child(5), .dental-bg-icons .tooth5 { top: 85%; left: 20%; animation-duration: 35s; animation-delay: -12s; }
.dental-bg .tooth-icon:nth-child(6) { top: 15%; left: 65%; animation-duration: 29s; animation-delay: -15s; }
.dental-bg .tooth-icon:nth-child(7) { top: 50%; left: 90%; animation-duration: 31s; animation-delay: -18s; }
.dental-bg .tooth-icon:nth-child(8) { top: 75%; left: 15%; animation-duration: 33s; animation-delay: -21s; }
.dental-bg .tooth-icon:nth-child(9) { top: 35%; left: 40%; animation-duration: 26s; animation-delay: -24s; }
.dental-bg .tooth-icon:nth-child(10) { bottom: 20%; left: 70%; animation-duration: 34s; animation-delay: -27s; }

/* Enhanced floating + sway + glow pulse */
@keyframes dentalFloat {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(0deg) scale(1); 
        opacity: 0.12; 
    }
    25% { 
        transform: translateY(-30px) translateX(-10px) rotate(10deg) scale(1.05); 
        opacity: 0.2; 
    }
    50% { 
        transform: translateY(-15px) translateX(15px) rotate(-5deg) scale(1.1); 
        opacity: 0.18; 
    }
    75% { 
        transform: translateY(-25px) translateX(-5px) rotate(8deg) scale(1.03); 
        opacity: 0.22; 
    }
}

/* Ensure content layers above */
body { position: relative; z-index: 1; }
.hero, .about, .services, .stats, .reviews, .faq, .cta, .contact { position: relative; z-index: 2; }
.loader-overlay { z-index: 9999; }
