@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ===== DESIGN SYSTEM VARIABLES ===== */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Color Palette */
    --color-primary: #00160E;       /* Rich Deep Green */
    --color-primary-light: #0d3427; /* Dark Forest Green Accent */
    --color-accent: #10B981;        /* Emerald Teal */
    --color-accent-hover: #059669;  /* Darker Emerald Hover */
    --color-dark: #111827;          /* Rich Charcoal */
    --color-light: #F9FAFB;         /* Pure Off-White */
    --color-sand-light: #F0FBF7;    /* Light Mint BG */
    --color-sand-card: #E4F5EE;     /* Mint Card BG */
    --color-border: #E5E7EB;
    --color-border-warm: #C8E5DA;   /* Soft Green Border */
    --color-text-dark: #1F2937;
    --color-text-muted: #4B5563;
    --color-text-light: #9CA3AF;
    --color-danger: #DC2626;        /* Alert Red */
    --color-success: #16A34A;       /* Success Green */
    --color-info: #2563EB;          /* Info Blue */

    /* Typography & Spacing */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ===== GLOBAL RESET & STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-sand-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.25;
}

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

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-text-muted); }

.bg-primary { background-color: var(--color-primary); color: white; }
.bg-dark { background-color: var(--color-dark); color: white; }
.bg-sand { background-color: var(--color-sand-card); }

.py-section { padding-top: 50px; padding-bottom: 50px; }
.py-section-lg { padding-top: 80px; padding-bottom: 80px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: white;
}

.btn-secondary:hover {
    background-color: #052c1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 22, 14, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* ===== NAVIGATION HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border-warm);
    transition: var(--transition-smooth);
}

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

header.scrolled .nav-container {
    padding: 6px 0;
}

header.scrolled .site-logo {
    height: 44px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    transition: var(--transition-smooth);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
}

.logo span {
    color: var(--color-accent);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

/* ===== BANNER INFO NOTICES ===== */
.verification-banner {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 101;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.verification-banner a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 5px;
}

.verification-banner a:hover {
    color: white;
}

/* ===== HERO SECTIONS ===== */
.hero-home {
    position: relative;
    padding: 120px 0 100px 0;
    background: linear-gradient(135deg, rgba(0, 22, 14, 0.92) 0%, rgba(0, 10, 6, 0.96) 100%),
                url('assets/img/hero-01.jpg') center/cover no-repeat;
    color: white;
    overflow: hidden;
}

.hero-home .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: white;
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: var(--color-accent);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--color-border);
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    border-t: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Inner Page Hero Header */
.hero-inner {
    background: linear-gradient(135deg, rgba(0, 22, 14, 0.95) 0%, rgba(0, 10, 6, 0.98) 100%),
                url('assets/img/hero-02.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 0 60px 0;
    text-align: center;
}

.hero-inner h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 12px;
}

.hero-inner p {
    font-size: 1.1rem;
    color: var(--color-border);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-top: 16px;
    color: var(--color-text-light);
}

.breadcrumbs a {
    color: var(--color-accent);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ===== HOME PAGE STAGGERED IMAGE GRID ===== */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 130px 130px 130px 130px 130px;
    gap: 16px;
    width: 100%;
    max-width: 520px;
}

.img-tile {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.img-tile:hover {
    transform: scale(1.02);
    border-color: var(--color-accent);
}

.img-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Desktop tile positions — 5 tiles */
.tile-1 { grid-column: 2; grid-row: 1 / 3; }
.tile-2 { grid-column: 1; grid-row: 2 / 4; }
.tile-3 { grid-column: 3; grid-row: 2 / 4; }
.tile-4 { grid-column: 2; grid-row: 3 / 5; }
.tile-5 { grid-column: 1; grid-row: 4 / 6; }

/* ===== WARNING BOXES / NOTICES ===== */
.notice-box {
    background-color: #FEF2F2;
    border-left: 4px solid var(--color-danger);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    color: #991B1B;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.notice-box svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.notice-box h4 {
    margin-bottom: 4px;
    color: #7F1D1D;
    font-size: 0.95rem;
}

.notice-box p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.notice-box.warning {
    background-color: #ECFDF5;
    border-left-color: var(--color-accent);
    color: #065F46;
}

.notice-box.warning h4 {
    color: #064E3B;
}

.notice-box.info {
    background-color: #EFF6FF;
    border-left-color: var(--color-info);
    color: #1E40AF;
}

.notice-box.info h4 {
    color: #1E3A8A;
}

/* ===== CORE SERVICES SECTIONS ===== */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 36px auto;
}

.section-header .sub {
    font-size: 1.275rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

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

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

/* Elegant Cards */
.card {
    background-color: var(--color-light);
    border: 1px solid var(--color-border-warm);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

/* ===== SUMMIT / TICKET PAGE STYLES ===== */
.registration-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* Process Timeline Steps */
.timeline {
    position: relative;
    padding-left: 32px;
    border-left: 2px dashed var(--color-border-warm);
    margin-left: 16px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -48px;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 4px solid var(--color-sand-light);
}

.timeline-item.active .timeline-badge {
    background-color: var(--color-accent);
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Sticky widget */
.registration-widget {
    background-color: var(--color-light);
    border: 1px solid var(--color-border-warm);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.counter-container {
    background-color: var(--color-primary);
    color: white;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 24px;
}

.counter-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    display: block;
}

.req-list {
    list-style: none;
    margin: 20px 0;
}

.req-list li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--color-text-muted);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text-dark);
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border-warm);
    background-color: white;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* ===== SERVICES / PRODUCTS PAGE ===== */
.sectors-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: var(--color-light);
    border: 1px solid var(--color-border-warm);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

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

.job-card {
    background-color: var(--color-light);
    border: 1px solid var(--color-border-warm);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.job-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--color-border-warm);
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

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

.job-title {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.job-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-accent);
    white-space: nowrap;
}

.job-tag.urgent {
    background-color: #FEF2F2;
    color: var(--color-danger);
}

.job-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.job-requirements {
    font-size: 0.8rem;
    background-color: var(--color-sand-light);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 20px;
    border-left: 3px solid var(--color-accent);
}

.job-requirements strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-text-dark);
}

/* ===== PARTNER / GALLERY HERO CARD ===== */
.partner-hero {
    background: linear-gradient(rgba(0, 22, 14, 0.85), rgba(0, 22, 14, 0.95)),
                url('assets/img/hero-03.jpg') center/cover no-repeat;
    color: white;
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    margin-bottom: 60px;
}

.partner-hero h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.partner-hero p {
    color: var(--color-border);
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.commission-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
}

/* ===== ABOUT PAGE ===== */
.rewards-section {
    background-color: var(--color-sand-card);
    border-radius: 16px;
    padding: 60px;
    margin-top: 60px;
}

.rewards-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.rewards-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--color-border-warm);
    height: 320px;
}

.rewards-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rewards-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.rewards-badge {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--color-accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.tribute-box {
    background-color: #F3F4F6;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}

.tribute-box h3 {
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.tribute-quote {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin: 20px 0;
}

/* ===== CONTACT PAGE CUSTOM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

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

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

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-item-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.contact-item-text a {
    color: var(--color-primary);
    font-weight: 600;
}

.contact-item-text a:hover {
    color: var(--color-accent);
}

/* Mock Map Canvas */
.map-canvas {
    background-color: #E2E8F0;
    border: 1px solid var(--color-border-warm);
    border-radius: 12px;
    height: 280px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        radial-gradient(#CBD5E1 15%, transparent 16%),
        radial-gradient(#CBD5E1 15%, transparent 16%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.map-marker {
    background-color: var(--color-primary);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
    gap: 6px;
}

.map-marker::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: var(--color-primary) transparent;
}

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

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/2;
    position: relative;
    border: 2px solid var(--color-border-warm);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

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

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

/* ===== TICKET CARDS ===== */
.ticket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.ticket-card {
    background-color: var(--color-light);
    border: 2px solid var(--color-border-warm);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.ticket-card.featured {
    border-color: var(--color-accent);
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.ticket-card:hover:not(.featured) {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.ticket-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent);
    display: block;
    margin: 12px 0;
    font-family: var(--font-heading);
}

.ticket-card.featured .ticket-price {
    color: var(--color-accent);
}

.ticket-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--color-text-muted);
    display: block;
}

.ticket-card.featured .ticket-label {
    color: rgba(255,255,255,0.6);
}

.ticket-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.ticket-card.featured .ticket-name {
    color: white;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--color-dark);
    color: white;
    padding: 60px 0 20px 0;
    font-size: 0.9rem;
    border-top: 4px solid var(--color-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-light);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-light);
    font-size: 0.8rem;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
    .hero-home .container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 24px;
    }

    .hero-image-wrapper {
        margin-top: 0;
    }

    .image-grid {
        max-width: 100%;
        grid-template-rows: 90px 90px 90px 90px 90px;
        gap: 10px;
    }

    .registration-wrapper, .contact-grid, .rewards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .registration-widget {
        position: static;
    }

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

    .ticket-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .grid-3, .grid-2, .job-grid, .footer-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-home h1 {
        font-size: 2.5rem;
    }

    .hero-inner h1 {
        font-size: 2.2rem;
    }

    /* Mobile hero — centered text, staggered images below */
    .hero-home {
        position: relative;
        overflow: hidden;
        aspect-ratio: unset;
        padding: 32px 0 40px;      /* no horizontal — container handles it */
        min-height: unset;
    }

    /* Single column, text then images */
    .hero-home .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    /* Text block: centered, full width */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        position: static;
    }

    /* Badge: hidden on mobile */
    .hero-badge { display: none; }

    /* Heading: compact — fits in 1–2 tight lines */
    .hero-home .hero-content h1 {
        font-size: 6vw;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 12px;
    }

    /* Paragraph: centered — 80% of previous size */
    .hero-home .hero-content p {
        font-size: 2.9vw;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 14px;
        max-width: none;
    }

    /* Buttons: centered row — 80% of previous size */
    .hero-home .hero-actions {
        display: flex;
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .hero-home .hero-actions .btn {
        font-size: 2.6vw;
        padding: 1.6vw 3vw;
        width: auto;
        white-space: nowrap;
    }

    /* Stats: hidden */
    .hero-stats { display: none; }

    /* Image wrapper: 85% of container width, centred — same margins as text */
    .hero-image-wrapper {
        display: block;
        width: 85%;
        margin: 0 auto;
        padding: 0;
    }

    /* Image grid: vw rows matched to column width for correct portrait ratio */
    /* col ≈ 85vw/3 ≈ 28vw  →  2-row height = 28vw/0.66 ≈ 42vw  →  row = 21vw */
    .image-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: repeat(5, 21vw);
        gap: 6px;
        max-width: 100%;
    }

    /* All tiles: static, fill their grid cell */
    .img-tile {
        position: static;
        width: 100%;
        height: 100%;
        aspect-ratio: unset;
        border-radius: 10px;
        overflow: hidden;
        border: 2px solid rgba(255,255,255,0.15);
        margin: 0;
    }

    .img-tile:hover { transform: none; }

    /* Same staggered placement as desktop */
    .tile-1 { grid-column: 2; grid-row: 1 / 3; }
    .tile-2 { grid-column: 1; grid-row: 2 / 4; }
    .tile-3 { grid-column: 3; grid-row: 2 / 4; }
    .tile-4 { grid-column: 2; grid-row: 3 / 5; }
    .tile-5 { grid-column: 1; grid-row: 4 / 6; }

    .partner-hero {
        padding: 40px 20px;
    }

    .rewards-section {
        padding: 30px 20px;
    }

    .tribute-box {
        padding: 24px;
    }

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

/* Mobile Active Menu Class */
.nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-sand-light);
    border-bottom: 1px solid var(--color-border-warm);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
}

/* ===== SITE LOGO IMAGE ===== */
.logo-link {
    display: inline-block;
    line-height: 0;
    flex-shrink: 0;
}

.site-logo {
    height: 54px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

/* Footer logo — inverted white for dark background */
.site-logo-footer {
    filter: brightness(0) invert(1);
    height: 50px;
    opacity: 0.88;
    display: block;
    margin-bottom: 20px;
}

/* ===== HERO — scaled down to fit one viewport ===== */
.hero-home {
    padding: 18px 0 30px 0;
}

.hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: 14px;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.hero-stats {
    gap: 24px;
    margin-top: 24px;
    padding-top: 16px;
}

.stat-item h3 {
    font-size: 1.7rem;
}

.hero-badge.badge-white {
    font-size: 0.88rem;
    padding: 7px 16px;
    margin-bottom: 14px;
}

/* Shrink image grid rows so all 5 tiles fit the viewport height */
.image-grid {
    grid-template-rows: 105px 105px 105px 105px 105px;
    gap: 12px;
}

/* ===== HERO BADGE WHITE VARIANT ===== */
.hero-badge.badge-white {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: white;
    font-size: 1.05rem;
    padding: 9px 22px;
    font-weight: 600;
}

/* ===== SECTION LABELS — BIGGER ===== */
.section-header .sub {
    font-size: 1.5rem;
    letter-spacing: 2.5px;
}

.section-header h2 {
    font-size: 2.5rem;
}

/* ===== CENTERED CARD VARIANT ===== */
.card.card-centered {
    text-align: center;
}
.card.card-centered .card-icon {
    margin-left: auto;
    margin-right: auto;
}
.card.card-centered h3 {
    text-align: center;
}

/* ===== STEP NUMBERS — BIGGER ===== */
.step-num {
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.22;
    display: block;
    margin-bottom: 6px;
    line-height: 1;
    font-family: var(--font-heading);
}

/* ===== MOBILE HERO — post-global overrides ===== */
/* These must come last to win over the global .image-grid rule above */
@media (max-width: 768px) {
    .image-grid {
        grid-template-rows: repeat(5, 21vw);
        gap: 6px;
    }
}

/* ===== SUMMIT SLIDESHOW ===== */
.slideshow-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--color-border-warm);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
    background-color: #0a1a12;
}

.slide {
    display: none;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.48);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 10;
}

.slide-btn:hover { background-color: var(--color-primary); }
.slide-btn.prev { left: 14px; }
.slide-btn.next { right: 14px; }

.slide-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 7px;
    z-index: 10;
}

.slide-dot {
    width: 9px;
    height: 9px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s, transform 0.3s;
}

.slide-dot.active {
    background-color: white;
    transform: scale(1.25);
}

/* ===== HOME PAGE LOADER ===== */
#home-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-sand-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#home-loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo-img {
    width: 280px;
    height: auto;
    animation: fadeInLogo 1.2s ease-out both;
}

.loader-company-name {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    animation: loaderUp 0.55s 0.12s ease both;
}

.loader-tagline-text {
    color: var(--color-accent);
    font-size: 0.85rem;
    font-style: italic;
    animation: loaderUp 0.55s 0.24s ease both;
}

.loader-dots {
    display: flex;
    gap: 10px;
    animation: loaderUp 0.55s 0.36s ease both;
}

.loader-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: dotPulse 1.1s infinite;
}

.loader-dot:nth-child(2) { animation-delay: 0.18s; }
.loader-dot:nth-child(3) { animation-delay: 0.36s; }

/* ===== PAGE LOADER (non-home, 1.6s) ===== */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-sand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Animated track bar for page loader */
.page-loader-track {
    width: 56px;
    height: 56px;
    border: 4px solid var(--color-border-warm);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spinTrack 0.8s linear infinite;
}

@keyframes spinTrack {
    to { transform: rotate(360deg); }
}

@keyframes fadeInLogo {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes loaderUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes dotPulse {
    0%, 80%, 100% { transform: scale(1); opacity: 0.55; }
    40%           { transform: scale(1.5); opacity: 1; }
}

/* ===== NAV PROGRESS BAR ===== */
#nav-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--color-accent);
    z-index: 9998;
    width: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

/* ===== SCROLL REVEAL ===== */
.will-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== STAT TEXT VALUE (non-numeric stat) ===== */
.stat-item .stat-text-val {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-accent);
    white-space: nowrap;
    margin: 0;
    line-height: 1.25;
}

/* ===== PRODUCTS PAGE PARTNERSHIP SECTION ===== */
.partnership-banner-box {
    background-color: var(--color-sand-card);
    border: 1px solid var(--color-border-warm);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .partnership-banner-box {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 24px;
        text-align: center;
    }
}




