/**
 * Yad Shimshon - Luxury Premium Design
 * Inspired by Swiss Private Banking & High-End Finance
 * Ultra-sophisticated visual experience
 */

/* ============================================
   CSS Variables - Luxury Color Palette
   ============================================ */
:root {
    /* Deep Luxurious Colors */
    --black: #000000;
    --navy-deep: #020408;
    --navy: #040810;
    --navy-light: #0a1020;
    --navy-medium: #101828;

    /* Gold - Refined & Elegant */
    --gold: #C9A227;
    --gold-bright: #E5B82A;
    --gold-light: #F4D03F;
    --gold-pale: rgba(201, 162, 39, 0.15);
    --gold-glow: rgba(201, 162, 39, 0.5);

    /* Platinum accents */
    --platinum: #E8E8E8;
    --silver: #B8B8B8;

    /* Text */
    --white: #FFFFFF;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.55);

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-bg-strong: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-gold: rgba(201, 162, 39, 0.3);

    /* Typography */
    --font-display: 'Playfair Display', 'Frank Ruhl Libre', serif;
    --font-body: 'Heebo', 'DM Sans', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1400px;

    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--navy-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html[dir="rtl"] body {
    font-family: 'Heebo', var(--font-body);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-bright) 100%);
    border-radius: 3px;
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

/* Skip Link */
.skip-link {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s ease;
}

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

/* ============================================
   Spectacular Background System
   ============================================ */
.bg-effects {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Animated Gradient Mesh */
.bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 80% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 50% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #050a12 0%, #0a1525 30%, #0d1a2d 70%, #0a1525 100%);
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Floating Orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orbFloat 25s ease-in-out infinite;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    bottom: 20%;
    left: -150px;
    animation-delay: -8s;
}

.bg-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: -16s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.02); }
}

/* Grain Texture Overlay */
.bg-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Animated Grid Lines */
.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* ============================================
   Navigation - Ultra Premium
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--transition-elegant);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(4, 8, 16, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 10px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    transform: translateX(-50%);
    transition: width 0.3s var(--transition-elegant);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: calc(100% - 36px);
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.9rem;
}

.lang-current:hover {
    border-color: var(--glass-border-gold);
    color: var(--white);
}

.noto-emoji {
    font-family: 'Noto Color Emoji', sans-serif;
}

.lang-arrow {
    transition: transform 0.3s ease;
}

.lang-selector.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: rgba(10, 16, 32, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s var(--transition-elegant);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

html[dir="ltr"] .lang-dropdown {
    right: auto;
    left: 0;
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: 0.9rem;
}

.lang-option:hover {
    background: var(--glass-bg-strong);
    color: var(--white);
}

.lang-option.active {
    color: var(--gold);
}

.lang-check {
    margin-inline-start: auto;
    opacity: 0;
    transition: opacity 0.2s;
}

.lang-option.active .lang-check {
    opacity: 1;
}

/* CTA Button in Nav */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.3s var(--transition-elegant);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

/* Client Area Button */
.nav-client {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--glass-border-gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-client:hover {
    background: var(--gold-pale);
    border-color: var(--gold);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section - Spectacular
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 40px 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-gradient {
    position: absolute;
    width: 1200px;
    height: 1200px;
    background:
        radial-gradient(circle at 30% 40%, rgba(201, 162, 39, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(201, 162, 39, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: -2s; }
.particle:nth-child(3) { left: 30%; animation-delay: -4s; }
.particle:nth-child(4) { left: 40%; animation-delay: -6s; }
.particle:nth-child(5) { left: 50%; animation-delay: -8s; }
.particle:nth-child(6) { left: 60%; animation-delay: -10s; }
.particle:nth-child(7) { left: 70%; animation-delay: -12s; }
.particle:nth-child(8) { left: 80%; animation-delay: -14s; }
.particle:nth-child(9) { left: 90%; animation-delay: -1s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-container {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    z-index: 1;
}

.hero-content {
    max-width: 720px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid var(--glass-border-gold);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 32px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(201, 162, 39, 0); }
}

/* Logo in Hero */
.hero-logo {
    margin-bottom: 24px;
}

.hero-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
}

.title-line {
    display: block;
    white-space: nowrap;
}

.title-accent {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Responsive fix for hero title */
@media (max-width: 1200px) {
    .title-line {
        white-space: normal;
    }
}

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

/* Description */
.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 560px;
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s var(--transition-elegant);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    color: var(--navy);
    box-shadow:
        0 4px 20px rgba(201, 162, 39, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(201, 162, 39, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-bg-strong);
    border-color: var(--glass-border-gold);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--glass-border), transparent);
    align-self: center;
}

/* Hero Visual - Floating Cards */
.hero-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    background: rgba(10, 16, 32, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.5s var(--transition-elegant);
}

.visual-card:hover {
    border-color: var(--glass-border-gold);
    transform: translateY(-5px);
}

.card-main {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    min-width: 280px;
    animation: cardFloat 6s ease-in-out infinite;
}

html[dir="ltr"] .card-main {
    right: auto;
    left: 0;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 15px)); }
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, transparent 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--gold);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.card-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.card-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #10B981;
}

.card-change.positive {
    color: #10B981;
}

.card-secondary {
    top: 10%;
    right: 40%;
    min-width: 220px;
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: -2s;
}

html[dir="ltr"] .card-secondary {
    right: auto;
    left: 40%;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.card-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.card-badge {
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.card-chart {
    height: 60px;
}

.card-chart svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.card-tertiary {
    bottom: 15%;
    right: 25%;
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: -4s;
}

html[dir="ltr"] .card-tertiary {
    right: auto;
    left: 25%;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
}

.trust-badge svg {
    width: 28px;
    height: 28px;
}

.trust-badge span {
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    opacity: 0.6;
}

/* ============================================
   Container & Sections
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold-pale);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.text-gold {
    color: var(--gold);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: linear-gradient(180deg, transparent 0%, rgba(10, 16, 32, 0.5) 50%, transparent 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    max-width: 560px;
}

.about-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 500;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    border-color: var(--glass-border-gold);
    background: var(--glass-bg-strong);
}

.about-feature svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 500;
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.about-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-years-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    color: var(--navy);
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

html[dir="ltr"] .about-years-badge {
    right: auto;
    left: 30px;
}

.about-years-badge .years-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.about-years-badge .years-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.about-quote {
    margin-top: 60px;
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    position: relative;
}

.about-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

html[dir="ltr"] .about-quote::before {
    right: auto;
    left: 30px;
}

.about-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-quote cite {
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

/* About Features */
.about-features .feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-features .feature:hover {
    border-color: var(--glass-border-gold);
    background: var(--glass-bg-strong);
}

.about-features .feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, transparent 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.about-features .feature-icon svg {
    width: 24px;
    height: 24px;
}

.about-features .feature span {
    font-weight: 500;
    color: var(--text-primary);
}

/* About Visual Elements */
.about-image {
    position: relative;
}

.image-frame {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.trust-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.trust-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, transparent 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.trust-icon svg {
    width: 60px;
    height: 60px;
}

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

.trust-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.trust-label {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ============================================
   Services Section
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.5s var(--transition-elegant);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--transition-elegant);
}

.service-card:hover {
    border-color: var(--glass-border-gold);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

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

.service-card.featured {
    border-color: var(--glass-border-gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, var(--glass-bg) 100%);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
}

html[dir="ltr"] .service-badge {
    right: auto;
    left: 20px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, transparent 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-feature svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--gold);
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.03) 0%, transparent 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s var(--transition-elegant);
}

.stat-card:hover {
    border-color: var(--glass-border-gold);
    transform: translateY(-5px);
}

.stat-card-icon,
.stat-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, transparent 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.stat-card-icon svg,
.stat-icon svg {
    width: 36px;
    height: 36px;
}

.stat-value {
    margin-bottom: 8px;
}

.stat-card .counter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-card-title {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-card-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 900px) {
    .faq-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .faq-item:nth-child(odd) {
        transform: translateY(0);
    }

    .faq-item:nth-child(even) {
        transform: translateY(20px);
    }
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--glass-border-gold);
}

.faq-item.open {
    border-color: var(--gold);
    background: var(--glass-bg-strong);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    gap: 20px;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-elegant);
}

.faq-answer-content {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    margin-top: 48px;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ============================================
   Events / Gallery Section
   ============================================ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.event-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-elegant);
}

.event-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.event-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s var(--transition-bounce);
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23040810'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

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

.event-image:hover::before {
    opacity: 1;
}

.event-image:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* ============================================
   Blog Section
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--transition-elegant);
    cursor: pointer;
}

.blog-card:hover {
    border-color: var(--glass-border-gold);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 162, 39, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-medium) 50%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative pattern for blog images without actual images */
.blog-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(201, 162, 39, 0.05) 50%, transparent 60%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image::before {
    opacity: 1;
}

/* Decorative icon for blog images */
.blog-image::after {
    content: '';
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, transparent 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-elegant);
}

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

.blog-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-category {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: rgba(201, 162, 39, 0.9);
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 5;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--gold);
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: linear-gradient(180deg, transparent 0%, rgba(10, 16, 32, 0.5) 50%, var(--navy-deep) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.1) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.05);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

.contact-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--gold);
}

.contact-hours {
    margin-top: 20px;
    padding: 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.contact-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--gold);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: var(--text-secondary);
}

.hours-row span:last-child {
    color: var(--white);
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(145deg, rgba(20, 30, 50, 0.95) 0%, rgba(10, 20, 35, 0.98) 100%);
    border: 2px solid rgba(201, 162, 39, 0.4);
    border-radius: 24px;
    padding: 40px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(201, 162, 39, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
    padding: 18px 22px;
    background: linear-gradient(145deg, rgba(8, 15, 30, 0.98) 0%, rgba(5, 10, 22, 1) 100%);
    border: 2px solid rgba(201, 162, 39, 0.35);
    border-radius: 14px;
    box-shadow:
        inset 0 3px 12px rgba(0, 0, 0, 0.5),
        inset 0 1px 3px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 0 4px rgba(201, 162, 39, 0.05);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow:
        inset 0 3px 12px rgba(0, 0, 0, 0.5),
        inset 0 1px 3px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 0 4px rgba(201, 162, 39, 0.1),
        0 0 20px rgba(201, 162, 39, 0.08);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: linear-gradient(145deg, rgba(15, 22, 40, 0.98) 0%, rgba(10, 18, 35, 1) 100%);
    box-shadow:
        inset 0 3px 12px rgba(0, 0, 0, 0.4),
        0 0 0 4px rgba(201, 162, 39, 0.15),
        0 0 30px rgba(201, 162, 39, 0.12),
        0 0 60px rgba(201, 162, 39, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.form-input:focus::placeholder,
.form-textarea:focus::placeholder {
    color: rgba(201, 162, 39, 0.5);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    background-size: 20px;
    padding-left: 44px;
}

html[dir="ltr"] .form-select {
    background-position: right 16px center;
    padding-left: 20px;
    padding-right: 44px;
}

.form-select option {
    background: var(--navy);
    color: var(--white);
}

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

.form-submit {
    width: 100%;
    padding: 20px 36px;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
    background-size: 200% 100%;
    color: var(--navy);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(201, 162, 39, 0.4),
        0 8px 40px rgba(201, 162, 39, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.form-submit:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow:
        0 6px 25px rgba(201, 162, 39, 0.5),
        0 12px 50px rgba(201, 162, 39, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:active {
    transform: translateY(0);
    box-shadow:
        0 2px 15px rgba(201, 162, 39, 0.4),
        0 4px 25px rgba(201, 162, 39, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-privacy svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--navy-deep);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-credit {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-credit a {
    color: var(--gold);
    text-decoration: none;
}

/* ============================================
   Toast Notification
   ============================================ */
.toast {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 400px;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s var(--transition-bounce);
    z-index: 2000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

html[dir="ltr"] .toast {
    right: auto;
    left: 40px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.toast-close:hover {
    color: var(--white);
}

/* ============================================
   Animations
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-elegant);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    :root {
        --container-width: 1100px;
    }

    .hero-container {
        gap: 60px;
    }

    .about-content {
        gap: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .nav-container {
        padding: 0 24px;
    }

    .hero {
        padding: 120px 24px 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        max-width: 600px;
    }

    .hero-visual {
        height: 350px;
        order: -1;
    }

    .card-main {
        right: 50%;
        transform: translate(50%, -50%);
    }

    html[dir="ltr"] .card-main {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .card-secondary,
    .card-tertiary {
        display: none;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        flex-direction: column;
        background: rgba(4, 8, 16, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 32px 40px;
        gap: 8px;
        justify-content: flex-start;
        z-index: 100;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 16px;
        text-align: center;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta,
    .nav-client {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }

    .stat-divider {
        display: none;
    }

    .hero-stat {
        flex: 0 0 auto;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-visual {
        height: 280px;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .toast {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }

    html[dir="ltr"] .toast {
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .stat-card {
        padding: 36px 24px;
    }

    .stat-card .counter {
        font-size: 2.75rem;
    }

    .about-years-badge {
        position: static;
        margin-top: 24px;
    }
}
