/* =========================================
   DESIGN TOKENS & VARIABLES
   ========================================= */
:root {
    /* Colors */
    --clr-bg-dark: #07080a;
    --clr-bg-darker: #040506;
    --clr-bg-card: #0f1115;
    --clr-primary: #1e90ff;
    /* Electric Blue instead of Gold */
    --clr-primary-hover: #3a9df8;
    --clr-primary-glow: rgba(30, 144, 255, 0.4);
    --clr-text: #e0e4e8;
    --clr-text-muted: #8b96a5;
    --clr-white: #ffffff;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Spacing */
    --section-padding: 100px 0;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-dark);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-darker {
    background-color: var(--clr-bg-darker);
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* =========================================
   PRELOADER
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-bg-dark);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--clr-white);
    display: block;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite alternate;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--clr-primary);
    animation: loading 2s ease forwards;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 15px var(--clr-primary-glow);
    }
}

@keyframes loading {
    to {
        width: 100%;
    }
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-white);
    line-height: 1.2;
}

.subtitle {
    display: block;
    color: var(--clr-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--clr-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: var(--clr-primary);
}

.header-line {
    width: 60px;
    height: 3px;
    background-color: var(--clr-primary);
    margin: 20px auto;
    border-radius: 2px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--clr-text-muted);
    font-size: 1.1rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: #fff;
    border: 1px solid var(--clr-primary);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.2);
}

.btn-primary:hover {
    background-color: var(--clr-primary-hover);
    box-shadow: 0 0 30px rgba(30, 144, 255, 0.4);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(7, 8, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hidden-onload {
    opacity: 0;
    transform: translateY(-20px);
    animation: slideDown 0.8s ease 1s forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--clr-primary);
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--clr-white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text);
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--clr-primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-white);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    transition: var(--transition-normal);
    background-color: var(--clr-white);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    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;
    object-position: center;
    transform: scale(1.05);
    /* slightly subtle zoom compared to an */
    animation: zoomInOut 25s ease infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 8, 10, 0.5) 0%, rgba(7, 8, 10, 0.95) 100%);
}

@keyframes zoomInOut {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.0);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding-top: 80px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--clr-text);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.scroll-indicator p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--clr-primary);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 5px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* =========================================
   EXPERIENCE / ABOUT SECTION
   ========================================= */
.experience {
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    background: radial-gradient(circle at right, rgba(30, 144, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.experience-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.exp-image-wrap {
    flex: 1 1 0;
    position: relative;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    padding: 14px;
    border: 2px solid var(--clr-primary);
    border-radius: 18px;
    background: rgba(10, 10, 13, 0.6);
}

.exp-image {
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    width: 100%;
    height: auto;
}

.exp-image-wrap::before {
    content: none;
}

.exp-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: var(--clr-bg-card);
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.glow-effect {
    /* Keep badge absolute; this class only adds glow via ::before */
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    box-shadow: 0 0 40px rgba(30, 144, 255, 0.2);
    z-index: -1;
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.exp-year {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.exp-content {
    flex: 1;
}

.exp-content p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.exp-features {
    margin-bottom: 30px;
}

.exp-features li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--clr-bg-card);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 144, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.service-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img {
    transform: scale(1.08);
    /* slightly smoother than an */
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--clr-bg-card) 0%, transparent 100%);
}

.service-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.service-icon {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--clr-primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(30, 144, 255, 0.3);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
    /* different animation from an */
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-top: 10px;
}

.service-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* =========================================
   ELITE PROTECTION SECTION
   ========================================= */
.elite-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.elite-content p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.elite-brands {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.brand-item {
    background: var(--clr-bg-card);
    padding: 20px 25px;
    border-left: 4px solid var(--clr-primary);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
}

.brand-item:hover {
    transform: translateX(10px);
    background: rgba(30, 144, 255, 0.05);
}

.brand-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.rounded-img {
    border-radius: 12px;
}

.glass-panel {
    background: rgba(15, 17, 21, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition-normal);
}

/* =========================================
   PARALLAX CTA
   ========================================= */
.cta-parallax {
    position: relative;
    padding: 120px 0;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 6, 0.85);
    /* Matches dark theme */
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--clr-text);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   REVIEWS SECTION
   ========================================= */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 40px 30px;
}

.review-card:hover {
    background: rgba(15, 17, 21, 0.9);
    border-color: rgba(30, 144, 255, 0.2);
    transform: translateY(-5px);
}

.stars {
    color: var(--clr-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.review-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--clr-text);
    margin-bottom: 30px;
    line-height: 1.7;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--clr-bg-darker);
    border: 1px solid var(--clr-primary);
    color: var(--clr-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* Reviews carousel activates only when JS adds .is-carousel */
.reviews-carousel {
    position: relative;
}

.reviews-viewport {
    overflow: hidden;
    border-radius: 16px;
}

.reviews-grid.is-carousel {
    display: flex;
    gap: 0;
    transition: transform 0.55s ease;
    will-change: transform;
}

.reviews-grid.is-carousel .reviews-page {
    flex: 0 0 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.reviews-grid.is-carousel .review-card {
    min-width: 0;
}

.reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(30, 144, 255, 0.35);
    background: rgba(10, 10, 13, 0.92);
    color: var(--clr-primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 4;
    transition: var(--transition-fast);
}

.reviews-nav:hover {
    background: rgba(30, 144, 255, 0.15);
    border-color: rgba(30, 144, 255, 0.75);
}

.reviews-prev {
    left: -18px;
}

.reviews-next {
    right: -18px;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(30, 144, 255, 0.45);
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.reviews-dot.active {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: scale(1.15);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 144, 255, 0.3), transparent);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.contact-desc {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-details li {
    display: flex;
    gap: 20px;
}

.icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(30, 144, 255, 0.1);
    color: var(--clr-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(30, 144, 255, 0.2);
}

.detail-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--clr-white);
}

.detail-content p {
    color: var(--clr-text-muted);
}

.detail-content a {
    color: var(--clr-text-muted);
}

.detail-content a:hover {
    color: var(--clr-primary);
}

.contact-map {
    height: 100%;
}

.shop-hours p {
    color: var(--clr-text-muted);
    margin-bottom: 5px;
}

.contact-map iframe {
    border-radius: 12px;
    filter: grayscale(80%) invert(90%) contrast(90%);
    /* stylized map */
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--clr-bg-card);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--clr-text-muted);
    margin: 20px 0 30px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--clr-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--clr-text-muted);
}

.footer-links a:hover {
    color: var(--clr-primary);
    padding-left: 5px;
}

.footer-bottom {
    background-color: var(--clr-bg-darker);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* =========================================
   ANIMATIONS & RESPONSIVE
   ========================================= */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    visibility: hidden;
}

.reveal.active,
.reveal-up.active {
    animation: fadeUp 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
    visibility: visible;
}

.reveal-left.active {
    animation: fadeLeft 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
    visibility: visible;
}

.reveal-right.active {
    animation: fadeRight 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
    visibility: visible;
}

.delay-1 {
    animation-delay: 0.2s !important;
}

.delay-2 {
    animation-delay: 0.4s !important;
}

.delay-3 {
    animation-delay: 0.6s !important;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Media Queries */
@media (max-width: 1024px) {

    .experience-container,
    .elite-grid {
        flex-direction: column;
    }

    .exp-image-wrap {
        width: 100%;
        flex: 0 0 auto;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .exp-badge {
        left: 12px;
        bottom: 12px;
        width: 124px;
        height: 124px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(7, 8, 10, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        justify-content: center;
        gap: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li .nav-link {
        font-size: 1.5rem;
    }

    .nav-links li .btn {
        margin-top: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .reviews-prev {
        left: 8px;
    }

    .reviews-next {
        right: 8px;
    }

    .reviews-nav {
        width: 38px;
        height: 38px;
    }
}
