/* Modern CSS Variables */
:root {
    --primary-color: #667eea;
    --primary-dark: #5a6fd8;
    --secondary-color: #764ba2;
    --success-color: #11998e;
    --info-color: #38ef7d;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Responsive Utility Classes */
@media (min-width: 992px) {
    .display-lg-3 {
        font-size: 3rem !important;
    }
    
    .h-lg-2 {
        font-size: 2rem !important;
    }
}

@media (min-width: 768px) {
    .w-md-auto {
        width: auto !important;
    }
    
    .display-md-4 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 767px) {
    .btn-md {
        padding: 0.5rem 1rem !important;
        font-size: 0.875rem !important;
    }
    
    .hero-actions .btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.8rem !important;
        min-height: 44px; /* Touch target minimum */
        margin-bottom: 0.5rem !important;
        border-radius: 0.5rem !important;
        touch-action: manipulation;
    }
    
    .hero-actions .btn i {
        font-size: 0.9rem !important;
    }
    
    .hero-actions .d-grid {
        gap: 0.5rem !important;
    }
    
    .hero-actions .btn .bi {
        margin-right: 0.5rem !important;
    }
    
    .hero-actions .btn:focus {
        outline-width: 3px;
        outline-offset: 3px;
    }
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #fafbfc;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Top Bar */
.top-bar {
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .social-links a {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.top-bar .social-links a:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.brand-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.navbar-nav .nav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(102, 126, 234, 0.1);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 1rem;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.user-avatar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    text-transform: none;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--info-color) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-header {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1.5rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    background: rgba(0,0,0,0.02);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 1.5rem;
}

/* Forms */
.form-control, .form-select {
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.1);
}

.form-floating label {
    font-weight: 500;
    color: var(--gray-600);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
}

/* Alerts */
.alert {
    border: none;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    font-weight: 500;
    border-left: 4px solid;
}

.alert-success {
    background-color: rgba(17, 153, 142, 0.1);
    color: var(--success-color);
    border-left-color: var(--success-color);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
    border-left-color: var(--danger-color);
}

.alert-info {
    background-color: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #856404;
    border-left-color: var(--warning-color);
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: white;
    margin-top: auto;
}

.footer-brand h3 {
    font-size: 2rem;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
}

.contact-info .contact-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info .contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
    background: var(--primary-color);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.social-link.facebook:hover { background: #3b5998; }
.social-link.twitter:hover { background: #1da1f2; }
.social-link.instagram:hover { background: #e4405f; }
.social-link.linkedin:hover { background: #0077b5; }
.social-link.youtube:hover { background: #ff0000; }

/* Back to Top Button */
#backToTop {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Utility Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInDown {
    animation: fadeInDown 0.6s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-success {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--info-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--info-color) 100%) !important;
}

.shadow-soft {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

.shadow-medium {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
}

.shadow-strong {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.border-radius-lg {
    border-radius: 1rem !important;
}

.border-radius-xl {
    border-radius: 1.5rem !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .brand-text {
        font-size: 1.25rem;
    }
    
    .footer-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn:last-child {
        margin-bottom: 0;
    }
    
    .hero-actions .btn:disabled:active {
        transform: none;
        box-shadow: none;
    }
    
    .hero-actions .btn:disabled:focus {
        outline: none;
        box-shadow: none;
    }
    
    .hero-actions .btn:disabled.loading {
        pointer-events: none;
    }
    
    .hero-actions .btn:disabled.loading::after {
        display: none;
    }
    
    .hero-actions .btn:disabled.loading i {
        opacity: 0.3;
    }
    
    .hero-actions .btn:disabled.loading .bi {
        margin-right: 0.4rem !important;
    }
    
    .hero-actions .btn:disabled.loading span {
        opacity: 0.5;
    }
}

/* Landscape orientation optimization for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-actions .btn {
        min-height: 38px;
        padding: 0.3rem 0.6rem !important;
    }
    
    .hero-actions .d-grid {
        gap: 0.3rem !important;
    }
    
    .hero-actions .btn.loading::after {
        width: 12px;
        height: 12px;
        margin: -6px 0 0 -6px;
    }
    
    .hero-actions .btn:hover {
        transform: translateY(-0.5px);
        box-shadow: 0 1px 6px rgba(0,0,0,0.12);
    }
    
    .hero-actions .btn:active {
        transform: translateY(0px);
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }
    
    .hero-actions .btn:focus {
        outline-width: 2px;
        outline-offset: 2px;
    }
    
    .hero-actions .btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }
    
    .hero-actions .btn:disabled:hover {
        transform: none;
        box-shadow: none;
    }
    
    .hero-actions .btn:disabled:active {
        transform: none;
        box-shadow: none;
    }
    
    .hero-actions .btn:disabled:focus {
        outline: none;
        box-shadow: none;
    }
    
    .hero-actions .btn:disabled.loading {
        pointer-events: none;
    }
    
    .hero-actions .btn:disabled.loading::after {
        display: none;
    }
    
    .hero-actions .btn:disabled.loading i {
        opacity: 0.3;
    }
    
    .hero-actions .btn:disabled.loading .bi {
        margin-right: 0.3rem !important;
    }
    
    .hero-actions .btn:disabled.loading span {
        opacity: 0.5;
    }
}

/* Portrait orientation optimization for mobile */
@media (max-width: 768px) and (orientation: portrait) {
    .hero-actions .btn {
        min-height: 48px;
        padding: 0.5rem 1rem !important;
    }
    
    .hero-actions .d-grid {
        gap: 0.6rem !important;
    }
    
    .hero-actions .btn.loading::after {
        width: 18px;
        height: 18px;
        margin: -9px 0 0 -9px;
    }
    
    .hero-actions .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    
    .hero-actions .btn:disabled:active {
        transform: translateY(0px);
        box-shadow: none;
    }
    
    .hero-actions .btn:focus {
        outline-width: 3px;
        outline-offset: 3px;
    }
    
    .hero-actions .btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }
    
    .hero-actions .btn:disabled:hover {
        transform: none;
        box-shadow: none;
    }
    
    .hero-actions .btn:disabled:active {
        transform: none;
        box-shadow: none;
    }
    
    .hero-actions .btn:disabled:focus {
        outline: none;
        box-shadow: none;
    }
    
    .hero-actions .btn:disabled.loading {
        pointer-events: none;
    }
    
    .hero-actions .btn:disabled.loading::after {
        display: none;
    }
    
    .hero-actions .btn:disabled.loading i {
        opacity: 0.3;
    }
    
    .hero-actions .btn:disabled.loading .bi {
        margin-right: 0.5rem !important;
    }
    
    .hero-actions .btn:disabled.loading span {
        opacity: 0.5;
    }
}

@media (max-width: 576px) {
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .card-body,
    .card-header,
    .card-footer {
        padding: 1rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-actions .btn {
        padding: 0.35rem 0.7rem !important;
        font-size: 0.75rem !important;
        min-height: 40px; /* Touch target minimum */
        border-radius: 0.4rem !important;
        touch-action: manipulation;
    }
    
    .hero-actions .btn i {
        font-size: 0.8rem !important;
    }
    
    .hero-actions .btn .bi {
        margin-right: 0.4rem !important;
    }
    
    .hero-actions .d-grid {
        gap: 0.4rem !important;
    }
    
    .hero-actions .btn:focus {
        outline-width: 2px;
        outline-offset: 2px;
    }
    
    .hero-actions .btn.loading {
        pointer-events: none;
    }
    
    .hero-actions .btn:disabled:hover {
        transform: none;
        box-shadow: none;
    }
    
    .hero-actions .btn:disabled:active {
        transform: none;
        box-shadow: none;
    }
    
    .hero-actions .btn:disabled:focus {
        outline: none;
        box-shadow: none;
    }
    
    .hero-actions .btn:disabled.loading {
        pointer-events: none;
    }
    
    .hero-actions .btn:disabled.loading::after {
        display: none;
    }
    
    .hero-actions .btn:disabled.loading i {
        opacity: 0.3;
    }
    
    .hero-actions .btn:disabled.loading .bi {
        margin-right: 0.3rem !important;
    }
    
    .hero-actions .btn:disabled.loading span {
        opacity: 0.5;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .alert,
    #backToTop {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }
    
    .card {
        border: 1px solid #ddd;
        box-shadow: none;
    }
    
    .hero-actions {
        display: none !important;
    }
}

/* Dark Mode Support (Future Enhancement) */
@media (prefers-color-scheme: dark) {
    :root {
        --gray-100: #1a1a1a;
        --gray-200: #2d2d2d;
        --gray-300: #404040;
        --gray-400: #525252;
        --gray-500: #737373;
        --gray-600: #a3a3a3;
        --gray-700: #d4d4d4;
        --gray-800: #e5e5e5;
        --gray-900: #f5f5f5;
    }
    
    .hero-actions .btn {
        backdrop-filter: blur(10px);
    }
    
    .hero-actions .btn:focus {
        outline-color: rgba(255,255,255,0.9);
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-actions .btn {
        transition: none !important;
    }
    
    .hero-actions .btn:hover {
        transform: none !important;
    }
    
    .hero-actions .btn:active {
        transform: none !important;
    }
}

/* Focus Styles for Better Accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hero-actions .btn:focus {
    outline: 2px solid rgba(255,255,255,0.8);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.2);
}

.hero-actions .btn:focus-visible {
    outline: 2px solid rgba(255,255,255,0.9);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255,255,255,0.3);
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid var(--gray-600);
    }
    
    .btn {
        border: 2px solid currentColor;
    }
    
    .hero-actions .btn {
        border: 2px solid currentColor;
        background-color: transparent;
    }
    
    .hero-actions .btn-primary {
        background-color: white;
        color: black;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

.hero-actions .btn.loading::after {
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border-width: 1.5px;
}

@media (max-width: 576px) {
    .hero-actions .btn.loading::after {
        width: 14px;
        height: 14px;
        margin: -7px 0 0 -7px;
        border-width: 1px;
    }
    
    .hero-actions .btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.contact-hero {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
    overflow: hidden;
}

    .contact-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 1000 100" fill="white" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
        background-size: 100% 100px;
        background-repeat: no-repeat;
        background-position: bottom;
    }

.contact-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 1rem;
    color: white;
}

    .stat-item i {
        font-size: 2rem;
    }

.contact-illustration {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.1);
}

.form-floating label {
    display: flex;
    align-items: center;
}

.contact-info-section {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

    .info-card:hover {
        transform: translateX(5px);
    }

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1);
}

    .info-icon i {
        font-size: 1.5rem;
    }

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

    .social-link:hover {
        transform: translateY(-3px);
        color: white;
    }

    .social-link.facebook {
        background: #3b5998;
    }

    .social-link.twitter {
        background: #1da1f2;
    }

    .social-link.instagram {
        background: #e4405f;
    }

    .social-link.linkedin {
        background: #0077b5;
    }

    .social-link.youtube {
        background: #ff0000;
    }

.hours-list {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

    .hours-item:last-of-type {
        border-bottom: none;
    }

.hours-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.map-container {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.1);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    padding: 1rem 1.5rem;
}

    .accordion-button:not(.collapsed) {
        background: var(--bs-primary);
        color: white;
    }

.accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .contact-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form-section,
    .contact-info-section {
        padding: 1.5rem;
    }

    .contact-info-section {
        position: static;
        margin-top: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

    .blog-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 1000 100" fill="white" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
        background-size: 100% 100px;
        background-repeat: no-repeat;
        background-position: bottom;
    }

.blog-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.75rem 1rem;
    border-radius: 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.featured-post {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .featured-post:hover {
        transform: translateY(-5px);
    }

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

    .featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ffc107;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: bold;
}

.featured-content {
    padding: 2rem;
}

.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
    transition: all 0.3s ease;
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    }

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-title a:hover {
    color: var(--bs-primary) !important;
}

.blog-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-share {
    display: flex;
    gap: 0.5rem;
}

.newsletter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
}

.newsletter-form .input-group {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.view-toggle .btn.active {
    background-color: var(--bs-primary);
    color: white;
    border-color: var(--bs-primary);
}

.btn[data-category].active {
    background-color: var(--bs-primary);
    color: white;
    border-color: var(--bs-primary);
}

@media (max-width: 768px) {
    .blog-stats {
        justify-content: center;
    }

    .featured-content {
        padding: 1.5rem;
    }

    .post-meta {
        justify-content: center;
    }

    .blog-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .social-share {
        justify-content: center;
    }
}
/* Modern Hero Section */
.modern-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index:0;
}

.hero-background-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 10%;
    animation-delay: 15s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 30%;
    animation-delay: 8s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
        opacity: 0.6;
    }
    66% {
        transform: translateY(30px) rotate(240deg);
        opacity: 0.3;
    }
}

.hero-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

/* Hero Badge */
.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    overflow: hidden;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-icon {
    margin-right: 0.5rem;
    color: #ffd700;
    font-size: 1rem;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Modern Title */
.hero-title-modern {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFade 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-gradient {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle with Typing Effect */
.hero-subtitle-modern {
    color: rgba(255, 255, 255, 0.9);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.typing-text {
    display: inline;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { border-color: rgba(255, 255, 255, 0.7); }
    51%, 100% { border-color: transparent; }
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item i {
    color: #ffd700;
    font-size: 1.1rem;
}

/* Modern Stats */
.hero-stats-modern {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

.stats-container {
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
}

.stat-item-modern {
    position: relative;
    text-align: center;
    flex: 1;
}

.stat-number-animated {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.stat-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #ffd700;
}

/* Modern Action Buttons */
.hero-actions-modern {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.2s;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.btn-primary-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    position: relative;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-modern:hover .btn-glow {
    opacity: 1;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.link-modern {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.link-modern:hover {
    color: white;
    transform: translateX(5px);
}

/* Hero Visual Modern */
.hero-visual-modern {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
}

.hero-card {
    position: absolute;
    width: 300px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.card-1 {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 100px;
    right: 0;
    transform: rotate(5deg);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.card-3 {
    bottom: 0;
    left: 50px;
    transform: rotate(-3deg);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    animation-delay: 4s;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.card-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-card:hover .card-glow {
    opacity: 1;
}

.hero-card:hover {
    transform: translateY(-10px) rotate(0deg);
}

/* Mobile Visual */
.mobile-icon-container {
    position: relative;
    display: inline-block;
}

.mobile-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    animation: floatElement 8s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

.element-3 {
    top: 60%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

/* Modern Scroll Indicator */
.scroll-indicator-modern {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.scroll-text {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.scroll-arrow-modern {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow-modern:hover {
    color: white;
    transform: scale(1.1);
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    margin: 0.5rem auto 0;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.5;
        height: 30px;
    }
    50% {
        opacity: 1;
        height: 40px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stats-container {
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-number-animated {
        font-size: 1.5rem;
    }
    
    .card-stack {
        max-width: 400px;
        height: 500px;
    }
    
    .hero-card {
        width: 250px;
        height: 160px;
    }
}

@media (max-width: 992px) {
    .hero-title-modern {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item-modern {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }
    
    .stat-number-animated {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content-modern {
        text-align: center;
    }
    
    .hero-title-modern {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
    }
    
    .btn-modern {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .floating-shapes .shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .hero-title-modern {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .hero-features {
        gap: 0.25rem;
    }
    
    .feature-item {
        font-size: 0.7rem;
    }
    
    .btn-modern {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .scroll-indicator-modern {
        bottom: 1rem;
    }
}

.hero-actions .btn {
    transition: all 0.3s ease;
    border-radius: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-actions .btn:active {
    transform: translateY(1px);
    transition: transform 0.1s ease;
}

.hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
    .hero-actions .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    
    .hero-actions .btn:active {
        transform: translateY(0px);
        box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }
    
    .hero-actions .btn.loading {
        pointer-events: none;
    }
    
    .hero-actions .btn:disabled:hover {
        transform: none;
        box-shadow: none;
    }
    
    .hero-actions .btn:disabled:active {
        transform: none;
        box-shadow: none;
    }
    
    .hero-actions .btn:disabled:focus {
        outline: none;
        box-shadow: none;
    }
    
    .hero-actions .btn:disabled.loading {
        pointer-events: none;
    }
    
    .hero-actions .btn:disabled.loading::after {
        display: none;
    }
    
    .hero-actions .btn:disabled.loading i {
        opacity: 0.3;
    }
    
    .hero-actions .btn:disabled.loading .bi {
        margin-right: 0.4rem !important;
    }
    
    .hero-actions .btn:disabled.loading span {
        opacity: 0.5;
    }
}

@media (max-width: 576px) {
    .hero-actions .btn:hover {
        transform: none;
        box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    line-height: 1.2;
}

.hero-stats .stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem;
    transition: transform 0.3s ease;
}

    .hero-stats .stat-card:hover {
        transform: translateY(-5px);
    }

.hero-visual {
    position: relative;
}

.floating-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 2rem 4rem rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-card + .floating-card {
    margin-top: 1rem;
}

.hero-visual-mobile {
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.stat-card-mobile {
    background: rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-number-mobile {
    margin-bottom: 0.25rem;
}

.stat-label-mobile {
    font-size: 0.75rem;
}

.floating-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .scroll-arrow:hover {
        transform: translateY(5px);
    }

/* Quick Booking Section */
.quick-booking-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Features Section */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 1rem 2rem rgba(0,0,0,0.15);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-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;
    transition: all 0.3s ease;
}

    .stats-card:hover {
        transform: translateY(-5px);
        background: rgba(255,255,255,0.15);
    }

.stats-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.stats-number {
    font-size: 3rem;
    margin: 1rem 0;
    background: linear-gradient(45deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.cta-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2rem;
    padding: 3rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        text-align: center;
    }

        .hero-actions .btn {
            display: block;
            width: 100%;
            margin-bottom: 0.75rem;
        }
        
        .hero-actions .btn:disabled:hover {
            transform: none;
            box-shadow: none;
        }

    .booking-card {
        padding: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .stats-number {
        font-size: 2rem;
    }

    .cta-card {
        padding: 2rem;
        text-align: center;
    }
}

.tours-hero {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    position: relative;
    overflow: hidden;
}

    .tours-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 1000 100" fill="white" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
        background-size: 100% 100px;
        background-repeat: no-repeat;
        background-position: bottom;
    }

.floating-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.tour-card {
    transition: all 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
}

    .tour-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 2rem rgba(0,0,0,0.15) !important;
    }

.bg-gradient-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.price-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 80px;
}

.tour-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .tour-info .info-item i {
        width: 20px;
        flex-shrink: 0;
    }

.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.availability-section {
    background: rgba(0,0,0,0.03);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

    .shadow-hover:hover {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }

.empty-state {
    padding: 3rem 0;
}

.progress {
    border-radius: 1rem;
}

.progress-bar {
    border-radius: 1rem;
}

.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

    .hero-gradient::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 1000 100" fill="white" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
        background-size: 100% 100px;
        background-repeat: no-repeat;
        background-position: bottom;
    }

.floating-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.vehicle-card {
    transition: all 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
}

    .vehicle-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 2rem rgba(0,0,0,0.15) !important;
    }

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.vehicle-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .vehicle-info .info-item i {
        width: 20px;
        flex-shrink: 0;
    }

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.1);
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

    .shadow-hover:hover {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }

.empty-state {
    padding: 3rem 0;
}

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    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 1000 100" fill="white" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
        background-size: 100% 100px;
        background-repeat: no-repeat;
        background-position: bottom;
    }

.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

    .stat-item h3 {
        margin-bottom: 0.5rem;
        font-size: 2.5rem;
    }

.hero-image {
    position: relative;
}

    .hero-image::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        right: 20px;
        bottom: 20px;
        background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
        border-radius: 1rem;
        z-index: -1;
    }

.mission-card, .vision-card {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

    .mission-card:hover, .vision-card:hover {
        transform: translateY(-5px);
    }

.value-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
    height: 100%;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

.value-icon i {
    font-size: 3rem;
}

.team-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

.team-avatar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.social-links a {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

    .social-links a:hover {
        color: var(--bs-primary) !important;
    }

.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
}

@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image::before {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }

    .mission-card, .vision-card, .value-card, .team-card {
        padding: 1.5rem;
    }
}
.blog-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

    .post-content h1, .post-content h2, .post-content h3 {
        margin-top: 2rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .post-content p {
        margin-bottom: 1.5rem;
    }

    .post-content img {
        max-width: 100%;
        height: auto;
        border-radius: 0.5rem;
        margin: 1rem 0;
    }

.avatar-circle {
    font-weight: bold;
}

.comment, .reply {
    transition: all 0.3s ease;
}

    .comment:hover, .reply:hover {
        transform: translateY(-2px);
    }

.featured-post-item:last-child {
    border-bottom: none !important;
}

.featured-post-item:hover {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .blog-hero {
        min-height: 300px;
    }

    .display-4 {
        font-size: 2rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 1rem !important;
    }
}
.vehicle-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
}

.feature-item {
    transition: all 0.3s ease;
}

    .feature-item:hover {
        transform: translateX(5px);
    }

.booking-card {
    border-left: 4px solid #0d6efd !important;
}

.info-item:last-child {
    border-bottom: none !important;
}

.avatar-circle {
    font-weight: bold;
}

.driver-badges .badge {
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .vehicle-hero {
        min-height: 300px;
    }

    .display-4 {
        font-size: 2rem;
    }

    .vehicle-meta {
        flex-direction: column;
        gap: 1rem !important;
    }

    .sticky-top {
        position: relative !important;
        top: auto !important;
    }
}