/* Modern QALA Website Design - Bootstrap 5 + Latest UI/UX Trends 2024 */

/* Import Premium Fonts - Elegant & Contemporary */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Sora:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

/* CSS Variables - Sophisticated Elegant Color Palette */
:root {
    /* Primary Colors - Deep Navy & Midnight Blue */
    --primary-color: #0f172a;
    --primary-dark: #020617;
    --primary-light: #1e293b;
    --secondary-color: #334155;
    
    /* Accent Colors - Elegant Blue & Rose Gold */
    --accent-color: #3b82f6;
    --accent-secondary: #8b5cf6;
    --rose-gold: #b76e79;
    --gold-accent: #3b82f6;
    
    /* Metallic Accents */
    --platinum-accent: #e8eaed;
    --silver-accent: #cbd5e1;
    --bronze-accent: #a78bfa;
    
    /* Neutral Colors */
    --dark-color: #0a0a0f;
    --light-color: #ffffff;
    --cream-color: #f8fafc;
    --off-white: #fefefe;
    
    /* Text Colors */
    --text-color: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    /* Border & Divider */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Gradients - Sophisticated & Modern */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    --gradient-elegant: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --gradient-luxury: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-rose: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    
    /* Shadows - Soft & Elegant */
    --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.10);
    --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.12);
    --shadow-2xl: 0 24px 64px rgba(15, 23, 42, 0.15);
    --shadow-luxury: 0 12px 40px rgba(59, 130, 246, 0.12);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
    
    /* Border Radius - Modern & Smooth */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions - Smooth & Natural */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--cream-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium Header */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: var(--shadow-luxury);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1030;
    position: relative;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-accent);
    opacity: 0.8;
}

.site-header .navbar-brand img {
    height: 55px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.site-header .navbar-brand:hover img {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.3));
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    color: var(--text-color) !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    position: relative;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--gold-accent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.dropdown-menu {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.98);
    margin-top: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-accent);
}

.dropdown-item {
    font-weight: 500;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 0.9rem;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gold-accent);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.dropdown-item:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color) !important;
    transform: translateX(8px);
}

.dropdown-item:hover::before {
    height: 70%;
}

/* Premium Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.5rem;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
}

.lang-switcher:hover {
    background: rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.lang-switcher .btn-link {
    border: none;
    background: transparent;
    padding: 0.2rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.lang-switcher .btn-link:hover {
    transform: scale(1.15) translateY(-2px);
}

.lang-switcher .btn-link:hover .flag {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsive header tweaks for mobile - keep logo and burger on one line */
@media (max-width: 576px) {
    .site-header .navbar > .container {
        flex-wrap: nowrap;
    }

    .site-header .navbar-brand img {
        height: 40px;
    }

    .navbar-toggler {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

/* Hide selected language flag */
.lang-switcher .dropdown-toggle .flag {
    display: none;
}

/* Premium Flag Styles */
.flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(37, 99, 235, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.flag-az {
    background-image: url('../lang/az.png');
    background-size: cover;
}

.flag-en {
    background-image: url('../lang/en.png');
    background-size: cover;
}

.flag-el {
    background-image: url('../lang/gr.png');
    background-size: cover;
}

/* Language Label */
.lang-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.3rem;
}

/* Active Language Indicator */
.lang-switcher .active-lang {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.6rem;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 8px;
    margin-right: 0.5rem;
}

.lang-switcher .active-lang .flag {
    width: 24px;
    height: 24px;
    border-color: var(--gold-accent);
}

.lang-switcher .active-lang span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-accent);
    text-transform: uppercase;
}

/* Premium Hero Slider */
.hero-slider {
    position: relative;
    height: calc(100vh - 85px);
    min-height: 550px;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.6);
    z-index: 1;
    pointer-events: none;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: calc(100vh - 85px);
    min-height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.5);
    z-index: 1;
}

.carousel-item.active .hero-slide {
    opacity: 1;
    transform: scale(1);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-slide-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
    color: white;
    letter-spacing: -0.02em;
}

.hero-slide-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.15rem, 3vw, 1.5rem);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1.2s ease-out 0.3s both;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.01em;
}

/* Premium Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.hero-dot:hover {
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
}

.hero-dot:hover::before {
    opacity: 0.3;
}

.hero-dot.active {
    width: 45px;
    border-radius: 22px;
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

/* Premium Section Styles */
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(37, 99, 235, 0.03), transparent);
    transform: skewX(-45deg);
    pointer-events: none;
    animation: shimmer 8s infinite;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(-45deg, transparent, rgba(233, 69, 96, 0.02), transparent);
    transform: skewX(45deg);
    pointer-events: none;
    animation: shimmer-reverse 10s infinite;
}

.section-gray {
    background: var(--cream-color);
    position: relative;
}

.section-gray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-accent);
    opacity: 0.6;
}

.section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    letter-spacing: -0.02em;
}

.section h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-accent);
    opacity: 0.7;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold-accent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

/* Premium Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
}

.goal-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(37, 99, 235, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.goal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-accent);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.goal-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.goal-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gold-accent);
}

.goal-item:hover::before {
    transform: scaleX(1);
}

.goal-item:hover::after {
    opacity: 1;
}

.goal-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 2.5rem;
    background: var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 2.5rem;
}

.goal-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gold-accent);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(15px);
    transition: all 0.4s ease;
}

.goal-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--platinum-accent);
    border-radius: 50%;
    z-index: -2;
    opacity: 0;
    transition: all 0.3s ease;
}

.goal-item:hover .goal-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
}

.goal-item:hover .goal-icon::before {
    opacity: 0.6;
    filter: blur(20px);
}

.goal-item:hover .goal-icon::after {
    opacity: 0.8;
}

.goal-item h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    position: relative;
}

.goal-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold-accent);
    opacity: 0.6;
}

.goal-item p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    margin-top: 1.5rem;
}

/* Modern Detailed Goals List */
.goals-detailed-list {
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.goal-detailed-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.goal-detailed-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.goal-detailed-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.goal-detailed-item:hover::before {
    transform: scaleY(1);
}

.goal-number {
    min-width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Sora', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: var(--transition-base);
}

.goal-detailed-item:hover .goal-number {
    transform: scale(1.1) rotate(5deg);
}

.goal-text h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    letter-spacing: -0.01em;
}

.goal-text p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Modern Footer */
.site-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-45deg);
    pointer-events: none;
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) skewX(-45deg); }
    100% { transform: translateX(100%) skewX(-45deg); }
}

@keyframes shimmer-reverse {
    0% { transform: translateX(100%) skewX(45deg); }
    100% { transform: translateX(-100%) skewX(45deg); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
    }
}

/* Premium Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-full);
    padding: 15px 35px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    transition: var(--transition-base);
    box-shadow: var(--shadow-luxury);
    color: white;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.btn-primary::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: all 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
    background: #1d4ed8;
    color: white;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
    border-radius: var(--radius-full);
    padding: 13px 33px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover::before {
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
        margin-top: 0;
    }
    
    .hero-slide-content h1 {
        font-size: 2rem;
    }
    
    .hero-slide-content p {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .goal-item {
        padding: 2rem;
    }
    
    .goal-icon {
        width: 80px;
        height: 80px;
    }
    
    .goal-detailed-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .goal-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .navbar-nav {
        padding: 0.5rem 0;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        padding: 0.5rem 0.8rem !important;
    }
}

/* Premium Visual Effects */
.luxury-gradient {
    background: var(--cream-color);
    position: relative;
    overflow: hidden;
}

.luxury-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(233, 69, 96, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.gold-accent {
    background: var(--gold-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-shadow {
    box-shadow: var(--shadow-luxury);
}

.glass-luxury {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-xl);
}

.luxury-border {
    border: 2px solid var(--gold-accent);
    background: white;
}

.luxury-border:hover {
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.95);
}

/* Premium Loading Animation */
.luxury-loader {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(37, 99, 235, 0.2);
    border-top: 3px solid var(--gold-accent);
    border-radius: 50%;
    animation: luxury-spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes luxury-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Premium Hover Effects */
.luxury-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.luxury-scale:hover {
    transform: scale(1.05);
}

.luxury-rotate:hover {
    transform: rotate(5deg) scale(1.05);
}

/* Premium Text Effects */
.luxury-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    background: var(--gold-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.luxury-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxury-text:hover::after {
    opacity: 1;
}

/* Premium Selection and Focus */
::selection {
    background: var(--gold-accent);
    color: white;
}

::-moz-selection {
    background: var(--gold-accent);
    color: white;
}

.btn:focus,
.nav-link:focus,
.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.form-control:focus {
    border-color: var(--gold-accent);
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--cream-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-accent);
    border-radius: 6px;
    border: 2px solid var(--cream-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-accent);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) skewX(-45deg); }
    100% { transform: translateX(100%) skewX(-45deg); }
}

/* News Cards */
.news-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-title {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.news-title a {
    color: var(--dark-color);
    transition: var(--transition-base);
}

.news-title a:hover {
    color: var(--accent-color);
}

.news-excerpt {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-meta .badge {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
}

/* News Detail */
.news-detail-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.news-detail-card h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.content-area {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.content-area h1,
.content-area h2,
.content-area h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.content-area p {
    margin-bottom: 1.5rem;
}

/* Pagination */
.pagination .page-link {
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.pagination .page-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.pagination .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.5);
    color: #94a3b8;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item {
    font-weight: 500;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

/* Responsive News */
@media (max-width: 768px) {
    .news-card-body {
        padding: 1.5rem;
    }
    
    .news-detail-card {
        padding: 2rem;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .content-area {
        font-size: 1rem;
    }
    
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Contact Page Styles */
.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.contact-info-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-info-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.social-links h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark-color);
}

.form-floating {
    margin-bottom: 0;
}

.form-floating > .form-control {
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    height: calc(3.5rem + 2px);
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-floating > label {
    color: #64748b;
    font-weight: 500;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
}

.form-check {
    padding-left: 2rem;
}

.form-check-input {
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: #64748b;
    font-weight: 500;
}

/* Map Styles */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.map-iframe {
    border: none;
    width: 100%;
    height: 400px;
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.2));
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .map-iframe {
        height: 300px;
    }
}

/* Association About Page Styles */
.about-content-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.about-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Values Section */
.value-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.value-card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Goals Summary */
.goal-summary-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.goal-summary-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.goal-summary-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.goal-summary-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Statistics */
.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #64748b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive About */
@media (max-width: 768px) {
    .about-content-card {
        padding: 2rem;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .goal-summary-card {
        padding: 1rem;
    }
}
