/* ========================================
   The PhotoBooth Company - Main Stylesheet
   ======================================== */

/* Colus Font Face */
@font-face {
    font-family: 'Colus';
    src: url('../fonts/Colus/Colus/Commercial/WEB/Colus-Regular.woff2') format('woff2'),
        url('../fonts/Colus/Colus/Commercial/WEB/Colus-Regular.woff') format('woff'),
        url('../fonts/Colus/Colus/Commercial/WEB/Colus-Regular.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --primary-color: #d60c0c;
    --primary-dark: #633131;
    --secondary-color: #e46a6a;
    --accent-color: #EBD5AB;
    --dark-bg: #1B211A;
    --darker-bg: #131713;
    --light-bg: #2E2E2E;
    --white: #ffffff;
    --white-bg: #ffffff;
    --text-dark: #181616;
    --text-light: #ffffff;
    --text-muted: #b8abab;
    --gradient-primary: linear-gradient(135deg, #814441 0%, #f1341c 100%);
    --gradient-dark: linear-gradient(135deg, #211a1a 0%, #332828 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --font-primary: 'Raleway', sans-serif;
    --font-display: 'Colus', 'Playfair Display', serif;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #c41e1e 0%, #e63535 50%, #c41e1e 100%);
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1001;
    overflow: hidden;
    height: 44px;
    /* Fixed height to prevent layout shifts */
}

.announcement-bar .announcement-item {
    display: none;
    align-items: center;
    gap: 8px;
    animation: fadeIn 0.5s ease;
}

.announcement-bar .announcement-item.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.announcement-bar .announcement-item i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .announcement-bar {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Smooth scroll optimization */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* GPU acceleration for smooth animations */
.hero,
.section,
footer,
.header {
    will-change: transform;
    transform: translateZ(0);
}

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

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

ul {
    list-style: none;
}

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(98, 129, 65, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(98, 129, 65, 0.4);
}

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

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

.btn-nav {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
}

/* ========================================
   Header & Navigation (Snap Booth Style)
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 20px 0;
    background: transparent;
    transition: var(--transition);
}


.header.scrolled .navbar {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    max-width: 1400px;
    height: 5rem;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid #ff0e0e;
    border-radius: 50px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

/* Left section - hamburger + logo */
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.logo img {
    height: 45px;
    width: auto;
}

/* Center navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 25px;
    transition: var(--transition);
}

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

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link i {
    font-size: 0.65rem;
    transition: var(--transition);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Right section - actions */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-login {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 12px;
    transition: var(--transition);
}

.nav-login:hover {
    color: var(--primary-color);
}

.nav-cart {
    position: relative;
    padding: 8px;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-cart:hover {
    color: var(--primary-color);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-book {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
    border: 2px solid var(--text-dark);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-book:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-quote {
    padding: 12px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary-color);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-quote:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(98, 129, 65, 0.3);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    margin-top: 10px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(98, 129, 65, 0.08);
    color: var(--primary-color);
    padding-left: 28px;
}

/* Mobile Menu Button - Hamburger */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(98, 129, 65, 0.08);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
    margin: 3px 0;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* ========================================
   Hero Section (Snap Booth Style)
   ======================================== */
.hero {
    min-height: auto;
    padding: 140px 0 80px;
    background: var(--light-bg);
    text-align: center;
}

.hero .container {
    max-width: 1200px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: var(--font-primary);
    text-transform: none;
}

.hero-title .hero-highlight {
    font-weight: 700;
}

.hero-highlight {
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

.hero-highlight::before {
    content: '';
    position: absolute;
    bottom: -14px;
    left: -25px;
    width: calc(100% + 50px);
    height: 15px;
    background-image: url('../images/vecteezy.png');
    background-color: #d60c0c;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    animation: drawUnderline 0.8s ease-in forwards;
}

@keyframes drawUnderline {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(98, 129, 65, 0.3);
}

.hero-buttons .btn-accent {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
}

.hero-buttons .btn-accent:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Gallery */
.hero-gallery {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 0 20px;
}

.hero-gallery-item {
    flex: 0 1 350px;
    max-width: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hero-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-gallery-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

/* ========================================
   Events Section
   ======================================== */
.events-section {
    padding: 100px 0;
    background: var(--white);
}

.events-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.events-text {
    flex: 1;
}

.events-text h2 {
    color: var(--primary-color);
}

.events-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.events-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

/* ========================================
   Brand Activations Section
   ======================================== */
.brand-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.brand-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.brand-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

.brand-text {
    flex: 1;
}

.brand-text h2 {
    color: var(--secondary-color);
}

.brand-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-left: 180px;
}

.why-choose-circles {
    position: relative;
    flex: 0 0 45%;
    display: flex;
    align-items: center;
}

.circle-large {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(98, 129, 65, 0.3);
}

.circle-medium {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-small {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.circle-small h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

.circle-small h2 span {
    font-size: 1.5rem;
    opacity: 0.9;
}

.circle-text-left {
    position: absolute;
    left: 200px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 220px;
    padding-left: 140px;
}

.circle-text-left p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.circle-text-left p:last-child {
    margin-bottom: 0;
}

.why-choose-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(98, 129, 65, 0.3);
}

.why-feature-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.why-feature-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.why-feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   Packages Section
   ======================================== */
.packages-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.packages-section .section-title {
    color: var(--white);
    margin-bottom: 3rem;
}

/* Package Tabs - Hidden on desktop */
.packages-tabs {
    display: none;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
    gap: 100px;
    justify-content: center;
    align-items: start;
    /* Prevent cards from stretching to equal height */
}

.package-card {
    background: rgba(218, 218, 218, 0.05);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.package-card.popular-plan {
    position: relative;
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    /* Slightly larger on desktop */
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 0 16px 0 16px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Mobile check: Disable scale on small screens to avoid overflow */
@media (max-width: 768px) {
    .package-card.popular-plan {
        transform: none;
    }
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: var(--font-display);
}

.package-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--white);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    width: 20px;
    color: var(--secondary-color);
    font-size: 1rem;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 1.5rem;
}

.package-footer .btn-outline {
    padding: 10px 24px;
    font-size: 0.85rem;
    border-color: var(--white);
    color: var(--white);
}

.package-footer .btn-outline:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.package-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    min-width: 140px;
}

.package-price-original,
.package-original-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-weight: 400;
}

.package-discount {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #e01212 0%, #ff4d4d 100%);
    border-radius: 50%;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(224, 18, 18, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.package-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

/* ========================================
   Products Section
   ======================================== */
.products-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--text-light);
}

.products-section .section-title {
    color: var(--white);
    margin-bottom: 3rem;
}

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

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.product-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
}

.product-image img {
    max-height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.product-content {
    padding: 30px;
    text-align: center;
}

.product-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.product-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-card .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.product-card .btn-outline:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* ========================================
   Brands Slider Section
   ======================================== */
.brands-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.brands-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.brands-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

.brand-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   Lookbook CTA Section
   ======================================== */
.lookbook-cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
}

.lookbook-cta h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 2rem;
}

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

.lookbook-cta .btn-primary:hover {
    background: var(--dark-bg);
    color: var(--white);
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.features-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 500;
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    margin-bottom: 3rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

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

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

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-cta {
    text-align: center;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ========================================
   Footer - Reveal Effect dlkjsffffffffffffffffffff
   ======================================== */
.footer {
    background: var(--light-bg);
    padding: 80px 0 30px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    border-radius: 28px 28px 0 0;
}

/* Main content wrapper */
body {
    position: relative;
}

.main-content {
    position: relative;
    z-index: 2;
    background: var(--white);
    overflow-x: hidden;
}

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

/* Footer Brand Column */
.footer-brand {
    padding-right: 30px;
}

/* Footer Contact Column - wider for email */
.footer-col ul li a {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    word-break: break-word;
}

.footer-col ul li a i {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
    border-radius: 10px;

}

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

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social .social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col h3 a {
    color: var(--white);
}

.footer-col h3 a:hover {
    color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col .coming-soon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.footer-cta .btn-outline:hover {
    background: var(--white);
    color: var(--dark-bg);
    border-color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Responsive Design - Tablet
   ======================================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 140px 5% 60px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

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

    .hero-image img {
        max-height: 400px;
    }

    .events-content,
    .brand-content {
        flex-direction: column;
    }

    .why-choose-content {
        flex-direction: column;
        gap: 50px;
    }

    .why-choose-circles {
        flex: none;
        justify-content: center;
    }

    .circle-large {
        width: 280px;
        height: 280px;
    }

    .circle-medium {
        width: 210px;
        height: 210px;
    }

    .circle-small {
        width: 150px;
        height: 150px;
    }

    .circle-small h2 {
        font-size: 1.5rem;
    }

    .circle-small h2 span {
        font-size: 1.3rem;
    }

    .circle-text-left {
        display: none;
    }

    .why-choose-content {
        padding-left: 0;
    }

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

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

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .footer-brand {
        grid-column: span 3;
        padding-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-description {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Hero responsive - tablet */
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-gallery {
        gap: 15px;
    }

    .hero-gallery-item {
        flex: 0 1 280px;
    }

    .hero-gallery-item img {
        height: 350px;
    }
}

/* ========================================
   Responsive Design - Mobile
   ======================================== */
@media (max-width: 992px) {
    .nav-menu {
        position: static;
        transform: none;
    }

    .nav-right .btn-book,
    .nav-right .nav-login {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0px 0;
    }

    .navbar {
        padding: 10px 20px;
        border: 1px solid #ff0e0e;
        border-radius: 50px;
    }

    .mobile-menu-btn {
        display: flex;
        order: -1;
    }

    .navbar {
        position: relative;
    }

    .nav-left {
        flex: 1;
        justify-content: flex-start;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 35px;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: 15px;
        right: 15px;
        width: auto;
        max-height: calc(100vh - 90px);
        height: auto;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
        gap: 0;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        border-bottom: 1px solid rgba(98, 129, 65, 0.1);
    }

    .nav-link {
        padding: 16px 12px;
        justify-content: space-between;
        border-radius: 0;
    }

    .nav-link:hover {
        background: rgba(98, 129, 65, 0.05);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(98, 129, 65, 0.05);
        border-radius: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-item.active .dropdown-menu {
        max-height: 500px;
        padding: 8px 0;
    }

    .dropdown-menu li a {
        padding: 12px 24px 12px 32px;
    }

    .dropdown-menu li a:hover {
        padding-left: 36px;
    }

    .nav-right {
        gap: 8px;
    }

    .nav-right .nav-cart {
        display: none;
    }

    .nav-right .btn-book {
        display: none;
    }

    .nav-right .btn-quote {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    /* Hero responsive - mobile */
    .hero {
        padding: 100px 0 50px;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.25;
        margin-top: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: none;
        font-size: 1rem;
        padding: 16px 28px;
    }

    .hero-gallery {
        position: relative;
        overflow: hidden;
        padding: 0;
        width: 100%;
        height: 280px;
    }

    .hero-gallery-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        max-width: none;
        opacity: 0;
        animation: heroCarousel 1.5s infinite steps(1);
    }

    .hero-gallery-item:nth-child(1) {
        animation-delay: 0s;
    }

    .hero-gallery-item:nth-child(2) {
        animation-delay: 0.5s;
    }

    .hero-gallery-item:nth-child(3) {
        animation-delay: 1s;
    }

    @keyframes heroCarousel {

        0%,
        33.32% {
            opacity: 1;
        }

        33.33%,
        100% {
            opacity: 0;
        }
    }

    .hero-gallery-item img {
        height: 280px;
    }

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

    .lookbook-cta h2,
    .cta-section h2 {
        font-size: 2rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    /* Why Choose Us - Mobile */
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-content {
        gap: 40px;
    }

    .circle-large {
        width: 220px;
        height: 220px;
    }

    .circle-medium {
        width: 165px;
        height: 165px;
    }

    .circle-small {
        width: 120px;
        height: 120px;
    }

    .circle-small h2 {
        font-size: 1.2rem;
    }

    .circle-small h2 span {
        font-size: 1rem;
    }

    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-feature {
        gap: 15px;
    }

    .why-feature-icon {
        width: 45px;
        height: 45px;
    }

    .why-feature-icon i {
        font-size: 1rem;
    }

    /* Package Tabs - Mobile */
    .packages-tabs {
        display: flex;
        justify-content: center;
        gap: 0;
        margin-bottom: 30px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 4px;
        overflow: hidden;
    }

    .package-tab {
        flex: 1;
        padding: 12px 16px;
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.8rem;
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
        font-family: var(--font-primary);
        border-radius: 6px;
        white-space: nowrap;
    }

    .package-tab.active {
        background: var(--primary-color);
        color: var(--white);
    }

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

    /* Hide all package cards by default on mobile */
    .package-card,
    .package-card.popular-plan {
        max-width: 400px;
        margin: 0 auto;
        display: none !important;
    }

    /* Always show the first card as default fallback */
    .packages-grid>.package-card:first-child {
        display: block !important;
    }

    /* Show card with active class */
    .package-card.active,
    .package-card.popular-plan.active {
        display: block !important;
    }

    /* CRITICAL: When any card has active class, hide cards that don't have it */
    /* This overrides the :first-child rule above when JavaScript has run */
    .packages-grid:has(.package-card.active)>.package-card:not(.active) {
        display: none !important;
    }

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

    .footer-brand {
        grid-column: span 2;
    }

    .footer-cta {
        flex-direction: column;
        align-items: center;
    }

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

    /* Footer - disable reveal effect on mobile */
    .footer {
        position: static;
        z-index: 1;
    }

    .main-content {
        margin-bottom: 0 !important;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ========================================
   Responsive Design - Small Mobile
   ======================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 30px;
    }

    html {
        font-size: 14px;
    }

    .hero {
        padding: 100px 0 40px;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .events-section,
    .brand-section,
    .products-section,
    .features-section,
    .gallery-section,
    .cta-section {
        padding: 60px 0;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col ul li a:hover {
        padding-left: 0;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
}

/* Animation delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* Scroll reveal base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* ========================================
   Utility Classes
   ======================================== */
.text-primary {
    color: var(--primary-color);
}

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

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

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

.bg-primary {
    background: var(--gradient-primary);
}

.bg-dark {
    background: var(--gradient-dark);
}

.bg-light {
    background: var(--light-bg);
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Override header transition for smooth scrolling with JS */
.header {
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

/* ========================================
   MODERN SCROLL ANIMATIONS
   ======================================== */

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Different reveal directions */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations for grids */
.stagger-reveal>* {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-reveal.revealed>*:nth-child(1) {
    transition-delay: 0s;
}

.stagger-reveal.revealed>*:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-reveal.revealed>*:nth-child(3) {
    transition-delay: 0.2s;
}

.stagger-reveal.revealed>*:nth-child(4) {
    transition-delay: 0.3s;
}

.stagger-reveal.revealed>*:nth-child(5) {
    transition-delay: 0.4s;
}

.stagger-reveal.revealed>*:nth-child(6) {
    transition-delay: 0.5s;
}

.stagger-reveal.revealed>*:nth-child(7) {
    transition-delay: 0.6s;
}

.stagger-reveal.revealed>*:nth-child(8) {
    transition-delay: 0.7s;
}

.stagger-reveal.revealed>* {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Effect Classes */
.parallax-slow {
    will-change: transform;
}

.parallax-medium {
    will-change: transform;
}

.parallax-fast {
    will-change: transform;
}

/* Smooth Page Sections */
section {
    position: relative;
    z-index: 1;
}

/* Enhanced section transitions */
.section-animate {
    opacity: 0;
    transition: opacity 1s ease;
}

.section-animate.in-view {
    opacity: 1;
}

/* Floating animation for elements */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Pulse animation for CTAs */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(214, 12, 12, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(214, 12, 12, 0.2);
    }
}

.pulse-on-scroll {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Text reveal animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-reveal.revealed span {
    transform: translateY(0);
}

/* Counter animation */
.counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* Image reveal effect */
.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.image-reveal.revealed::before {
    transform: scaleX(0);
}

.image-reveal img {
    transform: scale(1.2);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-reveal.revealed img {
    transform: scale(1);
}

/* Smooth scrollbar (webkit browsers) */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--dark-bg);
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    .scroll-reveal,
    .scroll-reveal-left,
    .scroll-reveal-right,
    .scroll-reveal-scale,
    .stagger-reveal>*,
    .float-animation,
    .parallax-slow,
    .parallax-medium,
    .parallax-fast {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}