/* შერეკილები - თანამედროვე მოდერნისტული დიზაინი - საბოლოო ვერსია */

/* CSS Variables - Modern Georgian Design */
:root {
    /* Modern Georgian Colors */
    --primary-color: #DF7811;
    --primary-dark: #C56A0F;
    --primary-light: #F2941A;
    --secondary-color: #8B4513;
    --accent-color: #DAA520;
    --cream-color: #F5F5DC;
    --warm-yellow: #FFD700;
    --deep-white: #FFFEF7;
    --red-bordeaux: #8B0000;
    
    /* Header/Footer Background */
    --header-footer-bg: #174A43;
    
    /* Modern Background Colors */
    --bg-primary: #0F1419;
    --bg-secondary: #1A2332;
    --bg-tertiary: #243447;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-hover: rgba(255, 255, 255, 0.1);
    --bg-input: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #E0E6ED;
    --text-muted: #9CA3AF;
    --text-inverse: #0F1419;
    --text-on-primary: #FFFFFF;
    
    /* Border Colors */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.15);
    --border-dark: rgba(255, 255, 255, 0.05);
    
    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Typography */
    --font-georgian: 'BPG Nino', 'Sylfaen', serif;
    --font-english: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(223, 120, 17, 0.4);
    --shadow-glow-lg: 0 0 40px rgba(223, 120, 17, 0.3);
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(223, 120, 17, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(223, 120, 17, 0.05) 0%, transparent 50%),
        url('../images/georgian-math-formulas.svg');
    background-attachment: fixed;
    background-size: cover, cover, 100px 100px;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Georgian Mathematical Ornaments */
.georgian-math-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/georgian-math-formulas.svg');
    background-repeat: repeat;
    background-size: 120px 120px;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Typography */
.lang-ka {
    font-family: var(--font-georgian);
}

.lang-ka h1, .lang-ka h2, .lang-ka h3, .lang-ka h4, .lang-ka h5, .lang-ka h6 {
    font-family: var(--font-georgian);
    font-weight: 700;
}

.lang-en h1, .lang-en h2, .lang-en h3, .lang-en h4, .lang-en h5, .lang-en h6 {
    font-family: var(--font-display);
    font-weight: 600;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.3;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Header styles moved to header.css */

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-on-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-on-primary);
    box-shadow: var(--shadow-glow);
}

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

.btn-glass:hover {
    background: var(--bg-hover);
    border-color: var(--border-light);
}

.btn-lg {
    padding: var(--spacing-lg) var(--spacing-xxl);
    font-size: 1.1rem;
}

.btn-sm {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.875rem;
}

/* Modern Cards */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--border-light);
}

.card:hover::before {
    opacity: 1;
}

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-content {
    padding: var(--spacing-xl);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-weight: 600;
}

.card-description {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    text-shadow: var(--shadow-glow);
}

/* Modern Grid */
.grid {
    display: grid;
    gap: var(--spacing-xl);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Modern Sections */
.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    box-shadow: var(--shadow-glow);
}

/* Hero Slider - Modern with Touch Support */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.slide-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.7), rgba(15, 20, 25, 0.4));
    backdrop-filter: blur(1px);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-on-primary);
    max-width: 800px;
    padding: var(--spacing-xl);
}

.slide-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: var(--spacing-xl);
    font-family: var(--font-georgian);
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: var(--spacing-xxl);
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.slide-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Navigation - Hidden on Mobile */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-lg);
    z-index: 3;
    pointer-events: none;
}

.slider-btn {
    background: rgba(23, 74, 67, 0.8);
    border: none;
    color: var(--text-on-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(223, 120, 17, 0.3);
}

.slider-btn:hover {
    background: rgba(23, 74, 67, 1);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.slider-btn span {
    line-height: 1;
    margin-top: -2px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(223, 120, 17, 0.5);
}

/* Modern Category Slider with Touch Support */
.category-slider {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.category-slider-wrapper {
    display: flex;
    gap: var(--spacing-lg);
    cursor: grab;
    transition: transform 0.3s ease-out;
    touch-action: pan-x;
}

.category-slider-wrapper:active {
    cursor: grabbing;
}

.category-slide {
    flex: 0 0 300px;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.category-slide:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.category-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-slide:hover .category-slide-image {
    transform: scale(1.1);
}

.category-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.6), rgba(223, 120, 17, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.category-slide:hover .category-slide-overlay {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.4), rgba(223, 120, 17, 0.5));
}

.category-slide-title {
    font-family: var(--font-georgian);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-on-primary);
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Modern Featured Section */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.featured-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    group: hover;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.featured-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.featured-card:hover::before {
    opacity: 1;
}

.featured-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.featured-overlay {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.25rem;
}

.featured-content {
    padding: var(--spacing-xl);
}

.featured-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.featured-description {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.featured-actions {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

/* Character Showcase - Modern */
.character-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xxl);
    margin: var(--spacing-3xl) 0;
}

.character-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xxl);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.character-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(223, 120, 17, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.character-card:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.character-card:hover::before {
    opacity: 1;
}

.character-image {
    width: 180px;
    height: 240px;
    margin: 0 auto var(--spacing-xl);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-normal);
}

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

.character-name {
    font-family: var(--font-georgian);
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

.character-quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Character Slider - Mini Cards */
.character-slider {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.character-slider-wrapper {
    display: flex;
    gap: var(--spacing-lg);
    cursor: grab;
    transition: transform 0.3s ease-out;
    touch-action: pan-x;
}

.character-slider-wrapper:active {
    cursor: grabbing;
}

.character-card-mini {
    flex: 0 0 220px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.character-card-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(223, 120, 17, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.character-card-mini:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.character-card-mini:hover::before {
    opacity: 1;
}

.character-image-mini {
    width: 80px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--radius-md);
    transition: transform var(--transition-normal);
    object-fit: cover;
}

.character-card-mini:hover .character-image-mini {
    transform: scale(1.05);
}

.character-name-mini {
    font-family: var(--font-georgian);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.character-quote-mini {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    text-align: center;
    margin: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/georgian-math-formulas.svg');
    background-repeat: repeat;
    background-size: 80px 80px;
    opacity: 0.02;
    pointer-events: none;
}

.testimonials-title {
    font-family: var(--font-georgian);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.testimonial-item {
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.testimonial-quote {
    font-family: var(--font-georgian);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Map Section */
.map-section {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin: var(--spacing-3xl) 0;
}

.map-container {
    height: 400px;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    background: rgb(23 74 67 / 72%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    z-index: 10;
    max-width: 300px;
}

.map-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.map-address {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.map-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.map-contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer styles moved to footer.css */

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .header-content {
        padding: var(--spacing-md) 0;
    }
    
    .logo-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .logo-text {
        font-size: 1.75rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-slider {
        height: 80vh;
        min-height: 600px;
    }
    
    .slide-content {
        padding: var(--spacing-lg);
    }
    
    /* Hide slider navigation on mobile */
    .slider-nav {
        display: none;
    }
    
    .category-slide {
        flex: 0 0 250px;
        height: 320px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .character-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .character-card {
        padding: var(--spacing-xl);
    }
    
    .character-image {
        width: 150px;
        height: 200px;
    }
    
    .testimonials {
        padding: var(--spacing-xl);
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        margin: var(--spacing-lg);
        max-width: none;
    }
    
    }

@media (max-width: 480px) {
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .card-content,
    .featured-content {
        padding: var(--spacing-lg);
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .featured-actions {
        flex-direction: column;
    }
    
    .slide-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Notification System */
.notification {
    position: fixed;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    color: var(--text-primary);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    max-width: 300px;
    box-shadow: var(--shadow-xl);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid var(--success);
}

.notification-error {
    border-left: 4px solid var(--error);
}

.notification-info {
    border-left: 4px solid var(--info);
} 
