/* Print optimization */
/* Typography Scale and Spacing System - Frontend */
:root {
    /* Typography Scale - Modular Scale (1.250 - Major Third) */
    --font-size-xs: 0.75rem;           /* 12px */
    --font-size-sm: 0.875rem;          /* 14px */
    --font-size-base: 1rem;            /* 16px - Base size */
    --font-size-lg: 1.125rem;          /* 18px */
    --font-size-xl: 1.25rem;           /* 20px */
    --font-size-2xl: 1.5rem;           /* 24px */
    --font-size-3xl: 1.875rem;         /* 30px */
    --font-size-4xl: 2.25rem;          /* 36px */
    --font-size-5xl: 3rem;             /* 48px */
    --font-size-6xl: 3.75rem;          /* 60px */
    
    /* Font Weights */
    --font-weight-thin: 100;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    /* Line Heights for Optimal Readability */
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;
    
    /* Letter Spacing */
    --letter-spacing-tighter: -0.05em;
    --letter-spacing-tight: -0.025em;
    --letter-spacing-normal: 0em;
    --letter-spacing-wide: 0.025em;
    --letter-spacing-wider: 0.05em;
    --letter-spacing-widest: 0.1em;
    
    /* Consistent Spacing Scale (8px base unit) */
    --spacing-px: 1px;
    --spacing-0: 0;
    --spacing-1: 0.25rem;              /* 4px */
    --spacing-2: 0.5rem;               /* 8px */
    --spacing-3: 0.75rem;              /* 12px */
    --spacing-4: 1rem;                 /* 16px */
    --spacing-5: 1.25rem;              /* 20px */
    --spacing-6: 1.5rem;               /* 24px */
    --spacing-7: 1.75rem;              /* 28px */
    --spacing-8: 2rem;                 /* 32px */
    --spacing-9: 2.25rem;              /* 36px */
    --spacing-10: 2.5rem;              /* 40px */
    --spacing-12: 3rem;                /* 48px */
    --spacing-16: 4rem;                /* 64px */
    --spacing-20: 5rem;                /* 80px */
    --spacing-24: 6rem;                /* 96px */
    
    /* Semantic Spacing */
    --spacing-xs: var(--spacing-1);    /* 4px */
    --spacing-sm: var(--spacing-2);    /* 8px */
    --spacing-md: var(--spacing-4);    /* 16px */
    --spacing-lg: var(--spacing-6);    /* 24px */
    --spacing-xl: var(--spacing-8);    /* 32px */
    --spacing-2xl: var(--spacing-12);  /* 48px */
    --spacing-3xl: var(--spacing-16);  /* 64px */
    
    /* Border Radius Scale */
    --radius-none: 0;
    --radius-sm: 0.125rem;             /* 2px */
    --radius-base: 0.25rem;            /* 4px */
    --radius-md: 0.375rem;             /* 6px */
    --radius-lg: 0.5rem;               /* 8px */
    --radius-xl: 0.75rem;              /* 12px */
    --radius-2xl: 1rem;                /* 16px */
    --radius-3xl: 1.5rem;              /* 24px */
    --radius-full: 9999px;
    
    /* Shadow Scale for Depth */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-base: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* Transition Timing */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* WCAG AA Compliant Colors */
    --primary-blue: #1e40af;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-tertiary: #64748b;
    --text-muted: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
}

/* Base Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--text-primary);
    font-weight: var(--font-weight-normal);
    letter-spacing: var(--letter-spacing-normal);
}

/* Heading Hierarchy */
h1, .h1 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    color: var(--text-primary);
    margin-bottom: var(--spacing-6);
    margin-top: 0;
}

h2, .h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    color: var(--text-primary);
    margin-bottom: var(--spacing-5);
    margin-top: 0;
}

h3, .h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-snug);
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-primary);
    margin-bottom: var(--spacing-4);
    margin-top: 0;
}

h4, .h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-snug);
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-primary);
    margin-bottom: var(--spacing-3);
    margin-top: 0;
}

h5, .h5 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-3);
    margin-top: 0;
}

h6, .h6 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-wide);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2);
    margin-top: 0;
    text-transform: uppercase;
}

/* Paragraphs and Text Elements */
p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--text-primary);
    margin-bottom: var(--spacing-4);
    margin-top: 0;
}

.lead {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--text-secondary);
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--spacing-6);
}

small, .small {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    color: var(--text-tertiary);
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1, .h1 {
        font-size: var(--font-size-3xl);
    }
    
    h2, .h2 {
        font-size: var(--font-size-2xl);
    }
    
    h3, .h3 {
        font-size: var(--font-size-xl);
    }
    
    .lead {
        font-size: var(--font-size-base);
    }
}

@media print {
    .navbar, .footer, .btn, .mobile-contact-sticky {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black !important;
        background: white !important;
    }
    
    .container {
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .card {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        break-inside: avoid;
    }
}
/* Better error states */
.error-message {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 1rem;
    border-radius: 12px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-message {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border: 1px solid #86efac;
    color: #16a34a;
    padding: 1rem;
    border-radius: 12px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Better mobile touch targets */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Enhanced Mobile Navigation */
    .enhanced-mobile-toggle {
        border: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 8px;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        min-height: 44px;
        min-width: 44px;
    }
    
    .enhanced-mobile-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 1);
    }
    
    .enhanced-mobile-toggle:focus {
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
        outline: none;
    }
    
    .mobile-menu-text {
        font-size: 0.75rem;
        color: white;
        display: block;
        margin-top: 0.25rem;
        font-weight: 500;
    }
    
    .enhanced-mobile-nav {
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 15px 15px;
        margin-top: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .enhanced-nav-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem !important;
        margin: 0.25rem 0;
        border-radius: 12px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        min-height: 48px;
    }
    
    .enhanced-nav-link:hover {
        background: rgba(232, 191, 150, 0.1);
        border-color: rgba(232, 191, 150, 0.3);
        transform: translateX(8px);
    }
    
    .enhanced-nav-link:active {
        transform: translateX(8px) scale(0.98);
    }
    
    .enhanced-nav-link i {
        font-size: 1.25rem;
        color: #e8bf96;
        flex-shrink: 0;
    }
    
    .enhanced-nav-link span {
        font-weight: 500;
        font-size: 1rem;
    }
    
    .mobile-lang-wrapper {
        padding: 1rem 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 1rem;
    }
    
    .mobile-lang-wrapper .lang-select {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        border-radius: 8px;
        min-height: 44px;
    }
    
    .mobile-lang-wrapper .lang-select:focus {
        background: rgba(255, 255, 255, 0.2);
        border-color: #e8bf96;
        box-shadow: 0 0 0 3px rgba(232, 191, 150, 0.2);
    }
    
    /* Sticky contact button on mobile */
    .mobile-contact-sticky {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        border-radius: 50px;
        padding: 1rem 1.5rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        animation: pulse 2s infinite;
        min-height: 56px;
        font-weight: 600;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        border: 2px solid #e8bf96;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .mobile-contact-sticky:hover {
        color: white;
        transform: scale(1.05);
        animation: none;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    /* Improved mobile navigation */
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: 2px solid var(--primary-blue);
    }
}

/* Better contrast for readability */
.text-muted {
    color: var(--text-muted) !important; /* WCAG AA compliant */
}

/* Enhanced Button System */
.btn {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    padding: var(--spacing-3) var(--spacing-6);
    border-radius: var(--radius-lg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    transition: var(--transition-fast);
    cursor: pointer;
    letter-spacing: var(--letter-spacing-wide);
    min-height: 44px; /* WCAG AA minimum touch target */
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Card System with Typography */
.card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-6);
    margin-bottom: var(--spacing-6);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

/* Spacing Utilities for Frontend */
.mb-2 { margin-bottom: var(--spacing-2); }
.mb-3 { margin-bottom: var(--spacing-3); }
.mb-4 { margin-bottom: var(--spacing-4); }
.mb-5 { margin-bottom: var(--spacing-5); }
.mb-6 { margin-bottom: var(--spacing-6); }

.mt-2 { margin-top: var(--spacing-2); }
.mt-3 { margin-top: var(--spacing-3); }
.mt-4 { margin-top: var(--spacing-4); }
.mt-5 { margin-top: var(--spacing-5); }
.mt-6 { margin-top: var(--spacing-6); }

.p-3 { padding: var(--spacing-3); }
.p-4 { padding: var(--spacing-4); }
.p-5 { padding: var(--spacing-5); }
.p-6 { padding: var(--spacing-6); }

.px-3 { padding-left: var(--spacing-3); padding-right: var(--spacing-3); }
.px-4 { padding-left: var(--spacing-4); padding-right: var(--spacing-4); }
.px-5 { padding-left: var(--spacing-5); padding-right: var(--spacing-5); }
.px-6 { padding-left: var(--spacing-6); padding-right: var(--spacing-6); }

.py-3 { padding-top: var(--spacing-3); padding-bottom: var(--spacing-3); }
.py-4 { padding-top: var(--spacing-4); padding-bottom: var(--spacing-4); }
.py-5 { padding-top: var(--spacing-5); padding-bottom: var(--spacing-5); }
.py-6 { padding-top: var(--spacing-6); padding-bottom: var(--spacing-6); }

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-blue);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Enhanced Contact Form Integration */
.contact-form-wrapper {
    padding: 2rem 1rem;
}

.contact-hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    margin-bottom: 2rem;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

/* Ensure form validation styles work across all forms */
.form-control.error {
    border-color: #dc3545 !important;
    background-color: rgba(248, 215, 218, 0.3) !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1) !important;
}

.form-control.success {
    border-color: #28a745 !important;
    background-color: rgba(212, 237, 218, 0.3) !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.1) !important;
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    animation: slideIn 0.3s ease;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

.form-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    border-radius: inherit;
}

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

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

/* Enhanced button interactions and ripple effects */
.enhanced-submit-btn, .enhanced-delete-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced focus states for accessibility */
.enhanced-contact-form input:focus,
.enhanced-contact-form textarea:focus,
.enhanced-submit-btn:focus,
.enhanced-delete-btn:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Better form feedback positioning */
.form-feedback-container {
    animation: slideIn 0.3s ease;
}

/* Improved mobile form experience */
@media (max-width: 768px) {
    .enhanced-contact-form {
        margin: 0.5rem;
        padding: 1.5rem;
    }
    
    .enhanced-contact-form .form-group-floating input,
    .enhanced-contact-form .form-group-floating textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem 0.75rem 0.6rem;
    }
    
    .enhanced-submit-btn {
        width: 100%;
        min-height: 48px;
    }
}

/* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
    .enhanced-contact-form {
        background: rgba(26, 26, 46, 0.95);
        color: white;
    }
    
    .enhanced-contact-form .form-control {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
        color: white;
    }
    
    .enhanced-contact-form .form-control:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: #007bff;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* Floating labels for better UX */
.form-group-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group-floating input,
.form-group-floating textarea {
    width: 100%;
    padding: 1rem 1rem 0.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.form-group-floating label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1rem;
    color: #64748b;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group-floating input:focus,
.form-group-floating textarea:focus,
.form-group-floating input:not(:placeholder-shown),
.form-group-floating textarea:not(:placeholder-shown) {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group-floating input:focus + label,
.form-group-floating textarea:focus + label,
.form-group-floating input:not(:placeholder-shown) + label,
.form-group-floating textarea:not(:placeholder-shown) + label {
    top: 0.25rem;
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Form validation states */
.form-group-floating input:valid {
    border-color: var(--accent-success);
}

.form-group-floating input:invalid:not(:placeholder-shown) {
    border-color: var(--accent-danger);
}


/* Loading skeleton for content */
.skeleton-loader {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
}

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

/* Smooth hover transitions for all interactive elements */
button, a, .card, input, textarea {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle focus indicators */
button:focus, a:focus, input:focus, textarea:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Improved button states */
.btn:active {
    transform: translateY(1px) scale(0.98);
}

/* Smooth page transitions */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    animation: pageEnter 0.5s ease-out forwards;
}

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

/* ---- HEADER.PHP STYLES ---- */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    background: linear-gradient(135deg, #f5f6fa 0%, #e9ecef 100%);
    /* fallback for old browsers */
    background-color: #f5f6fa;
}

.navbar-custom {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-bottom: 2px solid #e8bf96;
    padding: 0.75rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.navbar-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e8bf96, #d4af7a, #e8bf96);
    opacity: 0.8;
}

.navbar-brand {
    position: relative;
    padding: 0.5rem 0;
}

.navbar-brand img {
    max-height: 50px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-custom .nav-link {
    color: #f8f9fa !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem !important;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #e8bf96, #d4af7a);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #e8bf96 !important;
    transform: translateY(-1px);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #2c3e50;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    backdrop-filter: blur(10px);
}

.dropdown-item {
    color: #f8f9fa;
    padding: 0.875rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(232, 191, 150, 0.1), transparent);
    color: #e8bf96;
    border-left-color: #e8bf96;
    transform: translateX(5px);
}

.lang-select {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #f8f9fa;
    border: 1px solid #4a5568;
    border-radius: 25px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    min-width: 80px;
    text-align: center;
}

.lang-select:hover, .lang-select:focus {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    border-color: #e8bf96;
    box-shadow: 0 4px 15px rgba(232, 191, 150, 0.2);
    transform: translateY(-1px);
}

.lang-select option {
    background: #1a1a2e;
    color: #f8f9fa;
}

.navbar-toggler {
    border: 1px solid #4a5568;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(232, 191, 150, 0.25);
    border-color: #e8bf96;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28248, 249, 250, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-custom {
        padding: 0.5rem 0;
    }
    .navbar-custom .nav-link {
        padding: 1rem 1.5rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0.25rem 0;
    }
    .navbar-custom .nav-link::after {
        display: none;
    }
    .navbar-custom .nav-link:hover,
    .navbar-custom .nav-link.active {
        background: rgba(232, 191, 150, 0.1);
        border-radius: 8px;
        transform: none;
    }
    .lang-select {
        margin: 1rem 0;
        width: 100%;
        max-width: 120px;
    }
}

html {
    scroll-behavior: smooth;
}

.navbar-custom .nav-link:focus {
    outline: 2px solid #e8bf96;
    outline-offset: 2px;
    border-radius: 4px;
}

.lang-select:focus {
    outline: 2px solid #e8bf96;
    outline-offset: 2px;
}

/* ---- SERVICES_ADMIN.PHP STYLES ---- */
.admin-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 2rem 0;
}
.admin-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.admin-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.admin-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}
.content-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.card-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #a88f5a;
    padding-bottom: 0.5rem;
}
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-control:focus {
    border-color: #a88f5a;
    box-shadow: 0 0 0 0.2rem rgba(168, 143, 90, 0.25);
}
.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}
.btn-primary {
    background: linear-gradient(135deg, #a88f5a 0%, #8b7355 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 143, 90, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #8b7355 0%, #6d5a43 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 143, 90, 0.4);
}
.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    transform: translateY(-2px);
}
.table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.table thead {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}
.table thead th {
    border: none;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.table tbody tr {
    transition: background-color 0.3s ease;
}
.table tbody tr:hover {
    background-color: #f8f9fa;
}
.table tbody td {
    padding: 1rem;
    border-color: #e9ecef;
    vertical-align: middle;
}
.btn-sm {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    border: none;
    color: #212529;
}
.btn-warning:hover {
    background: linear-gradient(135deg, #e0a800 0%, #c69500 100%);
    transform: translateY(-1px);
}
.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
}
.btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    transform: translateY(-1px);
}
.service-id {
    background: #e9ecef;
    color: #6c757d;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}
.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}
.stats-card {
    background: linear-gradient(135deg, #a88f5a 0%, #8b7355 100%);
    color: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}
.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.stats-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ---- FOOTER.PHP STYLES ---- */
.footer-dark {
    background-color: #212529; /* Koyu header ile aynı renk */
    color: #adb5bd; /* Hafif soluk beyaz */
}
.footer-title {
    color: #ffffff;
    font-weight: 600;
}
.footer-link {
    color: #e8bf96;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    margin-right: 10px;
    transition: background-color 0.2s ease-in-out;
}
.social-icon:hover {
    background-color: #a88f5a; /* Header'daki vurgu rengi */
}
.border-secondary {
    border-color: #495057 !important;
}

/* ---- HOME.PHP STYLES ---- */
.home-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 4rem 0 2rem 0;
    text-align: center;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    margin-bottom: 2.5rem;
}
.home-hero h1 {
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #e8bf96;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.home-hero p {
    font-size: 1.25rem;
    color: #f8f9fa;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    font-weight: 400;
}

.home-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.law-service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(32,40,60,0.10);
    border: 1px solid #e8bf96;
    transition: box-shadow 0.3s, transform 0.3s;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 2rem;
}
.law-service-card:hover {
    box-shadow: 0 8px 32px rgba(168,143,90,0.18);
    transform: translateY(-6px) scale(1.03);
    border-color: #a88f5a;
}
.law-service-card .card-title {
    color: #a88f5a;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.law-service-card .card-text {
    color: #212529;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.92;
}

.home-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}
.home-cta .btn-primary {
    font-size: 1.15rem;
    padding: 0.85rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    background: linear-gradient(90deg, #a88f5a 0%, #e8bf96 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(168,143,90,0.10);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.home-cta .btn-primary:hover {
    background: linear-gradient(90deg, #e8bf96 0%, #a88f5a 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(168,143,90,0.18);
    transform: translateY(-2px) scale(1.04);
}

/* Home Page Preview Sections */
.home-hero-buttons {
    margin-top: 2rem;
}

.home-hero-buttons .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.home-hero-buttons .btn-primary {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.home-hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #2c5aa0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.home-hero-buttons .btn-outline-primary {
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    background: transparent;
}

.home-hero-buttons .btn-outline-primary:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.home-services-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.home-section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.home-service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.home-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.home-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2c5aa0, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.home-service-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.home-service-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(44, 90, 160, 0.1);
}

.service-link:hover {
    color: #1e3a8a;
    background: rgba(44, 90, 160, 0.15);
    transform: translateX(5px);
}

.home-about-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.about-preview-content {
    padding: 1rem 0;
}

.about-preview-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.about-preview-image {
    text-align: center;
}

.about-preview-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-preview-image img:hover {
    transform: scale(1.02);
}

.home-team-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.home-team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.home-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.team-preview-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.home-team-card:hover .team-preview-image img {
    transform: scale(1.08);
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #94a3b8;
}

.team-preview-info {
    padding: 2rem;
    text-align: center;
}

.team-preview-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.team-position {
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.team-specialization {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Home Page Button Styles */
.home-section-btn {
    border-radius: 50px;
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border: 2px solid #2c5aa0;
    color: #2c5aa0;
    background: transparent;
}

.home-section-btn:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

.about-preview-content .btn-primary {
    border-radius: 50px;
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.about-preview-content .btn-primary:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #2c5aa0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

/* Home Admin Styles */
.content-section {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    background: #f8fafc;
}

.content-section-title {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2c5aa0;
}

@media (max-width: 767.98px) {
    .home-hero {
        padding: 2.5rem 0 1.5rem 0;
        border-radius: 0 0 18px 18px;
    }
    .home-hero h1 {
        font-size: 2rem;
    }
    .home-section-title {
        font-size: 1.3rem;
    }
    .law-service-card {
        padding: 1.2rem 1rem 1rem 1rem;
        min-height: 180px;
    }
    
    /* Home Page Preview Sections Mobile */
    .home-services-preview,
    .home-about-preview,
    .home-team-preview,
    .home-contact-preview {
        padding: 2rem 0;
    }
    
    .home-service-card,
    .home-team-card,
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .home-hero-buttons {
        margin-top: 1.5rem;
    }
    
    .home-hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .about-preview-image {
        margin-top: 2rem;
    }
}

/* ---- CONTACT.PHP STYLES ---- */
.contact-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 3.5rem 0 2rem 0;
    text-align: center;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    margin-bottom: 2.5rem;
}
.contact-hero h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #e8bf96;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.contact-lead {
    font-size: 1.15rem;
    color: #f8f9fa;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    font-weight: 400;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(32,40,60,0.10);
    border: 1px solid #e8bf96;
    padding: 2.5rem 2rem 2rem 2rem;
}
.contact-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.5px;
}
.law-contact-form .form-label {
    color: #a88f5a;
    font-weight: 600;
    letter-spacing: 0.2px;
}
.law-contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}
.law-contact-form .form-control:focus {
    border-color: #a88f5a;
    box-shadow: 0 0 0 0.2rem rgba(168, 143, 90, 0.15);
    background: #fff;
}
.law-contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.law-contact-form .btn-primary {
    font-size: 1.1rem;
    padding: 0.7rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    background: linear-gradient(90deg, #a88f5a 0%, #e8bf96 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(168,143,90,0.10);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.law-contact-form .btn-primary:hover {
    background: linear-gradient(90deg, #e8bf96 0%, #a88f5a 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(168,143,90,0.18);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 767.98px) {
    .contact-hero {
        padding: 2rem 0 1.2rem 0;
        border-radius: 0 0 18px 18px;
    }
    .contact-hero h1 {
        font-size: 1.5rem;
    }
    .contact-form-wrapper {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
}

/* ---- ADMIN.PHP STYLES ---- */
.admin-panel-wrapper {
    max-width: 1100px;
    margin: 0 auto 3rem auto;
    padding: 2.5rem 1rem 2rem 1rem;
}
.admin-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-align: left;
}
.admin-section-desc {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.admin-table-wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(32,40,60,0.10);
    border: 1px solid #e8bf96;
    padding: 1.5rem 1rem 1rem 1rem;
    margin-bottom: 2.5rem;
}
.law-admin-table th, .law-admin-table td {
    vertical-align: middle;
    font-size: 1rem;
}
.law-admin-table thead th {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
    color: #e8bf96;
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}
.law-admin-table tbody tr {
    transition: background 0.2s;
}
.law-admin-table tbody tr:hover {
    background: #faf6ef;
}
.law-admin-settings-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(32,40,60,0.10);
    border: 1px solid #e8bf96;
    margin-top: 2.5rem;
}
.law-admin-settings-card .card-body {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.law-admin-settings-card .form-label {
    color: #a88f5a;
    font-weight: 600;
    letter-spacing: 0.2px;
}
.law-admin-settings-card .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}
.law-admin-settings-card .form-control:focus {
    border-color: #a88f5a;
    box-shadow: 0 0 0 0.2rem rgba(168, 143, 90, 0.15);
    background: #fff;
}
.law-admin-settings-card textarea.form-control {
    min-height: 100px;
    resize: vertical;
}
@media (max-width: 767.98px) {
    .admin-panel-wrapper {
        padding: 1.2rem 0.2rem 1rem 0.2rem;
    }
    .admin-section-title {
        font-size: 1.3rem;
    }
    .admin-table-wrapper, .law-admin-settings-card .card-body {
        padding: 0.7rem 0.3rem 0.7rem 0.3rem;
    }
}

/* ---- TEAM PAGE STYLES ---- */
.team-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.team-hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.team-hero-subtitle {
    color: #e8bf96;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.team-hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e8bf96, #d4af7a);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.team-section {
    padding: 4rem 0;
    background: #ffffff;
}

.team-member-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(232, 191, 150, 0.1);
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(232, 191, 150, 0.3);
}

.team-member-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
    border-radius: 12px 12px 0 0;
}

.team-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-image {
    transform: scale(1.05);
}

.team-member-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #6c757d;
}

.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 52, 96, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-card:hover .team-member-overlay {
    opacity: 1;
}

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

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(232, 191, 150, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.social-link:hover {
    background: #e8bf96;
    color: #1a1a2e;
    transform: scale(1.1);
}

.team-member-info {
    padding: 2rem;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.team-member-position {
    font-size: 1.1rem;
    color: #e8bf96;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member-specialization {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-member-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #495057;
}

.detail-item i {
    color: #e8bf96;
    width: 16px;
}

.team-member-bio {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
    margin-top: 1rem;
}

.team-member-bio p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.team-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    text-align: center;
}

.team-cta h3 {
    color: #1a1a2e;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-cta p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.empty-team-state {
    padding: 3rem 0;
}

.empty-team-state i {
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Team Admin Styles */
.team-admin-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.team-admin-placeholder {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

@media (max-width: 767.98px) {
    .team-hero-title {
        font-size: 2.5rem;
    }
    
    .team-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .team-member-info {
        padding: 1.5rem;
    }
    
    .team-member-name {
        font-size: 1.25rem;
    }
    
    .team-cta h3 {
        font-size: 1.5rem;
    }
}

/* ---- ABOUT.PHP STYLES ---- */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 4rem 0 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(232,191,150,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(232,191,150,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #e8bf96;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: #f8f9fa;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e8bf96, #d4af7a);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.about-section {
    padding: 4rem 0;
}

.about-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e8bf96, #d4af7a);
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(32, 40, 60, 0.08);
    border: 1px solid #e8bf96;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(32, 40, 60, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8bf96, #d4af7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: #1a1a2e;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.value-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.about-content {
    padding: 1rem 0;
}

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

.about-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    text-align: center;
}

.about-cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.about-cta-section p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767.98px) {
    .about-hero-title {
        font-size: 2rem;
    }
    .about-hero-subtitle {
        font-size: 1rem;
    }
    .about-section-title {
        font-size: 1.8rem;
    }
    .about-text {
        font-size: 1rem;
    }
    .value-card {
        padding: 1.5rem;
    }
    .about-cta-section h3 {
        font-size: 1.5rem;
    }
}
/* Team Member Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-decoration: none;
    color: white;
}

.social-link.email {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
}

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

/* Form styling for admin */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}
/* ---- VISITS ALTERNATING LAYOUT STYLES ---- */
.visits-container {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.visits-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.visit-row {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visit-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Alternating layout - even rows: image left, text right */
.visit-row .visit-content {
    display: flex;
    width: 100%;
    align-items: center;
}

/* Odd rows: text left, image right */
.visit-row-reverse .visit-content {
    flex-direction: row-reverse;
}

.visit-image {
    flex: 1;
    max-width: 50%;
    position: relative;
    overflow: hidden;
}

.visit-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visit-row:hover .visit-image img {
    transform: scale(1.05);
}

.no-image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.no-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.visit-text {
    flex: 1;
    padding: 3rem;
    max-width: 50%;
}

.visit-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.visit-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 2rem;
    text-align: justify;
}

.visit-date {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-weight: 500;
    font-size: 1rem;
}

.visit-date i {
    margin-right: 0.5rem;
    color: #e8bf96;
}

.no-visits {
    font-size: 1.5rem;
    color: #6c757d;
    font-style: italic;
    padding: 4rem 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .visit-row .visit-content,
    .visit-row-reverse .visit-content {
        flex-direction: column;
    }
    
    .visit-image,
    .visit-text {
        max-width: 100%;
        flex: none;
    }
    
    .visit-image {
        order: 1;
    }
    
    .visit-text {
        order: 2;
        padding: 2rem;
    }
    
    .visit-image img,
    .no-image-placeholder {
        height: 300px;
    }
    
    .visit-title {
        font-size: 2rem;
    }
    
    .visits-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .visits-container {
        padding: 2rem 0;
    }
    
    .visit-row {
        margin-bottom: 2rem;
        border-radius: 15px;
    }
    
    .visit-text {
        padding: 1.5rem;
    }
    
    .visit-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .visit-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .visit-image img,
    .no-image-placeholder {
        height: 250px;
    }
    
    .visits-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .visit-text {
        padding: 1rem;
    }
    
    .visit-title {
        font-size: 1.5rem;
    }
    
    .visit-description {
        font-size: 0.95rem;
    }
    
    .visit-image img,
    .no-image-placeholder {
        height: 200px;
    }
}

/* Animation for smooth transitions */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.visit-row:nth-child(even) {
    animation: slideInLeft 0.8s ease-out;
}

.visit-row:nth-child(odd) {
    animation: slideInRight 0.8s ease-out;
}
/* Services Hero Section */
.services-hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Make services hero section styles more specific to match home page pattern */
.services-hero-section .hero-title {
    color: #e8bf96; /* Goldish color to match home page */
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.services-hero-section .hero-subtitle {
    color: #f8f9fa; /* White color to match home page */
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    font-weight: 400;
}

/* Service Cards */
.services-section {
    background: #f8fafc;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-icon-symbol {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #475569;
}

.feature-list i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.service-footer {
    margin-top: auto;
}

.btn-service {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Empty State */
.empty-state {
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
}

/* ---- VISITS PAGE STYLES ---- */
.visits-hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.visits-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.visits-hero-section .hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.visits-hero-section .hero-subtitle {
    color: #e8bf96;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.visits-container {
    padding: 2rem 0;
}

/* Responsive adjustments for visits hero section */
@media (max-width: 768px) {
    .visits-hero-section {
        padding: 2.5rem 0;
    }
    
    .visits-hero-section .hero-title {
        font-size: 2.2rem;
    }
    
    .visits-hero-section .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .visits-hero-section {
        padding: 2rem 0;
    }
    
    .visits-hero-section .hero-title {
        font-size: 1.8rem;
    }
    
    .visits-hero-section .hero-subtitle {
        font-size: 1rem;
    }
}