@font-face {
    font-family: 'Playbill';
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: local('Playbill'), url('fonts/Playbill.woff') format('woff')
}

:root {
    --primary-yellow: #FFD700;
    --dark-yellow: #FFC700;
    --light-yellow: #FFF3B8;
    --primary-black: #1a1a1a;
    --dark-black: #000000;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #666666;
    --gray-dark: #333333;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;line-height:1.6;color:var(--primary-black);overflow-x:hidden;background:var(--white)}

::-webkit-scrollbar{width:10px}
::-webkit-scrollbar-track{background:var(--gray-light)}
::-webkit-scrollbar-thumb{background:var(--primary-yellow);border-radius:5px}
::-webkit-scrollbar-thumb:hover{background:var(--dark-yellow)}

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

/* Call Button */
.call-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 24px;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.call-button:hover {
    transform: scale(1.1);
    background: var(--dark-yellow);
}

@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(255,215,0,.7)}70%{box-shadow:0 0 0 20px rgba(255,215,0,0)}}

/* Navigation */
.navbar {
    background: var(--primary-black);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Increased gap slightly for the larger font */
    text-decoration: none;
    /* We remove font settings here and apply them to the span below */
}

.logo img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
    /* Prevents image from squishing */
}

.logo span {
    font-family: 'Playbill', 'Impact', sans-serif;
    /* Fallback to Impact if Playbill fails */
    color: var(--primary-yellow);
    font-size: 52px;
    /* Playbill needs to be BIG to be readable */
    letter-spacing: 2px;
    /* Adds space between letters for clarity */
    line-height: 1;
    /* Tightens vertical space so it aligns with the star */
    font-weight: normal;
    /* Playbill is naturally thick */
    padding-top: 5px;
    /* Optical adjustment to center it with the star icon */
    white-space: nowrap;
    /* Prevents text from wrapping */
    transition: var(--transition);
}

.logo:hover span {
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    /* Adds a glow on hover */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-yellow);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    /* This creates the dark tint overlay + the image */
    background:
        /* The Tint (Gradient using your variables but with transparency) */
        linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(51, 51, 51, 0.88) 100%),
        /* The Image */
        url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Creates a cool parallax effect when scrolling */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: heroGlow 4s ease-in-out infinite alternate;
    z-index: 1;
    /* Ensures glow sits above image but below content */
    pointer-events: none;
}

@keyframes heroGlow{0%{opacity:.3;filter:brightness(1)}100%{opacity:.6;filter:brightness(1.2)}}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-bg .stripe {
    display: none;
}

@keyframes pulsePattern{0%,100%{opacity:.05}50%{opacity:.1}}

/* Sheriff Stars Background */
.hero-bg::before,
.hero-bg::after {
    content: '★';
    position: absolute;
    font-size: 300px;
    color: rgba(255, 215, 0, 0.03);
    animation: starPulse 4s ease-in-out infinite;
}

.hero-bg::before {
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-bg::after {
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

/* Pulse Waves Effect */
.hero-bg .stripe::before,
.hero-bg .stripe::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseWave 4s ease-out infinite;
}

.hero-bg .stripe::after {
    animation-delay: 2s;
}

@keyframes pulseWave{0%{width:100px;height:100px;opacity:.3}100%{width:800px;height:800px;opacity:0}}
@keyframes starPulse{0%,100%{opacity:.03;transform:scale(1) rotate(0deg)}50%{opacity:.08;transform:scale(1.1) rotate(10deg)}}

/* Floating Badges Animation */
.floating-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    font-size: 40px;
    color: rgba(255, 215, 0, 0.15);
    animation: floatBadge 20s infinite ease-in-out;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.badge-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.badge-2 {
    top: 20%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.badge-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.badge-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 9s;
    animation-duration: 24s;
}

.badge-5 {
    top: 50%;
    left: 50%;
    animation-delay: 12s;
    animation-duration: 19s;
    font-size: 60px;
    opacity: 0.05;
}

@keyframes floatBadge{0%,100%{transform:translateY(0) rotate(0deg) scale(1)}25%{transform:translateY(-30px) rotate(45deg) scale(1.1)}50%{transform:translateY(0) rotate(90deg) scale(.9)}75%{transform:translateY(30px) rotate(135deg) scale(1.05)}}

/* Scanning Light Effect */
.hero::after {
    display: none;
}

@keyframes scanLight{0%{transform:translateX(-100%) translateY(-100%)}100%{transform:translateX(100%) translateY(100%)}}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.badge-wrapper {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.hero-badge {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 10px 20px rgba(255, 215, 0, 0.3));
}

@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-20px)}}

.hero-title {
    font-size: 48px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow{from{text-shadow:2px 2px 4px rgba(0,0,0,.3),0 0 20px rgba(255,215,0,.3)}to{text-shadow:2px 2px 4px rgba(0,0,0,.3),0 0 30px rgba(255,215,0,.6)}}

.hero-subtitle {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Hero Social Links */
.hero-social {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-social-text {
    color: var(--white);
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

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

.hero-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--white);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-social-icon.viber-icon:hover {
    background: #7360f2;
    border-color: #7360f2;
}

.hero-social-icon.whatsapp-icon:hover {
    background: #25D366;
    border-color: #25D366;
}

.hero-social-icon.telegram-icon:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.hero-social-icon.instagram-icon:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
}

.hero-social-icon.facebook-icon:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.hero-social-icon.tiktok-icon:hover {
    background: #000000;
    border-color: #000000;
}

.btn {
    padding: 15px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-color: var(--primary-yellow);
}

.btn-primary:hover {
    background: var(--dark-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.9;
}

.feature i {
    font-size: 24px;
    color: var(--primary-yellow);
}

/* Section Base */
.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    color: var(--primary-black);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 50px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services .section-title {
    color: var(--white);
}

.services .section-title::after {
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

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

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

.service-card {
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.1) 0%,
        transparent 50%,
        rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card::after {
    content: '★';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: rgba(255, 215, 0, 0.15);
    transition: all 0.4s ease;
}

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

.service-card:hover::after {
    color: rgba(255, 215, 0, 0.4);
    transform: rotate(72deg) scale(1.2);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.2),
        0 0 40px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-black);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow:
        0 8px 20px rgba(255, 215, 0, 0.3),
        inset 0 -3px 8px rgba(0, 0, 0, 0.2),
        inset 0 3px 8px rgba(255, 255, 255, 0.3);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg,
        transparent 30%,
        rgba(255, 215, 0, 0.6) 50%,
        transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow:
        0 12px 30px rgba(255, 215, 0, 0.5),
        inset 0 -3px 8px rgba(0, 0, 0, 0.3),
        inset 0 3px 8px rgba(255, 255, 255, 0.4);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-yellow);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li i {
    color: var(--primary-yellow);
    font-size: 14px;
    min-width: 16px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.service-card:hover li {
    color: var(--white);
    padding-left: 5px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 80px;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: var(--gray-light);
    z-index: 0;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
    animation: lineProgress 2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes lineProgress{to{width:100%}}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 250px;
}

.timeline-icon {
    width: 120px;
    height: 120px;
    background: var(--white);
    border: 4px solid var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-yellow);
    margin-bottom: 30px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.timeline-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-yellow);
    z-index: -1;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-icon {
    transform: translateY(-5px);
    border-color: var(--dark-yellow);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
}

.timeline-item:hover .timeline-icon::before {
    transform: scale(1.2);
    opacity: 0.2;
}

.timeline-icon i {
    position: relative;
    z-index: 2;
}

.timeline-content {
    position: relative;
}

.timeline-content h3 {
    font-size: 22px;
    color: var(--primary-black);
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--gray-medium);
    line-height: 1.6;
    font-size: 15px;
}

/* Staggered animation for timeline items */
.timeline-item:nth-child(2) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.4s;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.about-text p {
    color: var(--gray-medium);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat:hover {
    background: var(--primary-yellow);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-black);
}

.stat-label {
    color: var(--gray-medium);
    font-size: 14px;
    text-transform: uppercase;
}


.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.badge-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 10s linear infinite;
}

.badge-overlay img {
    width: 80px;
    height: 80px;
}

@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}

/* Gallery Section - Premium Carousel Slider */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--gray-dark) 100%);
    overflow: hidden;
    position: relative;
}

.gallery::before {
    content: '★';
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 200px;
    color: rgba(255, 215, 0, 0.03);
    pointer-events: none;
}

.gallery::after {
    content: '★';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-size: 200px;
    color: rgba(255, 215, 0, 0.03);
    pointer-events: none;
}

.gallery .section-title {
    color: var(--primary-yellow);
}

.gallery .section-title::after {
    background: var(--white);
}

.gallery-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.gallery-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
    padding: 20px 5px;
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 25px;
}

.gallery-slide {
    flex: 0 0 calc(33.333% - 17px);
    min-width: calc(33.333% - 17px);
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-slide:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 3px var(--primary-yellow);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Gradient Overlay */
.gallery-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            transparent 40%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

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

/* Zoom Icon on Hover */
.gallery-slide::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 40px;
    color: var(--primary-yellow);
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.gallery-slide:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Navigation Arrows - Glassmorphism */
.gallery-nav {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-black);
    transition: all 0.3s ease;
    box-shadow:
        0 8px 25px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--white);
    color: var(--primary-black);
    transform: scale(1.15);
    box-shadow:
        0 12px 35px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.gallery-nav:active {
    transform: scale(1.05);
}

.gallery-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Dots Navigation - Premium Style */
.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
}

.gallery-dot:hover {
    background: rgba(255, 215, 0, 0.5);
    border-color: var(--primary-yellow);
}

.gallery-dot.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-slide {
        flex: 0 0 calc(50% - 13px);
        min-width: calc(50% - 13px);
        height: 280px;
    }

    .gallery::before,
    .gallery::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .gallery {
        padding: 60px 0;
    }

    .gallery-slider {
        gap: 10px;
    }

    .gallery-slide {
        flex: 0 0 100%;
        min-width: 100%;
        height: 250px;
    }

    .gallery-nav {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .gallery-track {
        gap: 0;
    }

    .gallery-slide:hover {
        transform: none;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn{from{opacity:0}to{opacity:1}}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--border-radius);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn{from{transform:translate(-50%,-50%) scale(.5)}to{transform:translate(-50%,-50%) scale(1)}}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--primary-yellow);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--white);
    transform: scale(1.2);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--primary-yellow);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    color: var(--gray-medium);
}

.amount {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-yellow);
}

.period {
    font-size: 18px;
    color: var(--gray-medium);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--primary-yellow);
}

.btn-pricing {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-black);
    color: var(--primary-yellow);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-pricing:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.featured .btn-pricing {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.featured .btn-pricing:hover {
    background: var(--primary-black);
    color: var(--primary-yellow);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--gray-light);
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background: var(--gray-light);
    border-left-color: var(--primary-yellow);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--primary-black);
    margin: 0;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary-yellow);
    font-size: 20px;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    border-left-color: var(--primary-yellow);
    background: var(--light-yellow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 20px 30px 25px;
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 16px;
}

.faq-answer strong {
    color: var(--primary-black);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact .section-title {
    color: var(--white);
}

.contact .section-title::after {
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}


/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.footer h4 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer li {
    padding: 8px 0;
    color: var(--gray-medium);
}

.footer a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--primary-yellow) !important;
    font-weight: bold;
}

/* Footer Social Links */
.footer-social {
    margin-top: 25px;
}

.footer-social h4 {
    margin-bottom: 15px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gray-dark);
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.social-links a[aria-label="Facebook"]:hover {
    background: #1877f2;
    color: var(--white);
}

.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-links a[aria-label="TikTok"]:hover {
    background: #000000;
    color: var(--white);
}

.social-links a[aria-label="Telegram"]:hover {
    background: #0088cc;
    color: var(--white);
}

.social-links a[aria-label="Viber"]:hover {
    background: #7360f2;
    color: var(--white);
}

.social-links a[aria-label="WhatsApp"]:hover {
    background: #25D366;
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-dark);
    color: var(--gray-medium);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 900;
}

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

.back-to-top:hover {
    background: var(--primary-black);
    color: var(--primary-yellow);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        /* Disables the parallax "fixed" effect on mobile for better performance and scaling */
        background-attachment: scroll;

        /* Ensures the center of the image is always visible */
        background-position: center center;
    }

    /* 3. FIX THE WHITE GAP: Stop horizontal scrolling */
    html,
    body {
        width: 100%;
        overflow-x: hidden;
        /* Cuts off anything pushing outside the screen */
        position: relative;
    }

    /* Ensure the navbar container fits the screen perfectly */
    .nav-wrapper {
        padding-right: 10px;
        /* Prevents hamburger from touching the edge */
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    /* Timeline Mobile Adaptation */
    .timeline {
        flex-direction: column;
        align-items: center;
        margin-top: 60px;
        gap: 60px;
    }

    .timeline-line {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        right: auto;
    }

    .timeline-line::before {
        width: 100%;
        height: 0;
        animation: lineProgressVertical 2s ease-out forwards;
        animation-delay: 0.5s;
    }

    @keyframes lineProgressVertical{to{height:100%}}

    .timeline-item {
        max-width: 100%;
        width: 100%;
    }

    /* 1. Move Call Button to Bottom Right (Thumb Zone) */
    .call-button {
        top: auto;
        /* Stop sticking to the top */
        bottom: 30px;
        /* Default: at bottom when on hero section */
        right: 20px;
        z-index: 1001;
        /* Ensure it floats above everything */
        transition: bottom 0.3s ease;
        /* Smooth animation when moving */
    }

    /* When scrolled past hero, move call button UP above back-to-top */
    .call-button.scrolled-up {
        bottom: 100px;
        /* Position above the back-to-top button */
    }

    .back-to-top {
        bottom: 30px;
        /* Keep at lower position */
        right: 20px;
    }
}

@media (max-width: 600px) {
    .logo span {
        font-size: 42px;
        /* Smaller size for mobile */
        letter-spacing: 1px;
    }

    .logo img {
        width: 40px;
        /* Slightly smaller icon to match */
        height: 40px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-social-links {
        gap: 12px;
    }

    .hero-social-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .call-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}



/* Contact Section Redesign */
.contact-hub {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 1;
}

/* Main Phone Card */
.contact-main-card {
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.icon-circle {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--primary-black);
    box-shadow:
        0 8px 20px rgba(255, 215, 0, 0.3),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.pulse-animation {
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring{0%,100%{box-shadow:0 0 0 0 rgba(255,215,0,.7),0 8px 20px rgba(255,215,0,.3),inset 0 -2px 5px rgba(0,0,0,.2)}70%{box-shadow:0 0 0 15px rgba(255,215,0,0),0 8px 20px rgba(255,215,0,.3),inset 0 -2px 5px rgba(0,0,0,.2)}}

.contact-main-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 1px;
    font-weight: 700;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.main-phone {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-yellow);
    text-decoration: none;
    font-family: 'Impact', sans-serif;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.secondary-phone {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-phone:hover {
    color: var(--dark-yellow);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.secondary-phone:hover {
    color: var(--primary-yellow);
}

.status-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: blink 1.5s infinite;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

@keyframes blink{50%{opacity:.5}}

/* Messengers Grid */
.messengers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.messenger-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.messenger-card i {
    font-size: 22px;
}

.messenger-card:hover {
    transform: translateY(-5px) scale(1.03);
}

.viber {
    background: linear-gradient(135deg, #7360f2 0%, #5a4dd1 100%);
}

.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006da8 100%);
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1ea952 100%);
}

.tiktok {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dca 100%);
}

/* Address & Map */
.contact-info-row {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 20px;
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 25px;
    border-radius: 16px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.address-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.info-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-line i {
    color: var(--primary-yellow);
    font-size: 20px;
    margin-top: 3px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.info-line h4 {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.info-line p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

.map-container {
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-dark);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness for Contacts */
@media (max-width: 768px) {
    .contact-main-card {
        padding: 25px 20px;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .contact-main-card h3 {
        font-size: 16px;
    }

    .main-phone {
        font-size: 24px;
    }

    .secondary-phone {
        font-size: 18px;
    }

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

    .messenger-card {
        padding: 14px;
        font-size: 14px;
        gap: 8px;
    }

    .messenger-card i {
        font-size: 20px;
    }

    .contact-info-row {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .map-container {
        height: 200px;
    }

    .info-line i {
        font-size: 18px;
    }

    .info-line h4 {
        font-size: 15px;
    }

    .info-line p {
        font-size: 13px;
    }

    /* FAQ Mobile Responsiveness */
    .faq-question {
        padding: 20px 15px;
    }

    .faq-question h3 {
        font-size: 16px;
        padding-right: 10px;
    }

    .faq-question i {
        font-size: 18px;
    }

    .faq-answer p {
        padding: 15px 15px 20px;
        font-size: 15px;
    }

    .faq-item.active .faq-answer {
        max-height: 600px;
    }
}

/* ========================================
   ACCESSIBILITY: Reduced Motion
   ======================================== */

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* Keep essential transforms but remove animations */
    .call-button {
        animation: none !important;
    }

    .floating-badge {
        animation: none !important;
    }

    .hero-logo img {
        animation: none !important;
    }

    .stat-number {
        animation: none !important;
    }

    /* Disable parallax effects */
    .hero {
        background-attachment: scroll !important;
    }
}