/* Modern CSS for Sky Drug Test - Advanced Drug Testing Solutions */

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #2563EB;
    --secondary-color: #0EA5E9;
    --accent-color: #10B981;
    --danger-color: #EF4444;
    --warning-color: #F59E0B;
    --dark-color: #1E293B;
    --light-color: #F8FAFC;
    --text-primary: #0F172A;
    --text-secondary: #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);
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
    --gradient-secondary: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-dark: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Dotted separator between blog articles in Latest Industry Insights */
.blog-section .blog-article + .blog-article {
    border-top: 1px dotted #cbd5e1; /* slate-300 */
    margin-top: 20px;
    padding-top: 20px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Forcefully remove horizontal scrollbar */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--light-color);
    overflow-x: hidden;
    cursor: none; /* Hide default cursor for custom cursor */
}

/* ===== LOADING SCREEN ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Fallback: Hide loading screen after 6 seconds */
@media (min-width: 1px) {
    .loading-overlay {
        animation: hideLoading 6s forwards;
    }
}

@keyframes hideLoading {
    0%, 95% { opacity: 1; }
    100% { opacity: 0; pointer-events: none; }
}

/* Emergency fallback to ensure content is always visible */
@media (min-width: 1px) {
    .main-content {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    body {
        overflow: visible !important;
        cursor: auto !important;
    }
    
    /* Force all sections to be visible */
    section {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    /* Hide loading screen */
    .loading-overlay {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Ensure all content sections are visible */
    .hero-section, .services-section, .about-section, 
    .features-section, .testimonials-section, .appointment-section, 
    .cta-section, .modern-footer {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    margin-bottom: 2rem;
}

.logo-3d {
    perspective: 1000px;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 3s infinite linear;
}

.face {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.front { transform: rotateY(0deg) translateZ(60px); }
.back { transform: rotateY(180deg) translateZ(60px); }
.right { transform: rotateY(90deg) translateZ(60px); }
.left { transform: rotateY(-90deg) translateZ(60px); }
.top { transform: rotateX(90deg) translateZ(60px); }
.bottom { transform: rotateX(-90deg) translateZ(60px); }

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

.loading-text {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.loading-letter {
    display: inline-block;
    animation: bounce 1.5s infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

.loading-letter:nth-child(1) { --i: 1; }
.loading-letter:nth-child(2) { --i: 2; }
.loading-letter:nth-child(3) { --i: 3; }
.loading-letter:nth-child(4) { --i: 4; }
.loading-letter:nth-child(5) { --i: 5; }
.loading-letter:nth-child(6) { --i: 6; }
.loading-letter:nth-child(7) { --i: 7; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.loading-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: progress 2s ease-in-out;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-outline {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0.5;
}

/* ===== NAVIGATION ===== */
.modern-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.25rem 0;
    transition: all var(--transition-normal);
}

/* ===== PROFESSIONAL HEADER (MATCHING FOOTER STYLE) ===== */
.professional-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #e9ecef;
}

/* Top Bar */
.header-top-bar {
    background: #333;
    color: white;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid #e9ecef;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.top-bar-item i {
    color: #8B0000;
    font-size: 0.9rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.top-bar-link:hover {
    color: #8B0000;
    transform: translateY(-1px);
}

.top-bar-link i {
    font-size: 0.9rem;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-left: 1px solid #e9ecef;
    padding-left: 1.5rem;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #8B0000;
    font-size: 0.8rem;
}

.social-link:hover {
    color: white;
    background: #660000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

/* Main Header */
.header-main {
    padding: 1.75rem 0;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.header-logo {
    width: 180px;
    height: 45px;
    position: relative;
}

.header-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    font-family: Georgia, serif;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-family: Georgia, serif;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.header-search {
    position: relative;
}

.search-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 4px;
    padding: 0.5rem;
    border: 1px solid #e9ecef;
    transition: all var(--transition-normal);
}

.search-container:focus-within,
.search-container.focused {
    background: white;
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.search-input {
    background: transparent;
    border: none;
    color: #333;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    width: 200px;
    outline: none;
}

.search-input::placeholder {
    color: #666;
}

.search-button {
    background: #8B0000;
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.8rem;
}

.search-button:hover {
    background: #660000;
    transform: scale(1.05);
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.header-btn.secondary {
    color: #333;
    background: white;
    border: 1px solid #e9ecef;
}

.header-btn.secondary:hover {
    color: #333;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-btn.primary {
    color: white;
    background: #8B0000;
    border: none;
}

.header-btn.primary:hover {
    background: #660000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.header-btn i {
    font-size: 1rem;
}

/* Navigation Bar */
.header-navigation {
    background: white;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-menu .nav-item {
    position: relative;
}

.nav-menu .nav-link {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 0.25rem;
    margin: 0 0.25rem;
}

.nav-menu .nav-link:hover {
    color: #8B0000;
    background: #f8f9fa;
    transform: translateY(-1px);
}

.nav-menu .nav-link i {
    font-size: 0.9rem;
    transition: transform var(--transition-normal);
}

.nav-menu .nav-link:hover i {
    transform: scale(1.1);
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: transform var(--transition-normal);
}

.nav-menu .nav-link:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown show state - controlled by JavaScript */
.professional-dropdown.show,
.modern-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header animations */
@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.professional-header {
    animation: headerSlideDown 0.6s ease-out;
}

/* Logo animation */
.header-logo {
    transition: transform var(--transition-normal);
}

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

/* Search focus animation */
.search-container:focus-within {
    transform: scale(1.02);
}

/* Button hover animations */
.header-btn {
    position: relative;
    overflow: hidden;
}

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

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

/* Social link pulse animation */
@keyframes socialPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.social-link:hover {
    animation: socialPulse 0.6s ease-in-out;
}

.nav-menu .nav-link.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.25rem;
}



.modern-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    text-decoration: none;
    color: var(--text-primary);
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 200px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(79, 70, 229, 0.3));
    transition: transform var(--transition-normal);
}

.brand-logo:hover .logo-image {
    transform: scale(1.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1;
}

.navbar-nav {
    gap: 0.5rem;
    align-items: center;
    height: 100%;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem !important;
    color: var(--text-primary) !important;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all var(--transition-normal);
    overflow: hidden;
    height: auto;
    min-height: 44px;
    max-height: 50px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left var(--transition-normal);
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-icon {
    font-size: 1.1rem;
    transition: transform var(--transition-normal);
}

.nav-link:hover .nav-icon {
    transform: scale(1.2);
}

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

.cta-button {
    background: var(--gradient-primary) !important;
    color: white !important;
    border-radius: 2rem !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: auto !important;
    min-height: 44px !important;
    max-height: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.2 !important;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white !important;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    position: absolute;
    transition: all var(--transition-normal);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.modern-dropdown {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(5px);
}

/* Professional Header Dropdown Styles */
.professional-dropdown {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 220px;
    margin-top: 0.5rem;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    display: block;
}

/* Ensure dropdowns are properly positioned */
.nav-menu .nav-item {
    position: relative;
}

/* Modern dropdown styles */
.modern-dropdown {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    padding: 1rem 0;
    margin-top: 0.5rem;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    display: block;
    min-width: 220px;
}

.professional-dropdown .dropdown-item {
    color: #333;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    background: transparent;
    position: relative;
}

.professional-dropdown .dropdown-item:hover {
    background: #f8f9fa;
    color: #8B0000;
    transform: translateX(5px);
}

.professional-dropdown .dropdown-item i {
    color: #8B0000;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.professional-dropdown .dropdown-item:hover i {
    color: #660000;
    transform: scale(1.1);
}

.professional-dropdown .dropdown-item:active {
    background: #e9ecef;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Adjust main content for professional header */
.professional-header ~ .main-content {
    margin-top: 280px;
    min-height: calc(100vh - 280px);
}



/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 6rem 0;
    background: white;
}

/* Service image styling */
.service-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Make random drug test image smaller */
.service-img[alt="RANDOM DRUG TESTING"] {
    max-width: 60%;
    height: auto;
}

/* Make driver files image smaller */
.service-img[alt="DRIVER FILES"] {
    max-width: 60%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-normal);
}

.service-link:hover {
    gap: 1rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.why-choose-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.why-choose-content .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.stats-grid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 33.33%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-left: 1px dashed rgba(255, 255, 255, 0.3);
}

.stats-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 66.66%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-left: 1px dashed rgba(255, 255, 255, 0.3);
}

.stat-column {
    text-align: center;
    padding: 1rem 1rem;
    transition: transform 0.3s ease;
}

.stat-column:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.stat-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 400;
}

.stat-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0;
}

.stat-link:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
    text-decoration: none;
}

/* Responsive Design for Why Choose Section */
@media (max-width: 768px) {
    .why-choose-content .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid::before,
    .stats-grid::after {
        display: none;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .why-choose-content .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-description {
        font-size: 0.9rem;
    }
}

/* ===== MAK WHY CHOOSE SECTION (unique prefixed classes) ===== */
.mak-why-choose-section {
    padding: 3rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.mak-why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'), url('../images/default/bg_banner.png');
    background-size: cover, cover;
    background-position: center 35%, center 35%;
    background-repeat: no-repeat, no-repeat;
    z-index: 0;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    pointer-events: none;
}

.mak-why-choose-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.mak-why-choose-content .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mak-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.mak-stats-grid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 33.33%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-left: 1px dashed rgba(255, 255, 255, 0.3);
}

.mak-stats-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 66.66%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-left: 1px dashed rgba(255, 255, 255, 0.3);
}

.mak-stat-column {
    text-align: center;
    padding: 1rem 1rem;
    transition: transform 0.3s ease;
}

.mak-stat-column:hover {
    transform: translateY(-5px);
}

.mak-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.mak-stat-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 400;
}

.mak-stat-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0;
}

.mak-stat-link:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
    text-decoration: none;
}

/* Responsive Design for MAK Why Choose Section */
@media (max-width: 768px) {
    .mak-why-choose-content .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .mak-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mak-stats-grid::before,
    .mak-stats-grid::after {
        display: none;
    }
    
    .mak-stat-number {
        font-size: 3rem;
    }
    
    .mak-stat-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mak-why-choose-content .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .mak-stat-number {
        font-size: 2.5rem;
    }
    
    .mak-stat-description {
        font-size: 0.9rem;
    }
}

/* ===== APPOINTMENT SECTION ===== */
.appointment-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
}

.appointment-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.appointment-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.appointment-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.appointment-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== HEADER & FOOTER STYLE SELECTORS ===== */
.header-style-selector {
    background: #f8f9fa !important;
    border-bottom: 1px solid #e9ecef !important;
    padding: 1rem 0 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: auto !important;
}

.footer-style-selector {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 1rem 0;
}

.selector-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.selector-content h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all var(--transition-normal);
}

.radio-option:hover {
    background: rgba(79, 70, 229, 0.1);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    transition: all var(--transition-normal);
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.radio-label {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* ===== MODERN FOOTER ===== */
.modern-footer {
    background: var(--dark-color);
    color: white;
    position: relative;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.footer-waves .shape-fill {
    fill: var(--dark-color);
}

.footer-content {
    padding: 0rem 0 0rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    width: 200px;
    height: 48px;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-svg {
    width: 100%;
    height: 100%;
}

.footer-logo-text {
    font-size: 12px;
    font-weight: bold;
    fill: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #f39c12;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.contact-item a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0rem 0;
    position: relative;
    z-index: 1;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.copyright strong {
    color: #f59e0b;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-bottom-links a:hover {
    color: white;
}

/* ===== PROFESSIONAL FOOTER ===== */
.professional-footer {
    background: #f8f9fa;
    color: #333;
    font-family: Arial, sans-serif;
}

.footer-top-bar {
    background: #333;
    padding: 0.75rem 0;
}

.top-bar-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.top-bar-links a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-normal);
}

.top-bar-links a:hover {
    color: #ccc;
}

.footer-main-content {
    padding: 0rem 0;
    background: #f8f9fa;
}

.footer-description-section {
    padding-right: 2rem;
}

.footer-description-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

.footer-cta-button {
    display: inline-block;
    background: #8B0000;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 0.25rem;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color var(--transition-normal);
}

.footer-cta-button:hover {
    background: #660000;
    color: white;
    text-decoration: none;
}

.footer-brand-section {
    text-align: center;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo-container {
    position: relative;
    width: 200px;
    height: 48px;
}

.logo-container .since-text {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: #333;
    font-family: Georgia, serif;
}

.professional-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    font-family: Georgia, serif;
}

.brand-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-family: Georgia, serif;
}

.since-text {
    font-size: 0.8rem;
    font-weight: bold;
    color: #333;
    display: block;
    margin-top: 0.5rem;
}

.social-media-section {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.social-media-section p {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform var(--transition-normal);
}

.social-icon:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.twitter {
    background: #000;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.copyright-info {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.copyright-info p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* Cookie and Chat Icons */
.cookie-icon {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: #8B0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
}

.cookie-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.chat-icon {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
}

.chat-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for professional footer */
@media (max-width: 768px) {
    .top-bar-links {
        gap: 1rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 1rem;
    }
    
    .top-bar-links a {
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .footer-description-section {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .footer-brand-logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-icons {
        gap: 0.5rem;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* Responsive adjustments for headers */
@media (max-width: 768px) {
    .header-style-selector,
    .footer-style-selector {
        padding: 0.75rem 0;
    }
    
    .selector-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .radio-group {
        gap: 1rem;
    }
    
    /* Professional Header Mobile Styles */
    .professional-header {
        margin-top: 60px;
    }
    
    .header-main-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-brand {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-logo {
        width: 150px;
        height: 36px;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .brand-tagline {
        font-size: 0.8rem;
    }
    
    .header-search {
        max-width: 100%;
    }
    
    .header-actions {
        gap: 1rem;
    }
    
    .header-action {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-menu .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid #e9ecef;
    }
    
    /* Adjust main content for mobile professional header */
    .professional-header ~ .main-content {
        margin-top: 400px;
        min-height: calc(100vh - 400px);
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 8rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

/* ===== CHAT BUTTON ===== */
.chat-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    opacity: 1;
    visibility: visible;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== BBB ACCREDITATION ===== */
.bbb-accreditation {
    text-align: center;
    margin: 1rem 0;
}

.bbb-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.bbb-accreditation a:hover .bbb-logo {
    transform: scale(1.1);
}

/* Modern Footer BBB Styling */
.modern-footer .bbb-accreditation {
    margin: 0;
}

/* Professional Footer BBB Styling */
.professional-footer .bbb-accreditation {
    margin: 1.5rem 0;
    text-align: center;
}

.professional-footer .bbb-accreditation a {
    text-decoration: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .brand-tagline {
        font-size: 0.625rem;
    }
    
    .nav-text {
        display: none;
    }
    
    .appointment-form {
        padding: 2rem 1rem;
    }
}

/* ===== RESPONSIVE PROFESSIONAL HEADER ===== */
@media (max-width: 768px) {
    .professional-header {
        margin-top: 0;
    }
    
    .header-top-bar {
        padding: 0.5rem 0;
        font-size: 0.75rem;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .top-bar-info {
        justify-content: center;
        gap: 1rem;
    }
    
    .top-bar-right {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .top-bar-contact {
        justify-content: center;
        gap: 1rem;
    }
    
    .top-bar-social {
        border-left: none;
        padding-left: 0;
        justify-content: center;
    }
    
    .header-main-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .header-brand {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .header-logo {
        width: 160px;
        height: 40px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-tagline {
        font-size: 0.85rem;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .header-search {
        width: 100%;
    }
    
    .search-container {
        width: 100%;
    }
    
    .search-input {
        width: 100%;
        flex: 1;
    }
    
    .header-buttons {
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .header-btn {
        flex: 1;
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
    }
    
    .nav-menu .nav-link {
        padding: 1rem;
        margin: 0;
        border-radius: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 500;
        justify-content: flex-start;
    }
    
    .nav-menu .nav-link:hover {
        background: #f8f9fa;
        transform: none;
        color: #8B0000;
    }
    
    .professional-dropdown {
        position: static;
        background: #f8f9fa;
        border: none;
        box-shadow: none;
        margin-top: 0.5rem;
        border-radius: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .professional-dropdown .dropdown-item {
        color: #333;
        padding: 0.75rem 1rem;
        margin: 0 0.5rem;
        border-radius: 6px;
    }
    
    .professional-dropdown .dropdown-item:hover {
        background: #e9ecef;
        color: #8B0000;
        transform: none;
    }
}

@media (max-width: 480px) {
    .header-top-bar {
        font-size: 0.7rem;
        padding: 0.4rem 0;
    }
    
    .top-bar-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .top-bar-item {
        font-size: 0.7rem;
    }
    
    .top-bar-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .top-bar-link {
        font-size: 0.7rem;
    }
    
    .social-link {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    .header-main {
        padding: 1rem 0;
    }
    
    .header-logo {
        width: 140px;
        height: 35px;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .brand-tagline {
        font-size: 0.75rem;
    }
    
    .search-input {
        width: 150px;
        font-size: 0.8rem;
    }
    
    .header-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .nav-menu .nav-link {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
    
    .nav-menu .nav-link i {
        font-size: 0.8rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.rounded-custom {
    border-radius: 1rem;
}

.transition-custom {
    transition: all var(--transition-normal);
}

/* ===== SCROLLBAR STYLING ===== */
/* Removed custom scrollbar styling - letting browser handle scrollbars naturally */

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: flex-end; /* Position content at bottom */
    justify-content: flex-start; /* Left alignment */
    pointer-events: none;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 12rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    pointer-events: auto;
}

.slide-content .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left alignment */
    max-width: 600px;
    padding: 0;
    margin-left: 0;
    margin-top: 6rem;
}

.hero-title {   
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInFromLeft 1s ease-out;
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: slideInFromLeft 1s ease-out 0.6s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInFromLeft 1s ease-out 0.3s both;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 1;
}

/* Primary CTA Button */
.hero-cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 2rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.6);
    color: white;
    text-decoration: none;
}

.hero-cta-button:active {
    transform: translateY(-1px);
}

/* Secondary Learn More Button */
.hero-learn-more-button {
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 2rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-learn-more-button:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.hero-learn-more-button:active {
    transform: translateY(-1px);
}

/* Button focus states for accessibility */
.hero-cta-button:focus,
.hero-learn-more-button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
    pointer-events: auto;
}

.nav-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    z-index: 10;
    outline: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.nav-dot.active,
.nav-dot:hover {
    background: white;
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-dot:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    outline: none;
    padding: 0;
    margin: 0;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.slider-arrow:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

.slider-arrow i {
    font-size: 1.2rem;
    pointer-events: none;
}

/* Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ensure text is always visible in active slides */
.slide.active .hero-title,
.slide.active .hero-subtitle {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-content {
        padding: 4rem 1.5rem;
    }
    
    .slide-content .container {
        margin-left: 0;
        margin-top: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-button,
    .hero-learn-more-button {
        width: 100%;
        justify-content: center;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow.prev {
        left: 1rem;
    }
    
    .slider-arrow.next {
        right: 1rem;
    }
    
    /* BBB Accreditation Mobile Styling */
    .bbb-accreditation {
        margin: 1rem 0;
    }
    
    .bbb-logo {
        width: 100px;
        height: 100px;
    }
    
    /* Footer bottom mobile layout */
    .footer-bottom .row {
        text-align: center;
    }
    
    .footer-bottom .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .footer-bottom .col-md-4:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .slide-content {
        padding: 3rem 1rem;
    }
    
    .slide-content .container {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .slider-nav {
        bottom: 1rem;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
}

/* ===== CONTACT INFORMATION SECTION ABOVE FOOTER ===== */
.contact-info-section {
    background:  linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);                            /*var(--dark-color);;               /*linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); */
    color: white;
    padding: 2rem 0;
    position: relative;
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--dark-color);;               /*linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); */
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.contact-info-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
    min-width: 280px;
    flex-shrink: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-content p,
.contact-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: white;
    text-decoration: underline;
}

.contact-content strong {
    color: white;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info-section {
        padding: 3rem 0;
    }
    
    .contact-info-grid {
        gap: 1rem;
        padding: 0 15px;
    }
    
    .contact-info-item {
        padding: 1rem;
        gap: 1rem;
        min-width: 250px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.25rem;
    }
    
    .contact-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 2rem 0;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
}

/* ===== FOOTER NEWSLETTER FORM ===== */
.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: #f59e0b;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-submit {
    width: 45px;
    height: 45px;
    background: #f59e0b;
    border: none;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.newsletter-submit:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Responsive Design for Newsletter */
@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-submit {
        width: 100%;
        height: 45px;
    }
}

/* ===== PACKAGES SECTION STYLES ===== */
.packages-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}


.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #0f766e;
}

.package-card.featured {
    border-color: #0f766e;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(15, 118, 110, 0.2);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 0%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0f766e, #0891b2);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

/* .popular-ribbon {
    position: absolute;
    top: -50px;
    left: -150px;
    z-index: 10;
    transform: rotate(-25deg);
    pointer-events: none;
} */

.popular-image {
    width: 80px;
    height: auto;
    position: absolute;
    top: 0px;
    left: -8px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transform: rotate(-7deg);
    z-index: 10;
    /* transition: transform 0.3s ease; */
}

.popular-ribbon:hover .popular-image {
    transform: scale(1.1) rotate(-15deg);
}

.package-header {
    margin-bottom: 1.5rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.package-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f766e;
}

.package-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.package-price .period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.package-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    padding-top: 2rem;
}

.package-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    border-top: 2px dotted #cbd5e1;
    margin-bottom: 1.5rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #475569;
    font-size: 0.9rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: #059669;
    margin-right: 0.75rem;
    font-size: 0.875rem;
    min-width: 1rem;
}

.package-action {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-action .btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid;
    min-width: 160px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #0f766e, #0891b2);
    color: white;
    border-color: #0f766e;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0891b2, #0f766e);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 118, 110, 0.3);
    color: white;
}

.btn-outline {
    background: transparent;
    color: #0f766e;
    border-color: #0f766e;
}

.btn-outline:hover {
    background: #0f766e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 118, 110, 0.3);
}

/* Package-specific colors */
.package-card.basic .package-price .currency,
.package-card.basic .package-price .amount {
    color: #059669;
}

.package-card.basic:hover {
    border-color: #059669;
}

.package-card.intermediate .package-price .currency,
.package-card.intermediate .package-price .amount {
    color: #0f766e;
}

.package-card.intermediate:hover {
    border-color: #0f766e;
}

.package-card.advanced .package-price .currency,
.package-card.advanced .package-price .amount {
    color: #d97706;
}

.package-card.advanced:hover {
    border-color: #d97706;
}

.package-card.special .package-price .currency,
.package-card.special .package-price .amount {
    color: #dc2626;
}

.package-card.special:hover {
    border-color: #dc2626;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card {
        padding: 1.5rem 1.25rem;
        min-height: 450px;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .package-price .amount {
        font-size: 2.5rem;
    }
    
    .package-header h3 {
        font-size: 1.25rem;
    }
    
    .package-features li {
        font-size: 0.9rem;
    }
}
