/* Custom CSS for LH Chong Dental */

/* === DESIGN SYSTEM VARIABLES === */
:root {
    /* Color Palette - Classic Medical (Light Blue) */
    --bg-body: #FFFFFF;        /* Clean White Background */
    --bg-card: #FFFFFF;        /* Pure White for Cards */
    --primary: #60A5FA;        /* Light Blue */
    --primary-light: #93C5FD;  /* Even Lighter Blue */
    --primary-dark: #3B82F6;   /* Slightly Darker Blue */
    --accent: #60A5FA;         /* Light Blue Accent */
    --accent-glow: rgba(96, 165, 250, 0.3);
    --text-primary: #1F2937;   /* Dark Grey Text */
    --text-secondary: #6B7280; /* Medium Grey */
    --white: #FFFFFF;
    --light-gray: #F3F4F6;     /* Light Grey for backgrounds */
    --border-color: #E5E7EB;   /* Subtle Grey Border */
    --border-radius: 12px;     /* Slightly less rounded for professional look */
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Playfair Display', serif;  /* Elegant Serif */
}

/* === ANIMATED GRADIENT TEXT WITH LUMINOUS GLOW === */
.gradient-text {
    background: linear-gradient(
        135deg,
        #1ebfad 0%,
        #5ed9ca 50%,
        #1ebfad 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    filter: drop-shadow(0 2px 8px rgba(30, 191, 173, 0.3));
    animation: gentle-bounce 3s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-8px);
    }
}

/* === GLOBAL BASE STYLES === */
html, body {
    background-color: var(--bg-body) !important;
    margin: 0;
    padding: 0;
}

/* Force all wrapper containers to be transparent */
.wp-site-blocks,
.site-main,
.entry-content,
#primary {
    background-color: transparent !important;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

/* Team Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-content: center;
}

.team-card {
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    padding: 3px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-info h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-size: 18px;
}



/* Testimonials Styles */
.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-info strong {
    display: block;
    font-size: 14px;
}

.author-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--light-gray);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Contact Page Styles */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.info-card {
    background: var(--cream);
    padding: 40px;
    border-radius: var(--border-radius);
    height: 100%;
}

.contact-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.map-section iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
    }
}
.category-title {
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.service-card-img {
    height: 180px;
    background: var(--light-gray);
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 20px;
}

.service-card-content h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.service-card-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px; /* Pill shape for modern look */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(120, 238, 197, 0.3); /* Mint glow */
}

.btn-primary {
    background-color: var(--primary);
    color: #0d5f47; /* Darker text for contrast on mint */
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(120, 238, 197, 0.5);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #0d5f47;
}

/* Card Styles - Clean White + Mint Border */
.card, .service-card, .review-card, .team-card, .feature-card {
    background: var(--white);
    border-radius: 16px; /* Softer roundness */
    padding: 24px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08); /* Soft diffuse shadow */
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card:hover, .service-card:hover, .review-card:hover, .team-card:hover, .feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary); /* Blue border on hover */
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
}


/* Header Styles */
.site-header {
    background: rgba(255, 255, 255, 0.98); /* Clean White Glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

/* Shrink header on scroll (optional JS enhancement) */
.site-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    height: 70px;  /* Bigger Logo */
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo:hover img {
    transform: scale(1.05);
}

/* Navigation - Premium Underline Effect */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

.main-navigation ul li a {
    text-decoration: none;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

/* Animated Underline */
.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.main-navigation ul li a:hover {
    color: var(--primary);
}

.main-navigation ul li a:hover::after {
    width: 100%;
}

/* Current Page Indicator */
.main-navigation ul li.current-menu-item a::after {
    width: 100%;
    background: var(--accent);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Search - Expandable Icon Style */
.header-search {
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 12px;
    width: 45px;           /* Collapsed: just icon size */
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Expand on hover OR when input is focused */
.search-form:hover,
.search-form:focus-within {
    width: 220px;          /* Expanded width */
    background: #fff;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.2);
    border-color: var(--primary);
    padding: 10px 16px;
}

.search-field {
    border: none;
    background: transparent;
    padding: 5px;
    outline: none;
    font-size: 15px;
    width: 0;              /* Hidden by default */
    opacity: 0;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Show input when form is expanded */
.search-form:hover .search-field,
.search-form:focus-within .search-field {
    width: 150px;
    opacity: 1;
}

.search-field::placeholder {
    color: var(--text-secondary);
}

.search-submit {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
    transition: opacity 0.3s;
    flex-shrink: 0;        /* Prevent icon from shrinking */
}

.search-submit:hover {
    opacity: 1;
}

/* Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    border: 1px solid #e5e7eb;
}

.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-primary);
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f0f9ff;
}

.result-name {
    font-weight: 500;
    font-size: 14px;
}

.result-category {
    font-size: 12px;
    color: var(--primary);
    background: #f0f9ff;
    padding: 4px 10px;
    border-radius: 20px;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Call Button - Circle Icon Style */
.header-contact .btn {
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.header-contact .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
}

/* Mobile Menu Toggle - Hamburger */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation (when open) */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}

/* Mobile Menu Container */
.mobile-menu-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(242, 235, 221, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mobile-menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-container ul li {
    border-bottom: 1px solid rgba(58, 58, 74, 0.1);
}

.mobile-menu-container ul li a {
    display: block;
    padding: 15px 0;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .main-navigation {
        display: none;
    }
    .header-search {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-menu-container.active {
        display: block;
    }
}


/* Footer Styles */
.site-footer {
    background-color: #f8f9fa; /* Light clean background */
    padding-top: 60px;
    border-top: 4px solid var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-col h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    color: var(--text-light);
    font-size: 14px;
}


/* Homepage Styles */

/* Hero Section - Premium Light Style */
.hero-section {
    height: 85vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Balanced Gradient Overlay - 18% Dark */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.18);
}

/* Hero Content - Glassmorphism Card */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px 80px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-content h1 {
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.2;
    font-size: 48px;
}

.hero-content h1 span {
    color: var(--primary);
    display: block;
    font-weight: 400;
    font-size: 32px;
    margin-top: 10px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-outline-white {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--primary);
    color: #fff;
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h1 span {
        font-size: 22px;
    }
}

/* === HERO PREMIUM ENHANCEMENTS === */

/* Animated Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(96, 165, 250, 0.3);
    border-radius: 50%;
    animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; width: 8px; height: 8px; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 3s; width: 12px; height: 12px; }
.particle:nth-child(3) { left: 60%; top: 30%; animation-delay: 6s; width: 6px; height: 6px; }
.particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 9s; width: 10px; height: 10px; }
.particle:nth-child(5) { left: 30%; top: 50%; animation-delay: 12s; width: 14px; height: 14px; }
.particle:nth-child(6) { left: 90%; top: 40%; animation-delay: 2s; width: 8px; height: 8px; }

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(10px); opacity: 0.6; }
    50% { transform: translateY(-20px) translateX(-10px); opacity: 0.4; }
    75% { transform: translateY(-40px) translateX(15px); opacity: 0.5; }
}

/* Decorative Floating Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(147, 197, 253, 0.1));
    animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float-shape {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

/* Open Now Indicator */
.open-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #16a34a;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.badge-icon {
    font-size: 16px;
}

.badge-text {
    font-weight: 500;
}

/* Quick Contact Floating Buttons */
.quick-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.quick-btn svg {
    width: 26px;
    height: 26px;
}

.quick-btn.whatsapp {
    background: #25D366;
}

.quick-btn.whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.quick-btn.phone {
    background: var(--primary);
}

.quick-btn.phone:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Mobile adjustments for trust badges */
@media (max-width: 768px) {
    .trust-badges {
        gap: 10px;
    }
    
    .badge-item {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .quick-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .quick-btn {
        width: 50px;
        height: 50px;
    }
}

/* Intro Section */
.intro-text {
    max-width: 800px;
    margin: 0 auto;
}

/* Why Choose Us - Banner Style */
.why-choose-us {
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.why-choose-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(37, 99, 235, 0.5) 100%);
}

.why-choose-content {
    position: relative;
    z-index: 1;
}

.why-choose-us .section-title,
.why-choose-us .section-subtitle {
    color: #fff;
}

/* Split Header Layout */
.why-choose-header {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.why-header-left {
    flex: 1;
}

.why-header-left .section-title {
    margin-bottom: 0;
    text-align: left;
}

.why-header-right {
    flex: 1;
}

.why-header-right .section-subtitle {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .why-choose-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .why-header-left .section-title {
        text-align: center;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    color: #fff;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 15px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
}

/* Responsive - Stack cards on smaller screens */
@media (max-width: 1000px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* [Legacy Typography Block Removed - Now Handled at Top of File] */

/* HERO SECTION - REDESIGNED PREMIUM */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px; /* Wider for centralized look */
    margin: 0 auto;   /* Perfect Center */
    text-align: center; /* Center Alignment */
    
    /* Glassmorphism Box */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Gradient Text Effect */
.hero-content h1 {
    font-size: 72px; /* Huge */
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    line-height: 1.1;
}

/* Make "We Are Open Daily" Pop */
.hero-content h1 span {
    display: block;
    font-size: 0.6em; /* Slightly smaller sub-line */
    background: linear-gradient(90deg, #78EEC5, #E0F7FA);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    margin-top: 10px;
}

.hero-content p {
    font-size: 24px;
    font-weight: 400;
    color: #F8F9FA;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center; /* Center buttons */
    gap: 20px;
}

/* Services Preview - Fixed 4-Column Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns */
    gap: 70px 25px; /* row-gap column-gap */
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* Animations Keyframes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(96, 165, 250, 0); }
    100% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0); }
}

/* === PREMIUM INTRO SECTION === */
.intro-section {
    background: var(--bg-body);
    overflow: hidden;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.intro-content {
    position: relative;
}

/* Top Badge */
.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

/* Title */
.intro-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.intro-title .highlight {
    color: var(--primary);
}

/* Lead Paragraph */
.intro-lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 20px;
}

/* Stats Row */
.intro-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Rating Stat Special Styling */
.stat-rating .stat-stars {
    display: block;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

/* Right Image Wrapper */
.intro-image-wrapper {
    position: relative;
}

/* Decorative Circle */
.intro-deco-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

/* Dual Photo Container */
.intro-photos {
    position: relative;
    min-height: 400px;
}

/* Main Image Frame (Shared) */
.intro-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.intro-img-frame:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 25px 70px rgba(96, 165, 250, 0.25);
}

.intro-img-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.intro-img-frame:hover img {
    transform: scale(1.05);
}

/* Main Image (Background) */
.intro-img-main {
    position: relative;
    z-index: 1;
    max-width: 380px;
}

/* Secondary Image (Overlapping) */
.intro-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -40px;
    z-index: 2;
    max-width: 250px;
    border: 5px solid #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 900px) {
    .intro-photos {
        min-height: auto;
    }
    
    .intro-img-secondary {
        position: relative;
        bottom: -20px;
        right: auto;
        margin-top: -30px;
        margin-left: auto;
        max-width: 200px;
    }
}

/* Floating Card */
.intro-float-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.float-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.float-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.float-text strong {
    color: var(--text-primary);
    font-size: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .intro-title {
        font-size: 32px;
    }
    
    .intro-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .intro-float-card {
        left: 20px;
        bottom: 20px;
    }
    
    .intro-deco-circle {
        display: none;
    }
}

/* Apply Pulse to Primary Buttons */
.btn-primary {
    background-color: var(--primary);
    color: #0d5f47;
    animation: pulse-glow 2s infinite; /* Heartbeat effect */
}

/* Service Card - Ultra Premium Design */
.service-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 25px 15px 20px;
    border-radius: 20px;
    box-shadow: 
        0 8px 30px -10px rgba(0,0,0,0.1),
        0 0 0 1px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Animated Gradient Border on Hover */
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.service-item:hover::before {
    transform: scaleX(1);
}

/* 3D Lift Effect */
.service-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px -20px rgba(96, 165, 250, 0.35),
        0 0 0 1px rgba(96, 165, 250, 0.1);
}

/* Icon Container - Gradient Circle */
.service-img-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8f4ff 100%);
    border-radius: 50%;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

/* Pulse Ring on Hover */
.service-img-wrap::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.service-item:hover .service-img-wrap::after {
    border-color: var(--primary-light);
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.service-item:hover .service-img-wrap {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(96, 165, 250, 0.05) 100%);
    transform: scale(1.05);
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-item:hover .service-img-wrap img {
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    transition: all 0.3s ease;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.service-item:hover h3 {
    color: var(--primary);
}

/* Section Spacing - "Clean Aesthetic" */
.section-padding {
    padding: 100px 0; /* More breathing room */
}

/* --- Visual Improvements: No More Boring White --- */

/* 1. Intro Section: Soft Gradient */
/* 1. Intro Section: Soft Gradient (Removed for Warm Theme) */
.intro-section {
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Intro Image Sizing */
.intro-img-frame {
    display: flex;
    justify-content: center;
    max-width: 500px; /* Constrain width */
    margin: 0 auto;
}

.intro-img-frame img {
    width: 100%;
    height: auto;
    max-height: 400px; /* Constrain height */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 2. Why Choose Us: Texture & Depth */
/* 2. Why Choose Us: Texture & Depth */
.why-choose-us {
    /* Background removed to show Khaki Base */
    position: relative;
}

.section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

/* 3. Services Preview: Clean Floating Cards */
.services-preview {
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Decorative Blob */
.services-blob {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    padding-bottom: 60%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Services Header */
.services-header {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: rgba(96, 165, 250, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
}

.section-subtitle-services {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 15px;
    font-weight: 400;
}

/* Services Section Title - Prominent */
.services-preview h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    padding-bottom: 20px; /* Space for decoration */
}

.services-preview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
}

/* View All Services Button Spacing */
.services-preview .text-center.mt-5 {
    margin-top: 80px !important;  /* More space above button */
}

/* 4. Team Preview - Differentiated Section */
.team-preview {
    background: var(--light-gray);  /* Light grey background */
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* New Split Layout for Team Section */
.team-split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left; /* Reset center align */
}

.team-text-side {
    flex: 1;
}

.team-image-side {
    flex: 1;
    position: relative;
}

.team-group-photo {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--primary-light); /* Offset "Graphic" shadow */
    transform: rotate(-2deg); /* Stylish tilt */
    transition: 0.5s;
}

.team-group-photo:hover {
    transform: rotate(0deg);
    box-shadow: 10px 10px 0px var(--primary-light);
}

@media (max-width: 900px) {
    .team-split-layout {
        flex-direction: column-reverse;
        text-align: center;
    }
}

/* Read More Link (Intro) */
.read-more-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.read-more-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary);
    transform: translateX(5px);
}

/* Location Banner */
.location-banner {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    position: relative;
    margin-top: 0;
}

.location-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
}

.location-banner::before {
    display: none; /* Using overlay div instead */
}

.banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.banner-box {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.banner-box h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.banner-box p {
    margin: 8px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Center Slogan */
.banner-slogan {
    flex: 1.5;
}

.banner-slogan h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 100px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }
    

    }


/* Page Header (Global - Clean Style) */
.page-header {
    background-size: cover;
    background-position: center;
    padding: 60px 0; /* Even smaller padding */
    text-align: center;
    color: var(--white);
    position: relative;
    background-color: var(--primary);
    margin-bottom: 40px;
}

.page-header h1 {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: 28px; /* Smaller, neat title */
    font-weight: 500; /* Lighter weight */
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Ensure NO overlay on inner pages */
.page-header::before {
    display: none !important;
    content: none !important;
}

/* Refined Typography Global Overrides */
body {
    font-family: var(--font-body);  /* Uses :root variable */
    font-weight: 400;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);  /* Uses :root variable (Poppins) */
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

h1 { font-size: 32px; font-weight: 600; }
h2 { font-size: 26px; font-weight: 600; margin-bottom: 20px; }
h3 { font-size: 18px; font-weight: 500; }
p { font-size: 15px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1.5em; }


/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.gallery-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* Inverse Section (Dark Background) */
.inverse-section {
    background-color: var(--primary); /* Dark Purple */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.inverse-section h2 { color: var(--white); }
.inverse-section p { color: rgba(255,255,255,0.8); }

/* Feature Chips for Inverse Section */
.inverse-section .feature-card {
    background: rgba(255,255,255, 0.05); /* Glassy dark */
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
}

.inverse-section .feature-card:hover {
    background: rgba(255,255,255, 0.1);
    transform: translateY(-5px);
}

.inverse-section .feature-icon svg {
    color: var(--accent); /* Mint Icon */
    filter: drop-shadow(0 0 10px rgba(127, 227, 194, 0.6));
}

/* Button Updates for New Theme */
.btn-primary {
    background-color: var(--primary);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: var(--primary-dark);
    color: #FFFFFF; /* White text on hover */
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.5); /* Blue Glow */
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

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

/* === Service Detail Page === */
.service-detail-view {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--text-secondary);
}

.back-link:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

.detail-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

.detail-img {
    flex: 1;
    display: flex;
    justify-content: center;
    background: #FAFAFA;
    border-radius: 20px;
    padding: 40px;
}

.detail-img img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.detail-content {
    flex: 1.5;
}

.service-desc-large {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.booking-cta {
    background: var(--bg-body); /* Khaki tint */
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(58, 58, 74, 0.05);
}

.booking-cta h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .detail-split {
        flex-direction: column;
    }
    .service-detail-view {
        padding: 30px;
    }
}

/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

/* Hero Section - Clean Minimal */
.about-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-primary);
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(147, 197, 253, 0.25) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: #d1e3ff;
    font-weight: 500;
    line-height: 1.6;
}

/* Decorative Lines */
.about-hero::before,
.about-hero::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 3px;
    background: var(--primary);
    opacity: 0.6;
}

.about-hero::before {
    top: 50px;
    left: 50px;
}

.about-hero::after {
    bottom: 50px;
    right: 50px;
}

/* Story Section */
.about-story {
    background: var(--bg-body);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: rgba(96, 165, 250, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
}

.story-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.story-content .lead {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.story-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Quick Info Bar - Horizontal */
.info-strip {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 30px;
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.info-chip {
    flex: 1;
    padding: 18px 15px;
    font-size: 13px;
    color: var(--text-primary);
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.info-chip:last-child {
    border-right: none;
}

.info-chip strong {
    display: block;
    color: var(--primary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.info-chip.highlight {
    background: var(--primary);
    color: #fff;
    border-right: none;
}

.info-chip.highlight strong {
    color: rgba(255,255,255,0.8);
}

.story-image {
    position: relative;
}

.story-img-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.story-img-frame img {
    width: 100%;
    display: block;
}

/* Circular Logo with 3D Flip */
.story-logo-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.story-logo-circle:hover {
    animation: spin360 3s linear infinite;
}

@keyframes spin360 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.story-logo-circle img {
    width: 100%;
    height: auto;
    object-fit: contain;
    backface-visibility: hidden;
}

.story-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary);
    color: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.4);
}

.story-badge .badge-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.story-badge .badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Divider */
.hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 20px auto;
    border-radius: 2px;
}

/* Timeline Section - Enhanced */
.about-timeline {
    background: linear-gradient(180deg, var(--light-gray) 0%, #fff 100%);
    padding: 100px 0;
    position: relative;
}

.about-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at center top, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light), transparent);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 70px;
    height: 35px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(96, 165, 250, 0.3);
}

.timeline-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    margin: 0;
}
/* Gallery Section - Enhanced */
.about-gallery {
    background: linear-gradient(180deg, #fff 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.about-gallery::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gallery-tabs {
    display: inline-flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    background: var(--light-gray);
    border-radius: 50px;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-tab {
    padding: 14px 35px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.gallery-tab:hover {
    color: var(--primary);
}

.gallery-tab.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

.gallery-content {
    display: none;
}

.gallery-content.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(96, 165, 250, 0.25);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Header */
.gallery-header {
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* CTA Section - Premium */
.about-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-deco-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.cta-deco-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -80px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.about-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.7;
    color: #a5d8ff;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #fff;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    color: var(--primary-dark);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
/* Responsive */
@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-badge {
        bottom: -20px;
        left: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
}

/* ========================================
   TEAM PAGE STYLES (PREMIUM REDESIGN)
   ======================================== */

/* Team Hero */
.team-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

.team-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(31, 41, 55, 0.4) 0%, rgba(31, 41, 55, 0.8) 100%);
}

/* Premium Grid Layout */
.team-grid.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Premium Dentist Card */
.team-card.premium-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(96, 165, 250, 0.2);
}

.team-img-wrapper {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: var(--light-gray);
}

.team-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card.premium-card:hover .team-img-wrapper img {
    transform: scale(1.05); /* Subtle zoom */
}

/* Team Social Icons Overlay */
.team-social {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-card.premium-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
}

/* Team Info */
.team-info {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.team-role {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 15px;
}

.team-divider {
    width: 40px;
    height: 3px;
    background: var(--light-gray);
    margin-bottom: 15px;
    border-radius: 2px;
    transition: width 0.3s ease, background 0.3s ease;
}

.team-card.premium-card:hover .team-divider {
    width: 60px;
    background: var(--primary);
}

.team-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Assistant Grid */
.assistants-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.assistant-card {
    text-align: center;
}

.assistant-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.assistant-card:hover .assistant-img {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.3);
}

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

.assistant-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.assistant-role {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
}

/* Responsive Team */
@media (max-width: 1024px) {
    .team-grid.premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .assistants-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid.premium-grid {
        grid-template-columns: 1fr;
    }
    .assistants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   TEAM PAGE REFINEMENT (PRO DESIGN)
   ======================================== */

/* Pro Hero Section */
.pro-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
    margin-bottom: 0;
}

.hero-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-shape-divider .shape-fill {
    fill: var(--bg-body);
}

.hero-content-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    position: relative;
    animation: boxGlow 3s ease-in-out infinite;
}

@keyframes boxGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(96, 165, 250, 0.3), 0 0 60px rgba(96, 165, 250, 0.1);
    }
    50% {
        box-shadow: 0 0 50px rgba(96, 165, 250, 0.5), 0 0 100px rgba(96, 165, 250, 0.2);
    }
}

.hero-content-box h1 {
    font-size: 48px;
    color: #fff;
    margin: 15px 0;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(96, 165, 250, 0.3);
    animation: textGlow 2.5s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(96, 165, 250, 0.2);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.7), 0 0 60px rgba(96, 165, 250, 0.4);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-divider-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    margin: 20px auto;
    border-radius: 2px;
    animation: lineShimmer 2s ease-in-out infinite;
}

@keyframes lineShimmer {
    0%, 100% { opacity: 0.6; width: 60px; }
    50% { opacity: 1; width: 80px; }
}

/* Professional Card (Unified Design) */
.pro-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.15s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    will-change: transform;
}

.pro-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.05);
}

.pro-img-wrapper {
    position: relative;
    padding-top: 100%; /* Square Aspect Ratio for Clean Look */
    overflow: hidden;
    background-color: var(--light-gray);
}

.pro-img-wrapper img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.pro-card:hover .pro-img-wrapper img {
    transform: scale(1.03);
}

/* Subtle overlay on hover - no shine */
.pro-img-wrapper::before {
    display: none;
}

.pro-overlay {
    display: none; /* Removed colored overlay */
}

/* Professional Card Effects */
.pro-card {
    position: relative;
}

.pro-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pro-card:hover::after {
    transform: scaleX(1);
}

/* Dentist Cards - Blue accent */
.pro-card.dentist-card::after {
    background: var(--primary);
}

.pro-card.dentist-card .pro-role {
    color: var(--primary);
}

/* Assistant Cards - Teal accent */
.pro-card.assistant-card::after {
    background: #14b8a6;
}

.pro-card.assistant-card .pro-role {
    color: #14b8a6;
}

.pro-card.assistant-card .pro-info {
    padding: 20px;
}

.pro-card.assistant-card .pro-info h4 {
    font-size: 18px;
}

.pro-info {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pro-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.pro-role {
    font-size: 13px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Assistant Specific styling (optional tweaks) */
.assistant-pro .pro-info {
    padding: 20px;
}
.assistant-pro .pro-info h4 {
    font-size: 18px;
}

/* Grids */
.pro-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pro-grid-4 {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns for 5 assistants */
    gap: 25px;
}

/* Responsive */
@media (max-width: 1024px) {
    .pro-grid-3, .pro-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pro-grid-3, .pro-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero-content-box {
        padding: 30px;
        width: 100%;
    }
    
    .hero-content-box h1 {
        font-size: 32px;
    }
}

/* ========================================
   TEAM SECTION ENHANCEMENTS
   ======================================== */

/* Team Section Headers */
.team-section .text-center,
.team-assistants-section .text-center {
    position: relative;
    padding-bottom: 20px;
}

.team-section h2,
.team-assistants-section h2 {
    font-size: 38px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.team-section .section-label,
.team-assistants-section .section-label {
    display: block;
    width: fit-content;
    margin: 0 auto 15px auto;
    background: rgba(96, 165, 250, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-section .section-lead,
.team-assistants-section .section-lead {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 15px auto 0;
}

/* Support Team Section Spacing */
.team-assistants-section {
    margin-top: 100px !important;
    padding-top: 60px;
    position: relative;
}

.team-assistants-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* Card Hover Enhancement */
.pro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pro-card:hover::before {
    transform: scaleX(1);
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Service Category Section */
.service-category-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-category-section:last-of-type {
    border-bottom: none;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.category-title h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.category-name-cn {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Modern Services Grid */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.service-card-modern {
    background: #fff;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.15);
    border-color: var(--primary);
}

.service-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
    font-size: 20px;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-circle {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.service-card-modern h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--text-primary);
}

.service-name-cn {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    border-radius: 20px;
    padding: 50px 30px;
    margin-top: 40px;
    color: #fff;
}

.services-cta h2 {
    color: #fff;
    margin-bottom: 10px;
}

.services-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.services-cta .btn-primary {
    background: #fff;
    color: var(--primary);
    font-weight: 600;
}

.services-cta .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

/* ========================================
   PREMIUM SERVICES CTA SECTION
   ======================================== */
.services-cta-premium {
    position: relative;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #7dd3fc 100%);
    border-radius: 30px;
    padding: 80px 50px;
    margin-top: 60px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

/* Animated Floating Icons */
.cta-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-float-icon {
    position: absolute;
    font-size: 30px;
    opacity: 0.15;
    animation: floatUpDown 6s ease-in-out infinite;
}

.cta-float-1 { top: 15%; left: 8%; animation-delay: 0s; }
.cta-float-2 { top: 25%; right: 12%; animation-delay: 1.5s; }
.cta-float-3 { bottom: 20%; left: 15%; animation-delay: 3s; }
.cta-float-4 { bottom: 25%; right: 8%; animation-delay: 4.5s; }

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Decorative Shapes */
.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    z-index: 0;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
    animation: pulseShape 8s ease-in-out infinite;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
    animation: pulseShape 8s ease-in-out infinite 4s;
}

@keyframes pulseShape {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* Content */
.cta-premium-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(30, 64, 175, 0.3);
    color: #1e40af;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(96, 165, 250, 0.2); }
    50% { box-shadow: 0 0 30px rgba(96, 165, 250, 0.4); }
}

.services-cta-premium h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: none;
}

.services-cta-premium p {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Premium Buttons */
.cta-premium-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(96, 165, 250, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-cta-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cta-glow:hover::before {
    left: 100%;
}

.btn-cta-glow:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(96, 165, 250, 0.6);
}

.btn-cta-glow .btn-icon {
    transition: transform 0.3s ease;
}

.btn-cta-glow:hover .btn-icon {
    transform: translateX(5px);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #1e40af;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(30, 64, 175, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* Sparkle Animation */
.cta-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: sparkleAnim 4s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 60%;
    right: 25%;
    animation-delay: 1.3s;
}

.sparkle:nth-child(3) {
    bottom: 30%;
    left: 40%;
    animation-delay: 2.6s;
}

@keyframes sparkleAnim {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .services-cta-premium {
        padding: 50px 25px;
        border-radius: 20px;
    }
    
    .services-cta-premium h2 {
        font-size: 28px;
    }
    
    .services-cta-premium p {
        font-size: 16px;
    }
    
    .cta-premium-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-glow,
    .btn-cta-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cta-float-icon {
        font-size: 24px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Services Grid with Images */
.category-title-simple {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.services-grid-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.service-card-image {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-img-container {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}

.service-img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-image:hover .service-img-container img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(96, 165, 250, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 50px;
}

.service-card-image:hover .service-overlay {
    opacity: 1;
}

.service-card-image h3 {
    padding: 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Service Detail Page */
.service-detail-page {
    max-width: 1000px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--text-primary);
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

/* Impressive Service Detail Page */
.service-detail-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-wrapper .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-detail-wrapper .back-link:hover {
    color: var(--text-primary);
    transform: translateX(-5px);
}

/* Hero Card */
.service-detail-hero {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.detail-hero-image {
    position: relative;
    height: 300px;
}

.detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.detail-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: #fff;
}

.detail-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.detail-hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #fff 0%, #a5d8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Body Content */
.service-detail-body {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.detail-description h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.detail-description p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* CTA Card */
.detail-cta-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(96, 165, 250, 0.05) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px;
    color: var(--text-primary);
}

.cta-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Simplified CTA */
.detail-cta-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    padding: 30px 40px;
    border-radius: 16px;
    color: #fff;
}

.detail-cta-simple .cta-text h3 {
    color: #fff;
    font-size: 22px;
}

.detail-cta-simple .cta-text p {
    color: rgba(255,255,255,0.9);
}

.detail-cta-simple .btn-primary {
    background: #fff;
    color: var(--primary);
    font-weight: 600;
    white-space: nowrap;
}

.detail-cta-simple .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

/* More Services Section */
.more-services-section {
    margin-top: 50px;
}

.more-services-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.more-services-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.more-services-slider::-webkit-scrollbar {
    display: none;
}

.more-service-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 200px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.more-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.more-service-img {
    height: 140px;
    overflow: hidden;
}

.more-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.more-service-card:hover .more-service-img img {
    transform: scale(1.05);
}

.more-service-card h4 {
    padding: 15px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: #fff;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.slider-btn:hover {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 768px) {
    .detail-hero-image {
        height: 220px;
    }
    
    .detail-hero-content {
        padding: 25px;
    }
    
    .detail-hero-content h1 {
        font-size: 26px;
    }
    
    .service-detail-body {
        padding: 25px;
    }
    
    .detail-cta-simple {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    
    .more-service-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 160px;
    }
}

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

/* Service Section Layout */
.service-section {
    margin-bottom: 60px;
    padding-bottom: 20px;
}

.service-section:last-of-type {
    margin-bottom: 40px;
}

.service-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid var(--primary);
}

/* Search Results Section */
.search-results-section {
    margin-bottom: 60px;
}

.search-results-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
}

.search-results-header h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.search-results-header p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.no-results-box {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 16px;
    border: 2px dashed #e5e7eb;
}

.no-results-box p:first-child {
    font-size: 24px;
    margin-bottom: 10px;
}

.no-results-box p:last-child {
    color: var(--text-secondary);
}

.service-category-badge {
    display: inline-block;
    background: #f0f9ff;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 8px;
}

/* ========================================
   DEDICATED SEARCH PAGE STYLES
   ======================================== */

.search-page-wrapper {
    padding: 60px 0 80px;
    min-height: 70vh;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.search-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.search-page-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.search-page-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.search-page-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.2);
}

.search-page-form input {
    flex: 1;
    border: none;
    padding: 16px 25px;
    font-size: 16px;
    outline: none;
}

.search-page-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 16px 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-page-form button:hover {
    background: var(--primary-dark);
}

.search-summary {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Empty State */
.search-empty-state {
    text-align: center;
    padding: 80px 20px;
}

.search-empty-state .empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.search-empty-state h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.search-empty-state p {
    color: var(--text-secondary);
}

/* No Results */
.search-no-results-page {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.search-no-results-page .no-results-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.search-no-results-page h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.search-no-results-page p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.search-no-results-page .suggestions {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 25px;
}

/* Search Results Grid */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.search-result-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.search-result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.15);
    border-color: var(--primary);
}

.result-card-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.result-card-content {
    flex: 1;
    padding: 0 20px;
}

.result-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--text-primary);
}

.result-category {
    display: inline-block;
    background: #f0f9ff;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.result-card-arrow {
    font-size: 20px;
    color: var(--primary);
    opacity: 0;
    transition: all 0.3s ease;
}

.search-result-card:hover .result-card-arrow {
    opacity: 1;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .search-results-grid {
        grid-template-columns: 1fr;
    }
    
    .search-page-header h1 {
        font-size: 28px;
    }
}

/* Services Grid - Homepage Style */
.services-grid-home {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px 20px; /* row-gap column-gap */
}

.services-grid-home .service-item-link,
.services-grid .service-item-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

@media (max-width: 1200px) {
    .services-grid-home {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid-home {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .services-grid-home .service-item {
        padding: 25px 15px 20px;
    }
    
    .services-grid-home .service-img-wrap {
        width: 100px;
        height: 100px;
    }
    
    .services-grid-home .service-item h3 {
        font-size: 13px;
    }
}

/* Compact Services Grid - All in One */
.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 0;
}

.service-card-compact {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.service-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.service-card-compact:hover::before {
    transform: scaleX(1);
}

.service-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.service-card-img {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.service-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
}

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

.service-card-text {
    padding: 12px 10px;
    text-align: center;
    background: #fff;
}

.service-card-text h3 {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card-compact:hover .service-card-text h3 {
    color: var(--primary);
}

/* Responsive Compact Grid */
@media (max-width: 1200px) {
    .services-grid-compact {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-compact {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .service-card-text {
        padding: 10px 8px;
    }
    
    .service-card-text h3 {
        font-size: 11px;
    }
}

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


/* ========================================
   CLEAN & MODERN TESTIMONIAL STYLES
   ======================================== */

/* Clean Hero */
.clean-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    margin-bottom: 50px;
}

.clean-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Simple dark overlay */
}

.clean-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.clean-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Platform Tabs with Icons */
.platform-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.platform-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid #e2e8f0;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.platform-tab svg {
    transition: all 0.3s ease;
}

/* Google Tab */
.platform-tab[data-filter="google"]:hover,
.platform-tab[data-filter="google"].active {
    border-color: #EA4335;
    background: #fff5f5;
    color: #EA4335;
}

.platform-tab[data-filter="google"]:hover svg,
.platform-tab[data-filter="google"].active svg {
    fill: #EA4335;
}

/* Facebook Tab */
.platform-tab[data-filter="facebook"]:hover,
.platform-tab[data-filter="facebook"].active {
    border-color: #1877F2;
    background: #f0f7ff;
    color: #1877F2;
}

.platform-tab[data-filter="facebook"]:hover svg,
.platform-tab[data-filter="facebook"].active svg {
    fill: #1877F2;
}

/* Clean Grid */
.clean-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Review Card */
.clean-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px 25px 25px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.clean-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.clean-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.clean-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.clean-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.clean-date {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

.clean-platform-icon {
    margin-left: auto;
    opacity: 0.7;
}

.clean-rating {
    color: #FFB400;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.clean-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .clean-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .clean-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .clean-hero h1 {
        font-size: 32px;
    }
}
