/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #E49D34; 
    --primary-dark: #D08C24;
    --secondary: #A82424; 
    --secondary-dark: #8C1C1C;
    --neutral-light: #F8F9FA;
    --neutral: #E9ECEF;
    --neutral-dark: #495057;
    --white: #FFFFFF;
    --black: #212529;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --primary: #E49D34;
}

/* ===== LANGUAGE LINK ===== */
.lang-link {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary) !important;
    padding: 0.75rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    background: transparent !important;
}

.lang-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff7b7b);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.lang-link:hover::after {
    width: 70%;
}

.lang-link:hover {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

/* ===== BASE STYLES ===== */
html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    /* for a sticky navigation app bar */
    /* padding-top: 85px;  */
}

/* ===== MODERN FOCUS STATES ===== */
.btn:focus, .btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(228, 157, 52, 0.25);
    border-color: var(--primary);
}

/* ===== NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, 
        var(--secondary-dark) 0%, 
        #6A1515 50%, 
        var(--secondary-dark) 100%);
    background-size: 400% 400%;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    /* for a sticky navigation app bar */
    /* position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000; */
    overflow: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.navbar.scrolled {
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 8px 40px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    backdrop-filter: blur(25px) saturate(200%);
    background-position: 100% 50%;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-weight: 800;
    color: var(--white) !important;
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff7b7b);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.navbar-brand:hover::after {
    width: 100%;
}

.navbar-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem !important;
    margin: 0 0.125rem;
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff7b7b);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link::before {
    display: none;
}

.nav-link:hover::before {
    width: 300px;
    height: 300px;
}

.nav-link:hover,
.nav-link:focus {

    color: var(--white) !important;
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

.nav-link.active {
    color: var(--white) !important;
    position: relative;
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ffd700, var(--primary));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: underline-glow 2s infinite alternate;
}

.nav-link.active:hover::after {
    width: 70% !important;
    background: linear-gradient(90deg, var(--primary), #ffd700, var(--primary));
    animation: underline-glow 1s infinite alternate;
}

@keyframes underline-glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
        opacity: 0.9;
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
        opacity: 1;
    }
}

.nav-link.active:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.navbar.scrolled .nav-link::after {
    bottom: 0.25rem;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar-container {
        padding: 0 1rem;
    }
    
    .navbar-nav {
        gap: 0.25rem;
        margin-right: 0 !important;
    }
    
    .nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem;
    }
    
    .nav-link::after,
    .nav-link.active::after {
        bottom: 0.25rem;
        height: 2px;
    }
}

@media (prefers-color-scheme: dark) {
    .navbar {
        background: linear-gradient(135deg, 
            rgba(20, 20, 20, 0.95) 0%, 
            rgba(106, 21, 21, 0.95) 100%);
        backdrop-filter: blur(25px) saturate(200%);
    }
    
    .nav-link.active::after {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    }
}
/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
        background: linear-gradient(135deg, var(--primary-dark) 0%, #C07C1A 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

    .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

/* ===== MODERN HERO SECTION ===== */
.hero-section {
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('/Images/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 45deg, rgba(228, 157, 52, 0.1) 0%, rgba(168, 36, 36, 0.1) 100% );
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

span.suffix {
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary) !important;
    background: none !important;
}

span.suffix2 {
    color: var(--secondary) !important;
    -webkit-text-fill-color: var(--secondary) !important;
    background: none !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== CARDS ===== */
.modern-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--neutral);
    height: 100%;
}

    .modern-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary);
    }

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

/* ===== FORM STYLES ===== */
.form-control, .form-select {
    border: 2px solid var(--neutral);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.25rem rgba(228, 157, 52, 0.25);
    }

.form-label {
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #6A1515 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

    .footer-links a:hover {
        color: var(--primary);
        padding-left: 0.5rem;
    }

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.hover-lift {
    transition: var(--transition);
}

    .hover-lift:hover {
        transform: translateY(-2px);
    }

/* ===== RESPONSIVE SPACING ===== */
.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== ASP.NET SPECIFIC ===== */
.validation-summary-errors {
    background: rgba(168, 36, 36, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.field-validation-error {
    color: var(--secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* ===== ENHANCED HERO SECTION ===== */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.5;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
    text-shadow: 4px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--secondary);
    transform: translateY(-2px);
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ENHANCED CARDS ===== */
.modern-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--neutral);
    height: 100%;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.modern-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.btn-light-custom {
    background: white;
    color: var(--secondary);
    border: none;
    padding: 1rem 3rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.btn-light-custom:hover {
    background: var(--neutral-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ===== ENHANCED FOOTER ===== */
.site-footer {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #6A1515 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}
.site-footer a{
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.site-footer a:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

/* .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(-5px);
} */

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.border-white-50 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* ===== FOOTER SOCIAL MEDIA ===== */
.footer-social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.footer-social-item {
    flex: 0 0 calc(50% - 0.175rem);
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.1rem 0;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 0.95rem;
    height: 100%;
}

.footer-social-link:hover {
    transform: translateX(-5px);
    color: var(--primary) !important;
}

.footer-social-icon {
    color: var(--primary);
    width: 20px;
    height: 20px;
    background-color: currentColor;
    display: inline-block;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

/* ===== ENHANCED ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 992px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
}

/* ===== TRUST INDICATORS ===== */
.trust-section {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ===== UVP SECTION ===== */
.uvp-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral);
}

.uvp-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.uvp-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-dark);
}

.uvp-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.uvp-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.uvp-feature-item i {
    font-size: 1.25rem;
}

.uvp-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.uvp-badge-inner {
    text-align: center;
    color: white;
}

.uvp-badge-inner i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.uvp-badge-inner h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.uvp-badge-inner p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.95;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary);
    gap: 0.75rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--neutral);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #FFC107;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--neutral);
}

.author-avatar {
    font-size: 3rem;
    color: var(--primary);
}

.author-info h6 {
    font-weight: 600;
    color: var(--black);
}

/* ===== NEWS SECTION ===== */
.news-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--neutral);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-date {
    color: var(--neutral-dark);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.news-excerpt {
    color: var(--neutral-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.news-link:hover {
    color: var(--primary);
    gap: 0.75rem;
}

/* ===== EVENT CARDS SECTION ===== */
.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.event-card-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.event-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-card-img {
    transform: scale(1.1);
}

.event-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.event-card-text {
    color: var(--neutral-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-event-more {
    margin-top: auto;
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: fit-content;
}

.btn-event-more:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateX(-5px);
}

[dir="ltr"] .btn-event-more:hover {
    transform: translateX(5px);
}

/* Modal Enhancements */
#eventDetailModal .modal-content {
    overflow: hidden;
}

#eventDetailModal .modal-header {
    padding: 1.25rem 1.5rem;
}

#eventDetailModal .object-fit-cover {
    object-fit: cover;
}

@media (max-width: 992px) {
    .event-card-img-wrapper {
        height: 200px;
    }
}

/* ===== PERSISTENT CTA STRIP ===== */
.cta-strip {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 2.5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-strip-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.cta-strip-text {
    font-size: 1.1rem;
    opacity: 0.95;
}

.btn-cta-strip {
    background: white;
    color: var(--secondary);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-cta-strip:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 992px) {
    .uvp-title {
        font-size: 2rem;
    }
    
    .uvp-badge {
        width: 150px;
        height: 150px;
        margin: 2rem auto 0;
    }
    
    .uvp-badge-inner h3 {
        font-size: 2rem;
    }
    
    .uvp-badge-inner i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .uvp-card {
        padding: 2rem;
    }
    
    .uvp-title {
        font-size: 1.75rem;
    }
    
    .cta-strip-title {
        font-size: 1.5rem;
    }
    
    .cta-strip-text {
        font-size: 1rem;
    }
    
    .trust-section .col-lg-3 {
        margin-bottom: 1rem;
    }
}

/* ===== PARTNER LOGOS ===== */
.partner-logos-container {
    padding: 2rem 0;
}

.partner-logos {
    padding: 1.5rem 0;
}

.partner-logo-item {
    transition: var(--transition);
}

.partner-logo {
    max-width: 180px;
    min-width: 140px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.partner-logo-item:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

nav.modern-navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 0.7rem 0;
}

nav.navbar-logo {
    height: 36px;
    width: auto;
}

nav.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e1e2f;
}

nav.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

nav.navbar-nav .nav-link:hover {
    color: #0d6efd;
}

@media (max-width: 1200px) {
    .partner-logo {
        max-width: 160px;
        min-width: 120px;
    }
}

@media (max-width: 992px) {
    .partner-logo {
        max-width: 140px;
        min-width: 110px;
    }
}

@media (max-width: 768px) {
    .partner-logos-container {
        padding: 1.5rem 0;
    }
    
    .partner-logo {
        max-width: 130px;
        min-width: 100px;
    }
    
    .partner-logos {
        gap: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        max-width: 110px;
        min-width: 90px;
    }
    
    .partner-logos {
        gap: 1rem !important;
    }
}

.copy-write {
    color: var(--white);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 24px;
        right: 24px;
        background-color: #25D366;
        color: #FFFFFF;
        border-radius: 50%;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
    }

    /* Subtle hover effect */
    .whatsapp-float:hover {
        background-color: #128C7E;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
        text-decoration: none;
    }

    /* Active state */
    .whatsapp-float:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    }

    /* WhatsApp icon styling */
    .whatsapp-float i {
        color: white; /* Makes the phone icon white */
        font-size: 28px;
        filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
    }

    /* Optional: Subtle pulse animation only on hover */
    .whatsapp-float:hover::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        background-color: #25D366;
        animation: subtle-pulse 2s infinite;
        z-index: -1;
        opacity: 0.3;
    }

    @keyframes subtle-pulse {
        0% {
            transform: scale(1);
            opacity: 0.3;
        }
        70% {
            transform: scale(1.2);
            opacity: 0;
        }
        100% {
            transform: scale(1.2);
            opacity: 0;
        }
    }

    /* Professional tooltip */
    .whatsapp-float::after {
        content: 'Chat with us';
        position: absolute;
        right: 70px;
        background: #2D3748;
        color: white;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.25s ease;
        pointer-events: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .whatsapp-float:hover::after {
        opacity: 1;
        transform: translateX(0);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .whatsapp-float {
            width: 52px;
            height: 52px;
            bottom: 20px;
            right: 20px;
        }
        
        .whatsapp-float i {
            font-size: 26px;
        }
        
        /* Hide tooltip on mobile */
        .whatsapp-float::after {
            display: none;
        }
        
        .whatsapp-float:hover::before {
            animation: none;
        }
    }

    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
        .whatsapp-float {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .whatsapp-float:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        }
    }

    /* Loading state (optional) */
    .whatsapp-float.loading {
        pointer-events: none;
        opacity: 0.8;
    }

    .whatsapp-float.loading i {
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

/* ===== SIMPLE LANGUAGE TOGGLE ===== */

/* Desktop single letter toggle */
.desktop-lang-toggle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.desktop-lang-toggle span {
    color: rgba(255,255,255,0.9);
    transition: color 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.desktop-lang-toggle span:hover {
    color: var(--primary);
    background: rgba(255,255,255,0.1);
}

/* Mobile single letter toggle */
.mobile-lang-toggle {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.mobile-lang-toggle span {
    color: rgba(255,255,255,0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.mobile-lang-toggle span:hover {
    color: var(--primary);
    background: rgba(255,255,255,0.1);
}