/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Main Colors - Updated to match markdown specifications */
    --primary-blue: #0056a6;
    --primary-navy: #19376d;
    --primary-navy-dark: #0f2a5a;
    --secondary-blue: #003d73;
    --light-blue: #dbeafe;
    --primary-gray: #333333;
    --secondary-gray: #666666;
    --light-gray: #f2f2f2;
    --accent-color: #0056a6;
    --accent-hover: #003d73;
    --background-soft: #f8fafc;
    --border-whisper: #e2e8f0;

    /* Text Colors */
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #888888;
    --footer-text-light: #cccccc;
    
    /* Text Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;

    /* Other Colors */
    --white: #ffffff;
    --black: #000000;
    --success: #10b981;
    --error: #ef4444;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Skip Navigation Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
}

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

/* === MODERNE NAVIGATION === */
.navbar-modern {
    background: var(--white);
    border-bottom: 1px solid var(--border-whisper);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-grid {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    min-height: auto;
}

.nav-logo-area {
    display: flex;
    align-items: center;
}

.logo-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-image-modern {
    height: 120px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    white-space: nowrap;
}

.logo-i {
    color: var(--text-secondary);
}

.logo-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

.nav-menu-area {
    display: flex;
    align-items: center;
    justify-self: center;
}

.nav-list-modern {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-modern {
    margin: 0;
}

.nav-link-modern {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link-modern:hover {
    background: var(--background-soft);
    color: var(--primary-navy);
    transform: translateY(-1px);
}

.nav-link-modern.active {
    background: var(--primary-navy);
    color: var(--white);
}

.nav-link-modern i {
    font-size: 14px;
    flex-shrink: 0;
}

.nav-cta-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-self: end;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-whisper);
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-phone:hover {
    background: var(--background-soft);
    border-color: var(--primary-navy);
}

.cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.cta-text small {
    font-size: 0.6875rem;
    color: var(--text-secondary);
}

.cta-text strong {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.cta-primary {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--primary-navy);
    color: var(--white);
    text-decoration: none;
    padding: 0.625rem 1.125rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(25, 55, 109, 0.1);
    white-space: nowrap;
}

.cta-primary:hover {
    background: var(--primary-navy-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(25, 55, 109, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 3px;
}

.hamburger-line {
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Mobile Navigation Responsive */
@media (max-width: 1024px) {
    .nav-grid {
        gap: 1rem;
    }
    .nav-cta-area {
        gap: 0.375rem;
    }
    .cta-phone {
        padding: 0.375rem 0.5rem;
    }
    .cta-text small {
        font-size: 0.625rem;
    }
    .cta-text strong {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .navbar-modern {
        padding: 0.75rem 0;
    }
    
    .nav-grid {
        grid-template-columns: 1fr auto;
        gap: 1rem;
        min-height: 48px;
    }
    
    .logo-image-modern {
        height: 36px;
    }
    
    .logo-title {
        font-size: 1rem;
    }
    
    .logo-subtitle {
        font-size: 0.6875rem;
    }
    
    .nav-menu-area {
        display: none;
    }
    
    .nav-cta-area {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Service Card Clickable - Desktop Only */
@media (min-width: 769px) {
    .service-card[data-href] {
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .service-card[data-href]:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .service-card[data-href]:hover .service-link {
        color: var(--primary-navy);
    }
}
    
    /* Mobile Menu States */
    .nav-menu-area.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border: 1px solid var(--border-whisper);
        border-top: none;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    
    .nav-menu-area.active .nav-list-modern {
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .nav-menu-area.active .nav-link-modern {
        justify-content: flex-start;
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
}

h2 {
    font-size: 2rem;
    color: var(--text-primary);
}

h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-white:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

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

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

/* Additional standardized button styles */
.btn-secondary {
    background-color: var(--secondary-gray);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-success:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-danger {
    background-color: var(--error);
    color: var(--white);
}

.btn-danger:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Button sizes */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* Button widths */
.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-auto {
    width: auto;
}

/* Button states */
.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover,
.btn.disabled:hover {
    background-color: inherit;
    transform: none;
    box-shadow: none;
}

/* Button focus states for accessibility */
.btn:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.btn:focus:not(:focus-visible) {
    outline: none;
}

/* Button loading state */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Modern Booking Section Styles */
.booking-container-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.booking-calendar-modern {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 100%;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-calendar-modern:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 25px 30px -5px rgba(0, 0, 0, 0.15),
        0 15px 15px -5px rgba(0, 0, 0, 0.06);
}

.calendar-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 86, 166, 0.1);
    position: relative;
}

.calendar-header-modern::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
}

.calendar-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.calendar-title i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    opacity: 0.8;
}

.calendar-title h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.date-picker-modern {
    position: relative;
}

.date-picker-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.date-picker-label i {
    font-size: 1rem;
    color: var(--primary-blue);
}

.date-picker-modern input {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(0, 86, 166, 0.15);
    border-radius: 0.75rem;
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    min-width: 160px;
}

.date-picker-modern input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 86, 166, 0.1);
    background: white;
}

.time-slots-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    min-height: 200px;
}

.no-slots-modern {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 86, 166, 0.02);
    border-radius: 1rem;
    border: 2px dashed rgba(0, 86, 166, 0.15);
}

.no-slots-modern .no-slots-icon {
    margin-bottom: 1rem;
}

.no-slots-modern .no-slots-icon i {
    font-size: 3rem;
    color: rgba(0, 86, 166, 0.3);
}

.no-slots-modern h4 {
    color: var(--primary-blue);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.no-slots-modern p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.time-slot-modern {
    padding: 1.25rem 1rem;
    background: linear-gradient(135deg, rgba(0, 86, 166, 0.08) 0%, rgba(0, 86, 166, 0.12) 100%);
    border: 2px solid transparent;
    border-radius: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

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

.time-slot-modern:hover::before {
    left: 100%;
}

.time-slot-modern:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 20px -5px rgba(0, 86, 166, 0.3),
        0 4px 10px -2px rgba(0, 86, 166, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.time-slot-modern.selected {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 15px 25px -5px rgba(0, 86, 166, 0.4),
        0 6px 12px -2px rgba(0, 86, 166, 0.3);
}

.time-slot-modern.unavailable {
    background: rgba(229, 231, 235, 0.8);
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slot-modern.unavailable:hover {
    background: rgba(229, 231, 235, 0.8);
    color: var(--text-light);
    transform: none;
    box-shadow: none;
}

.booking-form-modern {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 100%;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-form-modern:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 25px 30px -5px rgba(0, 0, 0, 0.15),
        0 15px 15px -5px rgba(0, 0, 0, 0.06);
}

.form-header-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 86, 166, 0.1);
    position: relative;
}

.form-header-modern::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
}

.form-header-modern i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    opacity: 0.8;
}

.form-header-modern h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-group-modern {
    margin-bottom: 1.75rem;
    position: relative;
}

.form-group-modern label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group-modern label i {
    font-size: 1.1rem;
    color: var(--primary-blue);
    opacity: 0.7;
}

.form-group-modern .required {
    color: #e53e3e;
    font-weight: 700;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 86, 166, 0.15);
    border-radius: 0.75rem;
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 86, 166, 0.1);
    background: white;
    transform: translateY(-1px);
}

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

.selected-slot-modern {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 2rem;
    display: none;
    text-align: center;
    font-weight: 600;
    color: var(--success-dark);
    font-size: 1rem;
}

.selected-slot-modern.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary-modern {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-modern::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 ease;
}

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

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 25px -5px rgba(0, 86, 166, 0.4),
        0 6px 12px -2px rgba(0, 86, 166, 0.3);
}

.btn-primary-modern:active {
    transform: translateY(0);
}

.btn-primary-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary-modern .btn-loading {
    display: none;
}

.btn-primary-modern.loading span {
    opacity: 0;
}

.btn-primary-modern.loading .btn-loading {
    display: block;
}

.btn-primary-modern.loading i {
    opacity: 0;
}

.booking-info-modern {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(0, 86, 166, 0.02);
    border-radius: 1rem;
    border: 1px solid rgba(0, 86, 166, 0.1);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.info-header i {
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.info-header h4 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.info-item i {
    font-size: 1rem;
    color: var(--success);
    background: rgba(34, 197, 94, 0.1);
    padding: 0.25rem;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-contact {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.02) 100%);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 0.75rem;
    text-align: center;
}

.emergency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #dc2626;
}

.emergency-header i {
    font-size: 1.25rem;
}

.emergency-contact p {
    color: var(--text-secondary);
    margin: 0 0 1.25rem 0;
    font-size: 0.9rem;
}

.emergency-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.emergency-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    color: #dc2626;
    border: 2px solid #dc2626;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

/* Emergency Contact Bar */
.emergency-contact-bar {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 0.75rem 0;
    position: relative;
    z-index: 1001;
}

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

.emergency-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.emergency-phone,
.emergency-whatsapp {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.emergency-phone:hover,
.emergency-whatsapp:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.emergency-phone .icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Legacy button styles - to be removed in next version */
.btn-action {
    @extend .btn;
    @extend .btn-primary;
}

.btn-cancel {
    @extend .btn;
    @extend .btn-secondary;
}

/* Individual button styles */
.hero-buttons .btn:first-child {
    margin-right: 1rem;
}

.cta-buttons .btn:first-child {
    margin-right: 1rem;
}

.contact-buttons .btn:first-child {
    margin-right: 1rem;
}

.booking-success-actions .btn {
    margin: 0.5rem;
}

.booking-success-actions .btn-primary {
    background: var(--primary-blue);
    color: white;
}

.booking-success-actions .btn-primary:hover {
    background: var(--secondary-blue);
}

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

.booking-success-actions .btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 0;
    border-radius: 0;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    background-color: white;
    padding: 8px;
    border-radius: 6px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-subtext {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Navigation Booking Icon */
.nav-booking-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.nav-booking-icon:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.nav-booking-icon i {
    font-size: 1.125rem;
}/* Layout CSS - All Layout Related Styles */

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

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--success);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

/* Hero Section Updates */
.usp-banner {
    margin-bottom: 2rem;
}

.hero-intro {
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

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

/* Services Grid Update for 5 items */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

    .service-card:nth-child(4) {
        grid-column: 1 / 3;
    }

    .service-card:nth-child(5) {
        grid-column: 3 / 4;
    }
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.why-us-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.benefit-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: var(--text-secondary);
    margin: 0;
}

.why-us-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

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

/* Testimonials - Modernized */
.testimonials-section-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-soft) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 86, 166, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 86, 166, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonial-card-modern {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    position: relative;
    border: 1px solid var(--border-whisper);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0 0 0.25rem 0;
}

.testimonial-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.testimonial-source i {
    color: var(--primary-blue);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.testimonial-stars .fas.fa-star {
    color: var(--light-gray);
    transition: color 0.3s ease;
}

.testimonial-stars .fas.fa-star.active {
    color: #ffd700;
    text-shadow: 0 0 4px rgba(255, 215, 0, 0.3);
}

.testimonial-text {
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-size: 1.5rem;
    color: var(--primary-blue);
    opacity: 0.3;
}

.testimonial-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    padding-left: 1rem;
    font-style: italic;
    position: relative;
}

/* Trust Bar */
.testimonials-trust-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 1.5rem;
    border: 1px solid var(--border-whisper);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--background-soft) 0%, var(--white) 100%);
    transition: transform 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-2px);
}

.trust-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.trust-stat-content {
    text-align: left;
}

.trust-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.trust-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-section-modern {
        padding: 4rem 0;
    }
    
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .testimonial-card-modern {
        padding: 1.5rem;
    }
    
    .testimonials-trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .trust-stat {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .trust-stat-content {
        text-align: center;
    }
    
    .trust-stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-trust-bar {
        grid-template-columns: 1fr;
    }
    
    .testimonial-header {
        gap: 0.75rem;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-author-name {
        font-size: 1rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--footer-text-light);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: var(--footer-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--footer-text-light);
}

.contact-info i {
    width: 20px;
    color: var(--accent-color);
}

.contact-info a {
    color: var(--footer-text-light);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--footer-text-light);
    margin: 0;
}

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

.footer-bottom-links a {
    color: var(--footer-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Content Sections */
.content-container {
    padding: 4rem 0;
}

.content-section {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.page-title {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.section-title {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.info-section {
    margin-bottom: 3rem;
}

.info-content {
    padding: 1rem;
}

.info-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: var(--light-gray);
    margin: 3rem 0;
}

/* Modern Page Header */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 6rem 0 4rem 0;
    text-align: center;
    overflow: hidden;
    margin-top: -1px; /* Remove any gap from navigation */
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 20%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.3) 80%, 
        transparent 100%
    );
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.page-header-badge i {
    font-size: 1rem;
    color: #FFD700;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.page-header-subtitle {
    font-size: 1.375rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.page-header-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.page-header-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-header-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-header-feature i {
    font-size: 1.25rem;
    color: #FFD700;
    flex-shrink: 0;
}

.page-header-decoration {
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    opacity: 0.05;
    font-size: 15rem;
    color: var(--white);
    pointer-events: none;
    z-index: 1;
}

.page-header-decoration-right {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    opacity: 0.05;
    font-size: 12rem;
    color: var(--white);
    pointer-events: none;
    z-index: 1;
}

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

/* Responsive Design for Page Header */
@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header-subtitle {
        font-size: 1.125rem;
    }
    
    .page-header-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .page-header-feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .page-header-decoration,
    .page-header-decoration-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header-subtitle {
        font-size: 1rem;
    }
    
    .page-header-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Blog Styles - Enhanced Professional Design */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-card-category {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(25, 55, 109, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.blog-image-container {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image {
    transform: scale(1.08);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-navy) 100%);
    color: white;
    font-size: 4rem;
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.blog-meta i {
    color: var(--primary-blue);
    font-size: 0.875rem;
}

.blog-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-navy);
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    align-self: flex-start;
}

.blog-link::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-navy);
    gap: 0.75rem;
}

.blog-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Blog Page Styles */
.blog-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

/* Mobile Blog Responsive Styles */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-hero {
        padding: 80px 0 40px 0;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-hero p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .blog-card-category {
        font-size: 0.65rem;
        padding: 0.375rem 0.75rem;
    }
    
    .blog-image-container {
        height: 200px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.25rem;
    }
    
    .blog-excerpt {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        gap: 1.5rem;
    }
    
    .blog-section {
        padding: 3rem 0;
    }
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    padding: 100px 0 60px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.blog-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: var(--text-primary);
    background-color: var(--white);
    border: 1px solid var(--secondary-gray);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    background-color: var(--light-gray);
    border-color: var(--primary-blue);
}

.pagination-link.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.pagination-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-link.disabled:hover {
    background-color: var(--white);
    border-color: var(--secondary-gray);
}

.pagination-prev,
.pagination-next {
    width: auto;
    padding: 0 1rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.newsletter-text h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    opacity: 0.9;
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.categories-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.category-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.875rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--accent-color);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: var(--accent-color) !important;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.map-details h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.map-details h3:first-child {
    margin-top: 0;
}

.map-details ul {
    list-style: none;
}

.map-details li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.map-details i {
    color: var(--accent-color);
    width: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item {
    background-color: var(--white);
    margin-bottom: 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    padding: 2rem;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.125rem;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-item h3 i {
    color: var(--accent-color);
}

.faq-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Services Detail */
.services-detail {
    padding: 5rem 0;
}

.service-detail {
    margin-bottom: 5rem;
}

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

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse .service-detail-text {
    direction: ltr;
}

.service-detail-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-detail-text h2 i {
    color: var(--accent-color);
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-features i {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.service-cta {
    margin-top: 2rem;
}

.service-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: transparent;
    border-radius: 0.5rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.service-note i {
    flex-shrink: 0;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

/* Additional Services */
.additional-services {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid var(--light-gray);
}

.additional-services h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

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

.additional-service-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.additional-service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.additional-service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.process-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.process-arrow {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* Updated Process Steps Layout */
.process-steps {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 0;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
}

.process-steps::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.process-step {
    flex: 0 0 auto;
    width: 280px;
    padding: 1.5rem;
    scroll-snap-align: start;
}

.process-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Locations Section */
.locations-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.locations-text h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.location-list {
    margin-top: 2rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.location-item i {
    color: var(--primary-blue);
    width: 20px;
}

.locations-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    background-color: var(--light-gray);
    border-radius: 1rem;
    padding: 4rem 2rem;
    text-align: center;
    width: 100%;
    border: 2px dashed var(--secondary-gray);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin: 0;
}

/* FAQ Section - Modern Design */
.faq-section-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.faq-section-modern::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="faq-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.faq-container-modern {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* FAQ Item Modern */
.faq-item-modern {
    background: var(--white);
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 86, 166, 0.08);
    border: 1px solid rgba(0, 86, 166, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.faq-item-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 86, 166, 0.15);
}

.faq-item-modern:hover::before {
    transform: scaleY(1);
}

.faq-item-modern.active::before {
    transform: scaleY(1);
}

/* FAQ Question Modern */
.faq-question-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question-modern:hover {
    background: linear-gradient(135deg, rgba(0, 86, 166, 0.02) 0%, rgba(0, 86, 166, 0.05) 100%);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 86, 166, 0.25);
    transition: all 0.3s ease;
}

.faq-item-modern:hover .faq-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 86, 166, 0.35);
}

.faq-content {
    flex: 1;
    min-width: 0;
}

.faq-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.faq-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-category {
    font-size: 0.875rem;
    color: var(--secondary-gray);
    background: rgba(0, 86, 166, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 500;
}

.faq-urgency {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.faq-urgency.urgent {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
}

.faq-urgency.standard {
    background: rgba(107, 114, 128, 0.1);
    color: var(--secondary-gray);
}

.faq-urgency.positive {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 86, 166, 0.1);
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item-modern.active .faq-toggle {
    background: var(--primary-blue);
    color: white;
    transform: rotate(45deg);
}

.faq-toggle:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
}

/* FAQ Answer Modern */
.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 1000px;
    opacity: 1;
}

.faq-answer-content {
    padding: 0 2rem 2rem 2rem;
    margin-left: 4.5rem; /* Align with content */
}

.faq-answer-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* FAQ Benefits */
.faq-benefits {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 86, 166, 0.05);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.benefit-point:hover {
    background: rgba(0, 86, 166, 0.1);
    transform: translateX(4px);
}

.benefit-point i {
    color: #059669;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.benefit-point span {
    color: var(--text-primary);
    font-weight: 500;
}

/* FAQ Checklist */
.faq-checklist {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 86, 166, 0.05);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: rgba(0, 86, 166, 0.1);
    transform: translateX(4px);
}

.checklist-item i {
    color: #059669;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.checklist-item span {
    color: var(--text-primary);
    font-weight: 500;
}

/* FAQ Highlight */
.faq-highlight {
    margin-top: 1.5rem;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(0, 86, 166, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, var(--primary-blue) 100%);
}

.highlight-card i {
    color: #3b82f6;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.highlight-content strong {
    color: var(--primary-navy);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* FAQ CTA */
.faq-cta {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 86, 166, 0.25);
}

.faq-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 166, 0.35);
    text-decoration: none;
    color: white;
}

.faq-action-btn.secondary {
    background: linear-gradient(135deg, rgba(0, 86, 166, 0.1) 0%, rgba(0, 86, 166, 0.05) 100%);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: none;
}

.faq-action-btn.secondary:hover {
    background: var(--primary-blue);
    color: white;
}

/* FAQ Support Section */
.faq-support-section {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.support-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 1.5rem;
    color: white;
    box-shadow: 0 12px 35px rgba(0, 86, 166, 0.3);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.support-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.support-content {
    flex: 1;
}

.support-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
}

.support-content p {
    font-size: 1.125rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.support-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.support-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

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

.support-btn.primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-modern {
        padding: 4rem 0;
    }
    
    .faq-question-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .faq-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .faq-answer-content {
        margin-left: 0;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .faq-content h3 {
        font-size: 1.125rem;
    }
    
    .faq-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .support-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .support-actions {
        justify-content: center;
        width: 100%;
    }
    
    .support-btn {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .faq-item-modern {
        margin-bottom: 1rem;
        border-radius: 1rem;
    }
    
    .faq-question-modern {
        padding: 1.25rem;
    }
    
    .faq-answer-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .faq-content h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-action-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .support-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }
    
    .support-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .support-content h4 {
        font-size: 1.25rem;
    }
    
    .support-content p {
        font-size: 1rem;
    }
}

/* FAQ Section Updates */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.125rem;
    flex: 1;
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* About Page Styles */
.about-content {
    padding: 5rem 0;
}

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

.about-intro-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
    flex: 1;
}

.about-stat i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.about-stat h3 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.about-stat p {
    color: var(--text-secondary);
    margin: 0;
}

.about-intro-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

/* Mission & Values */
.mission-values {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.mission-values h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.value-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

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

.team-member {
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

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

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-member h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Certifications */
.certifications {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.certifications h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
}

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

.cert-item img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.cert-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Timeline */
.timeline-section {
    padding: 5rem 0;
}

.timeline-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--accent-color);
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
}

.timeline-content {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--accent-color);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: var(--accent-color) !important;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.map-details h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.map-details h3:first-child {
    margin-top: 0;
}

.map-details ul {
    list-style: none;
}

.map-details li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.map-details i {
    color: var(--accent-color);
    width: 20px;
}

/* Blog Styles - Enhanced Professional Design */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-card-category {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(25, 55, 109, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.blog-image-container {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image {
    transform: scale(1.08);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-navy) 100%);
    color: white;
    font-size: 4rem;
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.blog-meta i {
    color: var(--primary-blue);
    font-size: 0.875rem;
}

.blog-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-navy);
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    align-self: flex-start;
}

.blog-link::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-navy);
    gap: 0.75rem;
}

.blog-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Blog Page Styles */
.blog-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

/* Mobile Blog Responsive Styles */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-hero {
        padding: 80px 0 40px 0;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-hero p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .blog-card-category {
        font-size: 0.65rem;
        padding: 0.375rem 0.75rem;
    }
    
    .blog-image-container {
        height: 200px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.25rem;
    }
    
    .blog-excerpt {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        gap: 1.5rem;
    }
    
    .blog-section {
        padding: 3rem 0;
    }
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    padding: 100px 0 60px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.blog-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: var(--text-primary);
    background-color: var(--white);
    border: 1px solid var(--secondary-gray);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    background-color: var(--light-gray);
    border-color: var(--primary-blue);
}

.pagination-link.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.pagination-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-link.disabled:hover {
    background-color: var(--white);
    border-color: var(--secondary-gray);
}

.pagination-prev,
.pagination-next {
    width: auto;
    padding: 0 1rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.newsletter-text h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form .form-control {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

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

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

/* Categories Section */
.categories-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.categories-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.category-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.875rem;
}

/* Booking Section Styles - Modernized */
.booking-section-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.booking-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 86, 166, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 86, 166, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.booking-calendar {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.calendar-header h3 {
    color: var(--primary-blue);
    margin: 0;
}

.date-picker input {
    padding: 0.75rem;
    border: 1px solid var(--secondary-gray);
    border-radius: 0.5rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.time-slot {
    padding: 1rem;
    background-color: var(--light-blue);
    border: 2px solid transparent;
    border-radius: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-blue);
    font-weight: 500;
}

.time-slot:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.time-slot.selected {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--secondary-blue);
}

.time-slot.unavailable {
    background-color: var(--light-gray);
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slot.unavailable:hover {
    background-color: var(--light-gray);
    color: var(--text-light);
    transform: none;
}

.no-slots {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 0.5rem;
}

.no-slots-container {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--light-gray);
    border-radius: 1rem;
    border: 2px dashed var(--secondary-gray);
}

.no-slots-icon {
    margin-bottom: 1.5rem;
}

.no-slots-icon i {
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.6;
}

.no-slots-container h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-slots-container>p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.no-slots-reasons {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-slots-reasons p {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.no-slots-reasons ul {
    margin: 0;
    padding-left: 1.5rem;
}

.no-slots-reasons li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-alternative {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-alternative p {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-alternative p:last-of-type {
    margin-bottom: 1.5rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    min-width: 140px;
}

.booking-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.booking-form h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

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

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--secondary-gray);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 86, 166, 0.1);
}

.selected-slot {
    background-color: var(--light-blue);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    font-weight: 500;
    text-align: center;
    display: none;
}

.selected-slot.show {
    display: block;
}

.booking-info {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.booking-info h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.booking-info ul {
    list-style: none;
    margin: 0;
}

.booking-info li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
}

.booking-success {
    background-color: var(--success);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.booking-success.show {
    display: block;
}

.booking-error {
    background-color: var(--error);
    color: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.booking-error.show {
    display: block;
}

/* Loading State */
.loading {
    display: none;
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.loading.show {
    display: block;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--light-gray);
    border-radius: 50%;
    border-top-color: var(--primary-blue);
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Booking Success Container Styles */
.booking-success-container {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    animation: successSlideIn 0.6s ease-out forwards;
}

/* Calendar Download Styles */
.calendar-download {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: successDetailsSlide 0.6s ease-out 1.1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.calendar-download p {
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 500;
}

.calendar-download .btn {
    background-color: var(--white);
    color: var(--success);
    border: 2px solid var(--white);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.calendar-download .btn:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.calendar-hint {
    font-size: 0.875rem;
    opacity: 0.9;
    font-style: italic;
}

.booking-success-icon {
    margin-bottom: 1.5rem;
}

.booking-success-icon i {
    font-size: 4rem;
    color: var(--white);
    animation: successIconBounce 0.8s ease-out 0.3s forwards;
    opacity: 0;
    transform: scale(0);
}

.booking-success-container h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2rem;
    animation: successTextSlide 0.6s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.booking-success-container>p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: successTextSlide 0.6s ease-out 0.7s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.booking-details {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: successDetailsSlide 0.6s ease-out 0.9s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.booking-details p {
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 500;
}

.booking-details p:last-child {
    margin-bottom: 0;
}

.booking-success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: successActionsSlide 0.6s ease-out 1.1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.booking-success-actions .btn {
    min-width: 180px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.booking-success-actions .btn-primary {
    background-color: var(--white);
    color: var(--success);
    border: 2px solid var(--white);
}

.booking-success-actions .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.booking-success-actions .btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.booking-success-actions .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Success Animations */
@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

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

@keyframes successIconBounce {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(0deg);
    }

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

@keyframes successTextSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes successDetailsSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes successActionsSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

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

    .hero-image {
        order: -1;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .why-us-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-detail-content,
    .service-detail-content.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-detail-image {
        order: -1;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .locations-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .locations-map {
        order: -1;
    }

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

    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: auto;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-intro-image {
        order: -1;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-date {
        left: 20px;
        transform: translateX(-50%);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

    .map-details {
        order: 1;
    }

    .map-container {
        order: -1;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .pagination-link {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .calendar-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
    }

    .time-slot {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }

    .booking-form {
        order: -1;
    }

    .booking-success-container {
        padding: 2rem 1.5rem;
    }

    .booking-success-container h3 {
        font-size: 1.5rem;
    }

    .booking-success-actions {
        flex-direction: column;
        align-items: center;
    }

    .booking-success-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Modern Booking Responsive Styles */
    .booking-container-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-calendar-modern,
    .booking-form-modern {
        padding: 2rem 1.5rem;
    }

    .calendar-header-modern {
        flex-direction: column;
        gap: 1.5rem;
    }

    .time-slots-modern {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }

    .booking-form-modern {
        order: -1;
    }

    .emergency-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .emergency-btn {
        justify-content: center;
    }
}

/* Very Small Screens - Fix Emergency Bar/FAB Overlap */
@media (max-width: 400px) {
    /* Adjust container padding for very small screens */
    .container {
        padding: 0 15px;
    }
    
    /* Adjust hero section for small screens */
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}/* Forms CSS - All Form Related Styles */

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--secondary-gray);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

/* Contact Form */
.contact-form {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-label span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.checkbox-label a {
    color: var(--primary-blue);
}

.form-submit {
    margin-top: 1.5rem;
}

.error-message {
    display: none;
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.success-message {
    background-color: var(--success);
    color: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form .form-control {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

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

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

/* Booking Form */
.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--secondary-gray);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 86, 166, 0.1);
}

.selected-slot {
    background-color: var(--light-blue);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    font-weight: 500;
    text-align: center;
    display: none;
}

.selected-slot.show {
    display: block;
}

.booking-info {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.booking-info h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.booking-info ul {
    list-style: none;
    margin: 0;
}

.booking-info li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
}

.booking-success {
    background-color: var(--success);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.booking-success.show {
    display: block;
}

.booking-error {
    background-color: var(--error);
    color: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.booking-error.show {
    display: block;
}

/* Form Validation Error Styles */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--error);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}

.form-group input.error:focus,
.form-group textarea.error:focus,
.form-group select.error:focus {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
    outline: none;
}

.error-message {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Loading State */
.loading {
    display: none;
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.loading.show {
    display: block;
}

/* Responsive Forms */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* ===== MODERN SERVICES OVERVIEW SECTION ===== */
.services-overview-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.services-overview-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-blue) 50%, transparent 100%);
}

/* Section Header */
.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 86, 166, 0.25);
}

.section-header-modern h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header-modern p {
    font-size: 1.125rem;
    color: var(--secondary-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid-modern {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Base Service Card */
.service-card-modern {
    background: white;
    border-radius: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 86, 166, 0.08);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

/* Emergency Card - Featured Design */
.emergency-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 12px 32px rgba(0, 86, 166, 0.15);
    transform: scale(1.03);
    position: relative;
}

.emergency-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue), var(--primary-navy));
    border-radius: 1.25rem;
    z-index: -1;
    animation: emergencyGlow 3s ease-in-out infinite alternate;
}

@keyframes emergencyGlow {
    0% { opacity: 0.6; }
    100% { opacity: 0.9; }
}

.card-header-emergency {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0 1.5rem;
    position: relative;
}

.emergency-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    animation: emergencyPulse 2s ease-in-out infinite;
}

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

.emergency-indicator {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    position: relative;
    animation: emergencyBlink 1s ease-in-out infinite alternate;
}

.emergency-indicator::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #ef4444;
    border-radius: 50%;
    animation: emergencyRipple 1.5s ease-out infinite;
}

@keyframes emergencyBlink {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes emergencyRipple {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Service Icons */
.service-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 2rem auto;
    position: relative;
    transition: all 0.3s ease;
}

.emergency-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(0, 86, 166, 0.25);
}

.standard-card .service-icon-modern {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(0, 86, 166, 0.1) 100%);
    color: var(--primary-blue);
    font-size: 1.75rem;
}

.service-card-modern:hover .service-icon-modern {
    transform: translateY(-4px) scale(1.1);
}

/* Service Content */
.service-content-modern {
    padding: 0 1.5rem 1.5rem 1.5rem;
    text-align: center;
}

.service-content-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-content-modern p {
    color: var(--secondary-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Service Highlights for Emergency Card */
.service-highlights {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(0, 86, 166, 0.1) 100%);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
    border: 1px solid rgba(0, 86, 166, 0.2);
}

.highlight-item i {
    font-size: 0.75rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 86, 166, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(0, 86, 166, 0.1);
}

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

.trust-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--secondary-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature Lists for Standard Cards */
.service-features-list {
    text-align: left;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.feature-item i {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    font-size: 0.625rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--secondary-gray);
    font-weight: 500;
}

/* Service Actions */
.service-actions-emergency {
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-emergency-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    border: none;
    cursor: pointer;
}

.btn-emergency-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
}

.btn-emergency-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-blue);
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-emergency-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-1px);
}

.service-actions-standard {
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-standard-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 86, 166, 0.2);
}

.btn-standard-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 86, 166, 0.3);
    gap: 0.75rem;
}

.service-price-hint {
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.service-price-hint span {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(0, 86, 166, 0.1) 100%);
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 86, 166, 0.2);
}

/* Emergency Note */
.emergency-note {
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--secondary-gray);
    background: rgba(0, 86, 166, 0.05);
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 86, 166, 0.1);
}

.emergency-note i {
    color: var(--primary-blue);
    font-size: 0.875rem;
}

/* Standard Card Overlays */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 86, 166, 0.02) 0%, rgba(0, 61, 115, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.standard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 86, 166, 0.15);
}

/* Trust Section */
.services-trust-section {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 86, 166, 0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.trust-item-main i {
    font-size: 2rem;
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(0, 86, 166, 0.1) 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 86, 166, 0.2);
}

.trust-item-main span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-navy);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .emergency-card {
        transform: none;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-overview-modern {
        padding: 4rem 0;
    }
    
    .section-header-modern h2 {
        font-size: 2.25rem;
    }
    
    .service-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-actions-standard {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-header-modern h2 {
        font-size: 1.875rem;
    }
    
    .service-content-modern h3 {
        font-size: 1.25rem;
    }
    
    .btn-emergency-primary {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Accessibility and Focus States */
.service-card-modern:focus-within {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
}

.btn-emergency-primary:focus,
.btn-emergency-secondary:focus,
.btn-standard-primary:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .service-card-modern,
    .service-icon-modern,
    .btn-emergency-primary,
    .btn-standard-primary {
        transition: none;
    }
    
    .emergency-badge,
    .emergency-indicator,
    .emergency-card::after {
        animation: none;
    }
}

/* Modern FAB Menu (Floating Action Button) */
.fab-container {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 9999;
}

.fab-main {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 86, 166, 0.25), 0 4px 8px rgba(0, 86, 166, 0.15);
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fabBounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.fab-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fab-main:hover::before {
    opacity: 1;
}

.fab-main:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(0, 86, 166, 0.35), 0 8px 16px rgba(0, 86, 166, 0.25);
}

.fab-main i {
    font-size: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.fab-main .fab-close {
    position: absolute;
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

.fab-container.active .fab-main .fas.fa-comment {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

.fab-container.active .fab-main .fab-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.fab-menu {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.fab-option {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.fab-container.active .fab-option {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

/* Halbkreisförmige Anordnung der Optionen */
.fab-option:nth-child(1) {
    /* Telefon - links oben */
    transition-delay: 0.1s;
}

.fab-container.active .fab-option:nth-child(1) {
    transform: scale(1) translate(-80px, -120px);
}

.fab-option:nth-child(2) {
    /* E-Mail - direkt oben */
    transition-delay: 0.15s;
}

.fab-container.active .fab-option:nth-child(2) {
    transform: scale(1) translate(-50px, -150px);
}

.fab-option:nth-child(3) {
    /* WhatsApp - rechts oben */
    transition-delay: 0.2s;
}

.fab-container.active .fab-option:nth-child(3) {
    transform: scale(1) translate(-20px, -160px);
}

.fab-phone {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
    box-shadow: 0 6px 24px rgba(220, 38, 38, 0.25), 0 3px 6px rgba(220, 38, 38, 0.15);
}

.fab-phone:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #b91c1c 100%);
    transform: scale(1.1) translate(-80px, -120px) !important;
    box-shadow: 0 12px 36px rgba(220, 38, 38, 0.35), 0 6px 12px rgba(220, 38, 38, 0.25);
}

.fab-email {
    background: linear-gradient(135deg, #374151 0%, #4b5563 50%, #374151 100%);
    box-shadow: 0 6px 24px rgba(55, 65, 81, 0.25), 0 3px 6px rgba(55, 65, 81, 0.15);
}

.fab-email:hover {
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%);
    transform: scale(1.1) translate(-50px, -150px) !important;
    box-shadow: 0 12px 36px rgba(55, 65, 81, 0.35), 0 6px 12px rgba(55, 65, 81, 0.25);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 50%, #25d366 100%);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.25), 0 3px 6px rgba(37, 211, 102, 0.15);
}

.fab-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 50%, #128c7e 100%);
    transform: scale(1.1) translate(-20px, -160px) !important;
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.35), 0 6px 12px rgba(37, 211, 102, 0.25);
}

/* Tooltips für die FAB-Optionen */
.fab-option::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10001;
}

.fab-option:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(-8px);
}

/* Backdrop für das geöffnete Menü */
.fab-container.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    z-index: -1;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

/* Accessibility */
.fab-main:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
}

.fab-option:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Animationen */
@keyframes fabBounceIn {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.3) rotate(360deg);
    }

    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05) rotate(180deg);
    }

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Pulse-Effekt für Aufmerksamkeit */
@keyframes fabPulse {
    0% {
        box-shadow: 0 8px 32px rgba(0, 86, 166, 0.25), 0 4px 8px rgba(0, 86, 166, 0.15), 0 0 0 0 rgba(0, 86, 166, 0.4);
    }

    70% {
        box-shadow: 0 8px 32px rgba(0, 86, 166, 0.25), 0 4px 8px rgba(0, 86, 166, 0.15), 0 0 0 20px rgba(0, 86, 166, 0);
    }

    100% {
        box-shadow: 0 8px 32px rgba(0, 86, 166, 0.25), 0 4px 8px rgba(0, 86, 166, 0.15), 0 0 0 0 rgba(0, 86, 166, 0);
    }
}

.fab-main.pulse {
    animation: fabPulse 2s infinite;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .fab-main {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .fab-option {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
}

/* Very Small Screens - Fix Emergency Bar/FAB Overlap */
@media (max-width: 400px) {
    .fab-container {
        bottom: 15px;
        right: 15px;
    }
    
    .fab-main {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    /* Reduce FAB option spacing for small screens */
    .fab-container.active .fab-option:nth-child(1) {
        transform: scale(1) translate(-65px, -40px);
    }
    
    .fab-container.active .fab-option:nth-child(2) {
        transform: scale(1) translate(-40px, -65px);
    }
    
    .fab-container.active .fab-option:nth-child(3) {
        transform: scale(1) translate(-15px, -75px);
    }
    
    .fab-option {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}/* Responsive CSS - All Media Query Styles */

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        margin: 0.5rem 1rem 0;
        border-radius: 0.75rem;
    }

    .nav-wrapper {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
        width: calc(100% - 2rem);
        margin: 0 1rem;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        border-radius: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

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

    .hero-image {
        order: -1;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .why-us-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-detail-content,
    .service-detail-content.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-detail-image {
        order: -1;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .locations-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .locations-map {
        order: -1;
    }

    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .fab-main {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .fab {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .fab-options {
        bottom: 60px;
    }

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

    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: auto;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-intro-image {
        order: -1;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-date {
        left: 20px;
        transform: translateX(-50%);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

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

    .map-details {
        order: 1;
    }

    .map-container {
        order: -1;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .calendar-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
    }

    .time-slot {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }

    .booking-form {
        order: -1;
    }

    .booking-success-container {
        padding: 2rem 1.5rem;
    }

    .booking-success-container h3 {
        font-size: 1.5rem;
    }

    .booking-success-actions {
        flex-direction: column;
        align-items: center;
    }

    .booking-success-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .pagination-link {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
}

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

    .service-card:nth-child(4) {
        grid-column: 1 / 3;
    }

    .service-card:nth-child(5) {
        grid-column: 3 / 4;
    }
}

/* Very Small Screens - Fix Emergency Bar/FAB Overlap */
@media (max-width: 400px) {
    /* Reduce emergency bar padding to save space */
    .emergency-contact-bar {
        padding: 0.5rem 0;
    }
    
    .emergency-content {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .emergency-label {
        font-size: 0.8rem;
    }
    
    .emergency-phone,
    .emergency-whatsapp {
        padding: 0.375rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Adjust FAB positioning and size for very small screens */
    .fab-container {
        bottom: 15px;
        right: 15px;
    }
    
    .fab-main {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    /* Reduce FAB option spacing for small screens */
    .fab-container.active .fab-option:nth-child(1) {
        transform: scale(1) translate(-65px, -40px);
    }
    
    .fab-container.active .fab-option:nth-child(2) {
        transform: scale(1) translate(-40px, -65px);
    }
    
    .fab-container.active .fab-option:nth-child(3) {
        transform: scale(1) translate(-15px, -75px);
    }
    
    .fab-option {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    /* Adjust container padding for very small screens */
    .container {
        padding: 0 15px;
    }
    
    /* Make navigation more compact */
    .navbar {
        padding: 0.75rem 0;
    }
    
    /* Adjust hero section for small screens */
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}
/* Blog Post Styles */
.blog-post-section {
    padding: 2rem 0;
    background-color: var(--white);
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-post-header {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-post-meta span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-meta i {
    color: var(--primary-blue);
}

.blog-post-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-post-excerpt {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.blog-post-image {
    margin-bottom: 2rem;
}

.blog-post-featured-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.blog-post-body {
    margin-bottom: 3rem;
}

.blog-post-text {
    line-height: 1.8;
    color: var(--text-primary);
}

.blog-post-text h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    border-bottom: 2px solid var(--light-blue);
    padding-bottom: 0.5rem;
}

.blog-post-text h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-blue);
}

.blog-post-text h4 {
    font-size: 1.2rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gray);
}

.blog-post-text p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.blog-post-text ul,
.blog-post-text ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.blog-post-text li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.blog-post-text ul li {
    position: relative;
}

.blog-post-text ul li::before {
    content: "▶";
    color: var(--primary-blue);
    position: absolute;
    left: -1.5rem;
    top: 0;
}

.blog-post-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.blog-post-text blockquote {
    border-left: 4px solid var(--primary-blue);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
    background-color: var(--light-gray);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

.blog-post-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-md);
}

.blog-post-footer {
    border-top: 1px solid #e5e5e5;
    padding-top: 2rem;
    margin-top: 2rem;
}

.blog-post-tags {
    margin-bottom: 2rem;
}

.blog-post-tags strong {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

.tag {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.blog-post-share {
    text-align: center;
}

.blog-post-share h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

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

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.linkedin {
    background-color: #0077b5;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.share-btn.email {
    background-color: var(--secondary-gray);
}

.blog-post-navigation {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

/* Related Articles Section */
.related-articles-section {
    padding: 3rem 0;
    background-color: var(--light-gray);
}

.related-articles-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.related-article {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-article:hover {
    transform: translateY(-5px);
}

.related-article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-article-content {
    padding: 1.5rem;
}

.related-article-content h3 {
    margin-bottom: 0.75rem;
}

.related-article-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
}

.related-article-content h3 a:hover {
    color: var(--primary-blue);
}

.related-article-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.related-article-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

.related-article-meta i {
    color: var(--primary-blue);
    margin-right: 0.25rem;
}

/* Loading and Error States */
.loading-state,
.error-state {
    text-align: center;
    padding: 3rem 0;
}

.loading-state p,
.error-state p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.error-state h1 {
    color: var(--error);
    margin-bottom: 1rem;
}

/* Blog Filters */
.blog-filters {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.blog-filters select,
.blog-filters input {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 1rem;
}

.blog-filters select:focus,
.blog-filters input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0, 86, 166, 0.1);
}

/* Mobile Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-post-content h1 {
        font-size: 2rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-post-meta span {
        justify-content: center;
    }
    
    .blog-post-text h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-text h3 {
        font-size: 1.25rem;
    }
    
    .share-buttons {
        gap: 0.75rem;
    }
    
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-filters > div {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-filters select,
    .blog-filters input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-post-container {
        padding: 0 15px;
    }
    
    .blog-post-content h1 {
        font-size: 1.75rem;
    }
    
    .blog-post-text {
        font-size: 1rem;
    }
    
    .blog-post-text p,
    .blog-post-text li {
        font-size: 1rem;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
EOF < /dev/null
/* Blog Post Styles */
.blog-post-section {
    padding: 2rem 0;
    background-color: var(--white);
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-post-header {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-post-meta span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-meta i {
    color: var(--primary-blue);
}

.blog-post-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-post-excerpt {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.blog-post-image {
    margin-bottom: 2rem;
}

.blog-post-featured-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.blog-post-body {
    margin-bottom: 3rem;
}

.blog-post-text {
    line-height: 1.8;
    color: var(--text-primary);
}

.blog-post-text h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    border-bottom: 2px solid var(--light-blue);
    padding-bottom: 0.5rem;
}

.blog-post-text h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-blue);
}

.blog-post-text h4 {
    font-size: 1.2rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gray);
}

.blog-post-text p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.blog-post-text ul,
.blog-post-text ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.blog-post-text li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.blog-post-text ul li {
    position: relative;
}

.blog-post-text ul li::before {
    content: "▶";
    color: var(--primary-blue);
    position: absolute;
    left: -1.5rem;
    top: 0;
}

.blog-post-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.blog-post-text blockquote {
    border-left: 4px solid var(--primary-blue);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
    background-color: var(--light-gray);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

.blog-post-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-md);
}

.blog-post-footer {
    border-top: 1px solid #e5e5e5;
    padding-top: 2rem;
    margin-top: 2rem;
}

.blog-post-tags {
    margin-bottom: 2rem;
}

.blog-post-tags strong {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

.tag {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.blog-post-share {
    text-align: center;
}

.blog-post-share h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

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

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.linkedin {
    background-color: #0077b5;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.share-btn.email {
    background-color: var(--secondary-gray);
}

.blog-post-navigation {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

/* Related Articles Section */
.related-articles-section {
    padding: 3rem 0;
    background-color: var(--light-gray);
}

.related-articles-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.related-article {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-article:hover {
    transform: translateY(-5px);
}

.related-article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-article-content {
    padding: 1.5rem;
}

.related-article-content h3 {
    margin-bottom: 0.75rem;
}

.related-article-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
}

.related-article-content h3 a:hover {
    color: var(--primary-blue);
}

.related-article-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.related-article-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

.related-article-meta i {
    color: var(--primary-blue);
    margin-right: 0.25rem;
}

/* Loading and Error States */
.loading-state,
.error-state {
    text-align: center;
    padding: 3rem 0;
}

.loading-state p,
.error-state p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.error-state h1 {
    color: var(--error);
    margin-bottom: 1rem;
}

/* Blog Filters */
.blog-filters {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.blog-filters select,
.blog-filters input {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 1rem;
}

.blog-filters select:focus,
.blog-filters input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0, 86, 166, 0.1);
}

/* Mobile Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-post-content h1 {
        font-size: 2rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-post-meta span {
        justify-content: center;
    }
    
    .blog-post-text h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-text h3 {
        font-size: 1.25rem;
    }
    
    .share-buttons {
        gap: 0.75rem;
    }
    
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-filters > div {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-filters select,
    .blog-filters input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-post-container {
        padding: 0 15px;
    }
    
    .blog-post-content h1 {
        font-size: 1.75rem;
    }
    
    .blog-post-text {
        font-size: 1rem;
    }
    
    .blog-post-text p,
    .blog-post-text li {
        font-size: 1rem;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Modern Process Timeline Design */
.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-blue) 0%, 
        var(--primary-blue) 25%, 
        var(--secondary-blue) 50%, 
        var(--primary-navy) 75%, 
        var(--primary-navy-dark) 100%);
    border-radius: 2px;
    z-index: 1;
}

.process-steps-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.process-step-modern {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.step-indicator {
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 3;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--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(0, 86, 166, 0.3);
    border: 3px solid var(--white);
}

.step-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--background-soft) 100%);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 86, 166, 0.15);
    transition: all 0.3s ease;
}

.step-icon-modern i {
    font-size: 1.75rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.step-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-whisper);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    width: 100%;
}

.step-header {
    margin-bottom: 1rem;
}

.step-header h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-blue), #e0f2fe);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.step-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--background-soft);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: auto;
}

.step-highlight i {
    color: var(--primary-blue);
    font-size: 0.875rem;
}

.step-highlight span {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Progressive Color Enhancement */
.process-step-modern[data-step="1"] .step-number {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue));
}

.process-step-modern[data-step="2"] .step-number {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.process-step-modern[data-step="3"] .step-number {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-navy));
}

.process-step-modern[data-step="4"] .step-number {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
}

/* Hover Effects */
.process-step-modern:hover .step-icon-modern {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 86, 166, 0.25);
    border-color: var(--secondary-blue);
}

.process-step-modern:hover .step-icon-modern i {
    color: var(--secondary-blue);
    transform: scale(1.1);
}

.process-step-modern:hover .step-card {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.process-step-modern:hover .step-number {
    transform: translateX(-50%) scale(1.1);
}


/* Mobile Responsive Design for Process Timeline */
@media (max-width: 1024px) {
    .process-steps-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .step-card {
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .process-timeline {
        padding: 2rem 0;
    }
    
    .process-steps-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .process-step-modern {
        position: relative;
    }
    
    .process-step-modern:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 2rem;
        background: linear-gradient(180deg, var(--primary-blue), var(--secondary-blue));
        border-radius: 1px;
    }
    
    .step-indicator {
        margin-bottom: 1rem;
    }
    
    .step-icon-modern {
        width: 70px;
        height: 70px;
    }
    
    .step-icon-modern i {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        top: -10px;
    }
    
    .step-card {
        min-height: auto;
        padding: 1.5rem 1rem;
    }
    
    .step-header h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .process-timeline {
        padding: 1.5rem 0;
    }
    
    .step-icon-modern {
        width: 60px;
        height: 60px;
    }
    
    .step-icon-modern i {
        font-size: 1.25rem;
    }
    
    .step-card {
        padding: 1.25rem 0.875rem;
    }
    
    .step-badge {
        font-size: 0.6875rem;
        padding: 0.1875rem 0.625rem;
    }
    
    .step-highlight {
        padding: 0.625rem 0.875rem;
    }
}


/* Animation and Interaction Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInTimeline {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 90%;
        opacity: 1;
    }
}

/* Apply animations on load */
.process-step-modern {
    animation: fadeInUp 0.6s ease-out;
}

.process-step-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step-modern:nth-child(3) {
    animation-delay: 0.3s;
}

.process-step-modern:nth-child(4) {
    animation-delay: 0.4s;
}

.timeline-line {
    animation: slideInTimeline 1.5s ease-out 0.5s both;
}

/* Enhanced interaction states */
.step-badge {
    transition: all 0.3s ease;
}

.process-step-modern:hover .step-badge {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 86, 166, 0.2);
}

.step-highlight {
    transition: all 0.3s ease;
}

.process-step-modern:hover .step-highlight {
    background: linear-gradient(135deg, var(--light-blue), #e0f2fe);
    transform: scale(1.02);
}

/* Subtle glow effect on focus */
.process-step-modern:focus-within .step-icon-modern,
.process-step-modern:hover .step-icon-modern {
    box-shadow: 0 12px 32px rgba(0, 86, 166, 0.25), 
                0 0 0 4px rgba(0, 86, 166, 0.1);
}

/* Accessibility: Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms \!important;
        animation-iteration-count: 1 \!important;
        transition-duration: 0.01ms \!important;
    }
    
    .process-step-modern:hover .step-icon-modern,
    .process-step-modern:hover .step-card,
    .process-step-modern:hover .step-number {
        transform: none;
    }
}

/* ============================================
   MAP STYLES - Custom Leaflet Map Styles
   ============================================ */

.custom-marker {
    background: none !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.custom-marker.main-marker {
    color: #dc2626;
    font-size: 24px;
}

.custom-marker.service-marker {
    color: #0056a6;
    font-size: 20px;
}

.map-popup {
    font-family: 'Inter', sans-serif;
    min-width: 200px;
}

.map-popup h4 {
    margin: 0 0 10px 0;
    color: #0056a6;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-popup p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

.map-popup a {
    color: #0056a6;
    text-decoration: none;
}

.map-popup a:hover {
    text-decoration: underline;
}

.map-popup ul {
    font-size: 14px;
    line-height: 1.4;
}

.map-legend {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-icon.main-marker-legend {
    color: #dc2626;
    font-size: 16px;
}

.legend-icon.service-marker-legend {
    color: #0056a6;
    font-size: 14px;
}

.area-legend-circle {
    width: 16px;
    height: 16px;
    background-color: rgba(219, 234, 254, 0.1);
    border: 1px solid rgba(0, 86, 166, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.leaflet-popup-tip {
    background: white;
}

/* ============================================
   WHY-US SECTION ENHANCEMENTS
   ============================================ */

/* Enhanced benefit items structure */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 86, 166, 0.2);
}

.benefit-content {
    flex: 1;
}

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

.benefit-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Enhanced stat cards */
.stat-card {
    position: relative;
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.1rem;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

/* Responsive enhancements */
@media (max-width: 768px) {
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .benefit-content h4 {
        font-size: 1rem;
    }
    
    .stat-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* ============================================
   LOCATIONS SECTION ENHANCEMENTS
   ============================================ */

/* Enhanced locations intro */
.locations-intro {
    margin-bottom: 2rem;
}

.locations-intro h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.locations-intro p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}


/* Location grid layout */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Enhanced location items */
.location-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 86, 166, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.location-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 86, 166, 0.15);
}

.location-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
}

/* Special styling for main office (Düsseldorf) */
.location-item:first-child .location-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

/* Service features styling */
.location-item.service-feature {
    background: linear-gradient(135deg, rgba(0, 86, 166, 0.05), rgba(255, 108, 55, 0.05));
    border-color: var(--accent-color);
}

.location-item.service-feature:hover {
    background: linear-gradient(135deg, rgba(0, 86, 166, 0.1), rgba(255, 108, 55, 0.1));
}

.location-item.service-feature .location-icon {
    background: linear-gradient(135deg, var(--accent-color), #ff8c42);
}


/* Enhanced map container */
.locations-map .map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 86, 166, 0.1);
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .location-item {
        padding: 0.5rem 0.75rem;
    }
    
    .location-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .locations-intro h3 {
        font-size: 1.3rem;
    }
    
    .locations-intro p {
        font-size: 1rem;
    }
}

/* ============================================
   FAQ SECTION MODERN ENHANCEMENTS
   ============================================ */

/* FAQ Answer Animation */
.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 500px;
    padding: 1.5rem;
}

/* FAQ Toggle Icon Animation */
.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item-modern.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-toggle i {
    transition: all 0.3s ease;
}

.faq-item-modern.active .faq-toggle i:before {
    content: "\ec78"; /* ti-minus icon */
}

/* FAQ Question Hover Effects */
.faq-question-modern {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-modern:hover {
    background: rgba(0, 86, 166, 0.02);
}

/* FAQ Item Active State */
.faq-item-modern.active {
    border-color: var(--accent-color);
    box-shadow: 0 12px 35px rgba(0, 86, 166, 0.15);
}

/* FAQ Answer Content Styling */
.faq-answer-content {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.faq-item-modern.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Benefits Points */
.faq-benefits {
    margin: 1rem 0;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.benefit-point i {
    color: #10b981;
    font-size: 1rem;
}

/* FAQ Action Buttons */
.faq-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.faq-action-btn:hover {
    background: #004494;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 86, 166, 0.3);
}

/* FAQ Meta Styling */
.faq-meta {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.faq-category {
    background: rgba(0, 86, 166, 0.1);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.faq-urgency {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.faq-urgency.urgent {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.faq-urgency.standard {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.faq-urgency.positive {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .faq-answer-modern {
        padding: 0 1rem;
    }
    
    .faq-item-modern.active .faq-answer-modern {
        padding: 1rem;
    }
    
    .faq-action-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* === MODERNIZED CTA SECTION WITH CONVERSION OPTIMIZATION === */
.cta-section-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--primary-navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Background Pattern for Visual Interest */
.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Main CTA Content */
.cta-main-content {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
    to { box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
}

.cta-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin: 2rem 0 1.5rem 0;
    line-height: 1.1;
    color: var(--white);
}

.headline-highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: highlightPulse 3s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.cta-subheading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    animation: urgencyPulse 2s ease-in-out infinite;
}

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

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.urgency-content i {
    font-size: 1.5rem;
    animation: alertBlink 1.5s ease-in-out infinite;
}

@keyframes alertBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Primary CTA Buttons */
.cta-primary-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2.5rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 280px;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-btn-emergency {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.cta-btn-emergency:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
}

.cta-btn-primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    position: relative;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text strong {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-text small {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Pulsing effect for emergency button */
.btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Scenario Grid */
.cta-scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.cta-scenario-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.cta-scenario-card:hover::before {
    left: 100%;
}

.cta-scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.emergency-scenario {
    border-color: rgba(220, 38, 38, 0.5);
    background: rgba(220, 38, 38, 0.1);
}

.emergency-scenario:hover {
    border-color: rgba(220, 38, 38, 0.8);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

.scenario-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.emergency-scenario .scenario-icon {
    color: #fca5a5;
}

.scenario-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.scenario-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.scenario-benefits {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.benefit-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scenario-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scenario-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.scenario-btn.emergency {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: var(--white);
}

.scenario-btn.emergency:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.scenario-btn.primary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.scenario-btn.primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.scenario-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.scenario-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Trust Section */
.cta-trust-section {
    margin: 4rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.trust-headline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-headline i {
    font-size: 2rem;
    color: #10b981;
}

.trust-headline h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.trust-indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-indicator {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-indicator:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.trust-stat {
    margin-bottom: 1rem;
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
}

.trust-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0.9;
}

.trust-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
    opacity: 0.8;
}

.star-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Guarantees Section */
.cta-guarantees {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.guarantee-badge i {
    font-size: 1.3rem;
}

.guarantee-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

.guarantee-item i {
    color: #10b981;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Final Push Section */
.cta-final-push {
    background: rgba(220, 38, 38, 0.15);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    animation: finalPushGlow 3s ease-in-out infinite;
}

@keyframes finalPushGlow {
    0%, 100% { 
        border-color: rgba(220, 38, 38, 0.3);
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
    }
    50% { 
        border-color: rgba(220, 38, 38, 0.5);
        box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
    }
}

.push-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.push-icon {
    font-size: 3rem;
    color: #fca5a5;
    animation: urgentShake 2s ease-in-out infinite;
}

@keyframes urgentShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.push-text {
    color: var(--white);
}

.push-text strong {
    font-size: 1.5rem;
    color: #fca5a5;
    display: block;
    margin-bottom: 0.5rem;
}

.push-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.push-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    animation: ctaButtonPulse 2s ease-in-out infinite;
}

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

.push-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
    animation: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cta-section-modern {
        padding: 3rem 0;
    }
    
    .cta-headline {
        font-size: 2.5rem;
    }
    
    .cta-subheading {
        font-size: 1.2rem;
    }
    
    .cta-primary-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        min-width: 100%;
        max-width: 350px;
    }
    
    .cta-scenario-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-indicators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-indicator {
        padding: 1.5rem;
    }
    
    .guarantee-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .push-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .urgency-bar {
        padding: 0.75rem 1.5rem;
    }
    
    .urgency-content {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .scenario-actions {
        flex-direction: column;
    }
    
    .scenario-btn {
        flex: none;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .trust-indicators-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .cta-guarantees,
    .cta-final-push {
        padding: 1.5rem;
    }
    
    .push-text strong {
        font-size: 1.3rem;
    }
}

/* ===========================================
   BLOG STYLES - Enhanced Blog Components
   =========================================== */

/* Blog Cards */
.blog-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* Better SVG rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-fallback-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.6;
}

.blog-card-header {
    padding: 1.5rem 1.5rem 0;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-date {
    color: var(--secondary-gray);
    font-size: 0.85rem;
}

.blog-card-content {
    padding: 0 1.5rem 1rem;
}

.blog-title {
    margin-bottom: 1rem;
}

.blog-title a {
    color: var(--primary-navy);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-blue);
}

.blog-excerpt {
    color: var(--secondary-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-tag {
    background: var(--light-gray);
    color: var(--secondary-gray);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
}

.blog-card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--light-gray);
}


.blog-read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--accent-color);
}

/* Blog States */
.no-posts, .blog-error {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--secondary-gray);
}

.no-posts-icon, .blog-error-icon {
    font-size: 3rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.blog-error-icon {
    color: #e74c3c;
}

.no-posts h3, .blog-error h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.loading-state {
    text-align: center;
    padding: 2rem;
    color: var(--secondary-gray);
}

/* Pagination Enhanced */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-number, .pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border: 2px solid var(--light-gray);
    background: white;
    color: var(--secondary-gray);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-number:hover, .pagination-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.pagination-number.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.pagination-dots {
    padding: 0 0.5rem;
    color: var(--secondary-gray);
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    
    .pagination-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-numbers {
        order: 2;
    }
}
