/* 
   AB Communication - Design System
   Brand Colors from Logo: Red #DC2626 (A), Navy #1E3A8A (B)
   Theme: WHITE primary, DARK secondary (toggle)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* === BRAND COLORS (from logo) === */
    --brand-red: #DC2626;
    --brand-red-dark: #991B1B;
    --brand-red-light: #FCA5A5;
    --brand-red-gradient: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);

    --brand-blue: #1E3A8A;
    --brand-blue-dark: #1E40AF;
    --brand-blue-light: #93C5FD;
    --brand-blue-gradient: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);

    /* === LIGHT THEME (default) === */
    --bg-main: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F1F5F9;
    --bg-dark: #070707;
    --bg-darker: #020202;

    --text-primary: #111827;
    --text-secondary: #374151;
    --text-gray: #6B7280;
    --text-white: #FFFFFF;
    --text-light: #F9FAFB;
    --text-dark: #1D1D1F;

    --border-color: #E5E7EB;
    --border-focus: var(--brand-red);

    --header-bg: rgba(255,255,255,0.92);
    --header-border: rgba(0,0,0,0.08);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-red: 0 4px 20px rgba(220,38,38,0.25);
    --shadow-blue: 0 4px 20px rgba(30,58,138,0.25);

    /* keep legacy aliases */
    --gold: #DC2626;
    --gold-gradient: var(--brand-red-gradient);
    --gold-dark: #991B1B;
    --emerald: #1E3A8A;
    --emerald-light: #1E40AF;
    --emerald-gradient: var(--brand-blue-gradient);
    --red-velvet: #DC2626;

    /* Fonts */
    --font-title: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --max-width: 1280px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* === DARK MODE === */
body.dark-mode {
    --bg-main: #0A0A0A;
    --bg-secondary: #111111;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --text-primary: #F9FAFB;
    --text-secondary: #D1D5DB;
    --text-gray: #9CA3AF;
    --border-color: rgba(255,255,255,0.08);
    --header-bg: rgba(10,10,10,0.92);
    --header-border: rgba(255,255,255,0.06);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.6);
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

li {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--brand-red); }
.text-red { color: var(--brand-red); }
.text-blue { color: var(--brand-blue); }
.text-emerald { color: var(--brand-blue); }
.text-gray { color: var(--text-gray); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.serif-title {
    font-family: var(--font-serif);
    font-weight: 400;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

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

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .section-padding { padding: 60px 0; }
}

/* Card / Glass */
.glass {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.glass-premium {
    background: var(--bg-card);
    border: 1px solid rgba(220,38,38,0.2);
    box-shadow: var(--shadow-red);
}

.glass-emerald {
    background: var(--bg-card);
    border: 1px solid rgba(30,58,138,0.2);
    box-shadow: var(--shadow-blue);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    gap: 10px;
    text-decoration: none;
}

.btn-gold, .btn-red-brand {
    background: var(--brand-red-gradient);
    color: #fff;
    border-color: var(--brand-red);
    box-shadow: var(--shadow-red);
    position: relative;
    overflow: hidden;
}
.btn-gold:hover, .btn-red-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(220,38,38,0.4);
    background: var(--brand-red-dark);
}

.btn-emerald, .btn-blue-brand {
    background: var(--brand-blue-gradient);
    color: #fff;
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-blue);
}
.btn-emerald:hover, .btn-blue-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30,58,138,0.4);
    background: var(--brand-blue-dark);
}

.btn-red { background: var(--brand-red-gradient); color: #fff; border-color: var(--brand-red); }
.btn-red:hover { transform: translateY(-2px); }

.btn-outline {
    background: transparent;
    border-color: var(--brand-red);
    color: var(--brand-red);
}
.btn-outline:hover {
    background: var(--brand-red);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-blue {
    background: transparent;
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}
.btn-outline-blue:hover {
    background: var(--brand-blue);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    border-color: var(--brand-red);
    color: var(--brand-red);
}
.btn-outline-gold:hover {
    background: var(--brand-red);
    color: #fff;
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--header-border);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.logo-text .red { color: var(--brand-red); }
.logo-text .blue { color: var(--brand-blue); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-red);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--brand-red); }

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: #F1F5F9;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3px;
    gap: 2px;
}

body.dark-mode .lang-switcher {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn.active {
    background: var(--brand-red);
    color: #fff;
}

/* Dark Mode Toggle Button */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}
.theme-toggle:hover { background: var(--brand-red); color: #fff; border-color: var(--brand-red); }

/* Header CTAs */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .header-actions .btn-header {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(0.3) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--brand-red);
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: var(--font-serif);
    font-style: italic;
    background: linear-gradient(180deg, #FFFFFF 30%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; gap: 15px; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Event Cards Home */
.event-split-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
}

.event-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.event-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    z-index: 1;
    transition: var(--transition-slow);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2,2,2,0.95) 0%, rgba(2,2,2,0.6) 40%, transparent 100%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.event-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.event-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.event-card:hover .event-card-bg img {
    transform: scale(1.08);
}

.event-card-content {
    position: relative;
    z-index: 3;
}

.event-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.event-badge-gold {
    background: var(--gold);
    color: var(--bg-darker);
}

.event-badge-emerald {
    background: var(--emerald-light);
    color: var(--text-white);
}

.event-card-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

.event-card-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.event-card-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.event-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.event-bullet i {
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .event-split-grid { grid-template-columns: 1fr; }
    .event-card { height: 480px; padding: 30px; }
}

/* Key Metrics Section */
.metrics-section {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 50%, var(--brand-blue) 100%);
    padding: 80px 0;
}

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

.metric-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 6px;
    position: relative;
}

.metric-num {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.metric-label {
    font-family: var(--font-title);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Methodology */
.method-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    position: relative;
}

.method-card {
    padding: 30px;
    border-radius: 6px;
    position: relative;
    z-index: 2;
}

.method-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    border: 1px dashed rgba(212, 175, 55, 0.2);
    z-index: -1;
    transition: var(--transition-smooth);
}

.method-card:hover::after {
    border: 1px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
}

.method-step {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    margin-bottom: 15px;
}

.method-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

@media (max-width: 992px) {
    .method-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .method-grid { grid-template-columns: 1fr; }
}

/* Services Grid */
.services-section {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-box {
    padding: 40px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.service-box:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.service-box:hover .service-icon {
    transform: scale(1.1);
    color: var(--text-white);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.service-link {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.service-link:hover { color: var(--brand-blue); }

@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* Director Section */
.director-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.director-grid {
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 60px;
    align-items: center;
}

.director-img-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.director-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2,2,2,0.8), transparent 40%);
    z-index: 2;
}

.director-img-container img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.director-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
}

.director-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2px;
}

.director-title-label {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.director-content {
    display: flex;
    flex-direction: column;
}

.director-quote {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--text-white);
    font-style: italic;
    margin-bottom: 25px;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.director-bio {
    color: var(--text-gray);
    margin-bottom: 35px;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .director-grid { grid-template-columns: 1fr; gap: 40px; }
    .director-img-container { max-width: 450px; margin: 0 auto; }
}

/* Pricing Packs */
.packs-section {
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.pack-card {
    padding: 35px 24px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.pack-card:hover {
    transform: translateY(-5px);
}

.pack-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(20,20,20,0.9) 0%, rgba(10,10,10,0.95) 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
}

.pack-num {
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pack-title {
    font-size: 1.35rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.pack-price {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 25px;
}

.pack-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
}

.pack-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    flex-grow: 1;
}

.pack-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.pack-bullet i {
    color: var(--gold);
    margin-top: 3px;
}

.pack-card.featured .pack-bullet i {
    color: var(--gold-light);
}

@media (max-width: 992px) {
    .packs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .packs-grid { grid-template-columns: 1fr; }
}

/* Strategic Guide Section */
.guide-section {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-red) 100%);
    padding: 80px 0;
}

.guide-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.guide-title {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #fff;
}

.guide-subtitle {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.guide-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.guide-input {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 14px 20px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.guide-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
    .guide-box { padding: 30px 20px; }
    .guide-form { flex-direction: column; }
    .guide-title { font-size: 1.6rem; }
}

/* Footer */
footer {
    background: #111827;
    border-top: 3px solid var(--brand-red);
    padding: 80px 0 30px 0;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo-desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #9CA3AF;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.footer-link:hover { color: var(--brand-red); padding-left: 5px; }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #9CA3AF;
}
.footer-contact-item i { color: var(--brand-red); margin-top: 4px; font-size: 1rem; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.footer-developer span {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: var(--transition-fast);
}
.social-link:hover { background: var(--brand-red); color: #fff; border-color: var(--brand-red); transform: translateY(-2px); }

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* Page Awards Specific Styling */
.page-awards {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
}

.awards-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(2,2,2,0.85) 0%, rgba(2,2,2,0.9) 100%);
    z-index: 1;
}

.awards-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.awards-hero-content {
    position: relative;
    z-index: 2;
}

.benefit-card {
    padding: 40px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(18, 18, 18, 0.5);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 25px;
}

/* FILOSES Specific Styling */
.page-filoses {
    background: #021a0f; /* very dark emerald background */
    background: linear-gradient(180deg, #021a0f 0%, #050505 100%);
}

.filoses-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 0;
}

.filoses-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, #021a0f 90%),
                linear-gradient(to bottom, rgba(2,26,15,0.5) 0%, #021a0f 100%);
    z-index: 1;
}

.filoses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.filoses-card {
    padding: 40px;
    border-radius: 6px;
    background: rgba(0, 50, 25, 0.15);
    border: 1px solid rgba(0, 143, 80, 0.2);
    transition: var(--transition-smooth);
}

.filoses-card:hover {
    border-color: var(--emerald-light);
    box-shadow: 0 10px 30px rgba(0, 143, 80, 0.15);
}

.filoses-icon {
    font-size: 2.5rem;
    color: var(--emerald-light);
    margin-bottom: 25px;
}

/* Contact Page Layout */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}
.contact-info-panel { padding: 40px 0; }
.contact-form-panel {
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}
.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}
.map-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--brand-red);
    gap: 10px;
    text-align: center;
    padding: 30px;
}
.map-placeholder h4 { color: var(--text-primary); font-size: 1.1rem; }
@media (max-width: 992px) {
    .contact-section-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 100%;
    max-width: 550px;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-smooth);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 576px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Payment Mocks inside Modal */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.payment-method-btn {
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    border-radius: 4px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-title);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-gray);
}
.payment-method-btn.active, .payment-method-btn:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    background: rgba(220,38,38,0.05);
}

.payment-method-btn img {
    height: 20px;
    object-fit: contain;
}

/* WhatsApp Chatbot Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.whatsapp-popup.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp-popup-header {
    background: #075E54;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    overflow: hidden;
    position: relative;
}

.whatsapp-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25D366;
    border: 1px solid white;
}

.whatsapp-popup-body {
    padding: 20px;
    background: #e5ddd5;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-msg {
    max-width: 80%;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.whatsapp-msg-received {
    background: white;
    align-self: flex-start;
    color: var(--text-dark);
    border-top-left-radius: 0;
}

.whatsapp-msg-time {
    display: block;
    font-size: 0.65rem;
    color: var(--text-gray);
    margin-top: 4px;
    text-align: right;
}

.whatsapp-popup-footer {
    padding: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.whatsapp-input {
    flex-grow: 1;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 8px 15px;
    color: white;
    font-size: 0.85rem;
}

.whatsapp-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #075E54;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Carousel/Gallery in Awards Page */
.awards-gallery-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.gallery-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 30px;
    scroll-snap-type: x mandatory;
}

.gallery-slide {
    flex: 0 0 400px;
    height: 300px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-slide:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--text-white);
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
}

/* Event Schedule/Calendar in Awards/FILOSES */
.calendar-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.calendar-card {
    padding: 30px;
    border-radius: 6px;
}

.calendar-date {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 20px;
}

.calendar-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

.calendar-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Partner Logos Slider/Grid */
.partners-section {
    padding: 80px 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.partner-logo {
    height: 45px;
    opacity: 0.35;
    filter: grayscale(1) brightness(2);
    transition: var(--transition-fast);
}

.partner-logo:hover {
    opacity: 0.85;
    filter: none;
}

/* Blog / News Preview Section */
.blog-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--gold);
    font-family: var(--font-title);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

.blog-excerpt {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blog-more {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-card:hover .blog-more {
    color: var(--gold);
}

@media (max-width: 992px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* Contact Info & Map Row */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-panel {
    padding: 40px;
    border-radius: 6px;
}

.map-wrapper {
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    position: relative;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .contact-section-grid { grid-template-columns: 1fr; }
}
