/* Professional Corporate Theme with Golden Yellow Accent */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #fbbf24;
    --accent-dark: #f59e0b;
    --success-color: #10b981;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}


/* Public Website Styles */


/* Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s;
    background: white !important;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.logo-container {
    position: relative;
    width: 50px;
    height: 50px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
}

.logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.logo-fallback i {
    display: block;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover:after {
    width: 80%;
}

.nav-link:hover {
    color: var(--accent-dark) !important;
}

/* Professional Hero Section - Clean & Corporate */
.hero-section-elegant {
    position: relative;
    padding-top: 140px;
    padding-bottom: 120px;
    background: linear-gradient(to bottom right, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.08;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 0px,
            transparent 1px,
            transparent 40px,
            rgba(255, 255, 255, 0.05) 41px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.05) 0px,
            transparent 1px,
            transparent 40px,
            rgba(255, 255, 255, 0.05) 41px
        );
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at top right,
        rgba(59, 130, 246, 0.1) 0%,
        transparent 50%
    );
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.hero-shape.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(
        circle,
        rgba(96, 165, 250, 0.4) 0%,
        transparent 70%
    );
}

.hero-shape.shape-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.3) 0%,
        transparent 70%
    );
}

.hero-shape.shape-3 {
    width: 400px;
    height: 400px;
    top: 40%;
    left: 30%;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.2) 0%,
        transparent 70%
    );
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.page-header .section-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

/* Hero Badge Elegant */
.hero-badge-elegant {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 2rem;
    border: 2px solid var(--accent-color);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 0 30px rgba(251, 191, 36, 0.5);
    animation: fadeInDown 0.8s ease-out, glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            0 0 30px rgba(251, 191, 36, 0.4);
        border-color: var(--accent-color);
    }
    to {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            0 0 50px rgba(251, 191, 36, 0.7);
        border-color: var(--accent-dark);
    }
}

.hero-badge-elegant i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update hero title and highlight with professional styling */
.hero-title-elegant {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-highlight {
    display: block;
    color: var(--accent-color);
    font-weight: 900;
    position: relative;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-dark));
    border-radius: 2px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.2);
    border-color: var(--accent-color);
}

.service-icon-wrapper {
    margin-bottom: 1.5rem;
}

/* Service Icons with Blue-to-Yellow Gradient */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.service-icon i {
    display: block;
}

.service-icon svg,
.service-detail-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.dental-icon svg {
    width: 50px;
    height: 50px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.service-features li i {
    color: var(--accent-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 1rem;
    color: var(--accent-color);
}

.service-link i {
    color: var(--accent-color);
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.feature-item h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 1;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Team Cards */
.team-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.2);
}

.team-avatar {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.team-avatar i {
    display: block;
}

.team-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Primary Buttons with Yellow Accent */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
}

/* CTA Section with Yellow Gradient */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 5rem 0;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Footer */
.footer {
    margin-top: 3rem;
    background: #1e293b;
    color: rgba(255, 255, 255, 0.9);
}

.footer h5 {
    color: white;
    font-weight: 700;
}

.footer p,
.footer .small {
    color: rgba(255, 255, 255, 0.7);
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer a:hover {
    color: white !important;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Footer - Professional Navy Blue */
.footer-professional {
    background: #1e293b;
    color: rgba(255, 255, 255, 0.9);
}

.footer-professional h5 {
    color: white;
    font-weight: 700;
}

.footer-professional p,
.footer-professional .small {
    color: rgba(255, 255, 255, 0.7);
}

.footer-professional .footer-link {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    padding: 0.25rem 0;
    transition: all 0.3s;
}

.footer-professional .footer-link:hover {
    color: var(--accent-color);
    padding-left: 0.5rem;
}

/* Footer Social Links with Golden Yellow Gradient - Fixed Visibility */
.footer-professional .social-links a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark)) !important;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    border: none;
}

.footer-professional .social-links a i {
    color: white !important;
    font-size: 1.25rem;
    opacity: 1;
    display: block;
}

.footer-professional .social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-color)) !important;
}

/* Footer Divider */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1) !important;
    margin: 2rem 0;
}

/* Footer Icons with Yellow */
.footer-professional i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Ensure all contact info icons are yellow */
.footer-professional p i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section-elegant {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .hero-title-elegant {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-image-wrapper {
        margin-top: 4rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-section-elegant {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-title-elegant {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-elegant-primary,
    .btn-elegant-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-trust-indicators {
        gap: 1.5rem;
    }
    
    .trust-divider {
        display: none;
    }
    
    .trust-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .trust-text strong {
        font-size: 1.05rem;
    }
    
    .trust-text span {
        font-size: 0.85rem;
    }
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
}

.btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--accent-dark);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
    border-color: var(--accent-color);
}

/* Updated elegant buttons with golden yellow accents */
.btn-elegant-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.25rem;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-elegant-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18),
                0 0 0 3px rgba(251, 191, 36, 0.3);
    color: var(--primary-dark);
}

.btn-elegant-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.25rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-elegant-secondary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.4);
}

/* Form Controls */
.form-control, .form-select {
    border: 2px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-elegant-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.25rem;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-elegant-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18),
                0 0 0 3px rgba(251, 191, 36, 0.3);
    color: var(--primary-dark);
}

.btn-elegant-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.25rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-elegant-secondary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.4);
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: rgba(251, 191, 36, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.trust-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.trust-text strong {
    font-size: 1.15rem;
    font-weight: 700;
}

.trust-text span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Content Wrapper */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Image Section */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: floatImage 6s ease-in-out infinite;
    position: relative;
    border: 3px solid transparent;
}

.hero-image-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 22px;
    z-index: -1;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -25px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 25%;
    left: -30px;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 10%;
    right: -15px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: translateY(-15px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }
}

/* Floating Icons with Yellow */
.floating-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

/* Hero Wave Bottom */
.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-wave-bottom svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   SERVICES, ABOUT, CONTACT PAGE STYLES
   ======================================== */

/* Page Header for Interior Pages - Consistent Blue Theme */
.page-header {
    padding-top: 120px !important;
    padding-bottom: 80px !important;
    background: linear-gradient(to bottom right, #1e40af 0%, #2563eb 50%, #3b82f6 100%) !important;
    position: relative;
    overflow: hidden;
    color: white;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.03) 0px,
            transparent 1px,
            transparent 40px,
            rgba(255, 255, 255, 0.03) 41px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.03) 0px,
            transparent 1px,
            transparent 40px,
            rgba(255, 255, 255, 0.03) 41px
        );
    opacity: 0.5;
    z-index: 0;
}

.page-header * {
    position: relative;
    z-index: 1;
}

.page-header .section-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.page-header h1 {
    color: white;
}

.page-header p,
.page-header .lead {
    color: rgba(255, 255, 255, 0.95);
}

/* Services Page Specific */
/* Service Detail Card */
.service-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12),
                0 0 0 3px rgba(251, 191, 36, 0.3);
    border-color: var(--accent-color);
}

/* Service Detail Icon with Yellow Gradient */
.service-detail-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.custom-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.info-box {
    background: #fff9e6;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.15);
}

.info-box h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Info Cards with Yellow Accent */
.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.2);
}

/* Team Cards with Yellow Border */
.team-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.2);
}

/* Contact Form and Info Wrappers with Yellow Accent */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.contact-form-wrapper:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.15);
}

.contact-info-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.contact-info-wrapper:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.15);
}

/* Social Links Box with Yellow Background */
.social-links-box {
    background: #fff9e6;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--accent-color);
}

/* Accordion with Yellow Accent */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
    border-left: 4px solid var(--accent-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(251, 191, 36, 0.25);
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
    border-radius: 8px !important;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
}

/* Additional Service Cards */
.additional-service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.2);
}

.service-icon-sm {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.additional-service-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.additional-service-card p {
    color: var(--text-light);
    margin: 0;
}

/* Numbered List */
.numbered-list {
    list-style: none;
    padding-left: 0;
    counter-reset: item;
}

.numbered-list li {
    counter-increment: item;
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-light);
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.contact-info-item h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-info-item p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: var(--accent-color);
}

/* Social Links Large */
.social-links-large {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
    color: white;
}

/* Map Section */
.map-section {
    margin: 0;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Page Transitions */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-header,
.service-detail-card,
.contact-form-wrapper,
.contact-info-wrapper {
    animation: fadeIn 0.6s ease-out;
}
