/* ============================================
   SEIKKAILUILO - Premium Event Agency CSS
   Luxury Casino-Themed Party Organization
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --spice-orange: #e94f08;
    --golden-lemon: #edae01;
    --ripe-tomato: #d61800;
    --purple-onion: #7f152e;
    --white: #ffffff;
    --charcoal: #363636;
    --black: #000000;
    --light-gray: #f5f5f5;
    --medium-gray: #888888;
    --dark-gray: #1a1a1a;
    --gradient-gold: linear-gradient(135deg, var(--golden-lemon), var(--spice-orange));
    --gradient-dark: linear-gradient(135deg, var(--dark-gray), var(--charcoal));
    --gradient-purple: linear-gradient(135deg, var(--purple-onion), var(--ripe-tomato));
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(233, 79, 8, 0.3);
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

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

/* Prevent horizontal scroll globally */
html, body {
    overflow-x: hidden;
    width: 100%;
}

*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2.5rem;
    color: var(--purple-onion);
}

h3 {
    font-size: 1.8rem;
    color: var(--charcoal);
}

h4 {
    font-size: 1.4rem;
    color: var(--charcoal);
}

p {
    margin-bottom: 1rem;
}

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

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

/* Prevent horizontal scroll on all elements */
*, *::before, *::after {
    max-width: 100%;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

.section {
    padding: 80px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

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

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

.text-gold {
    color: var(--golden-lemon);
}

.hidden {
    display: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

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

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(127, 21, 46, 0.4);
}

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

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--dark-gray);
    z-index: 1000;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.header.sticky {
    background: rgba(26, 26, 26, 0.98);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--golden-lemon);
}

.logo-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVIGATION ===== */
.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

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

/* ===== BURGER MENU ===== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.burger span {
    width: 30px;
    height: 3px;
    background: var(--golden-lemon);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

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

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

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

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--dark-gray);
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-premium);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--white);
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== HERO ===== */
.hero {
    min-height: 50vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    width: 100%;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero.jpg') center/cover;
    opacity: 0.3;
}

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

.info-bar {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 30px;
    display: inline-block;
    box-shadow: var(--shadow-glow);
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 4rem;
}

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

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

/* ===== SECTIONS ===== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CARDS ===== */
.card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

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

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

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

.card-title {
    font-size: 1.5rem;
    color: var(--purple-onion);
    margin-bottom: 15px;
}

.card-price {
    font-size: 2rem;
    color: var(--spice-orange);
    font-weight: 700;
    margin-bottom: 15px;
}

.card-description {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    margin-bottom: 25px;
}

.card-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--charcoal);
}

.card-features li::before {
    content: '✓';
    color: var(--golden-lemon);
    margin-right: 10px;
    font-weight: bold;
}

/* ===== GRID LAYOUTS ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    overflow-x: hidden;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    overflow-x: hidden;
}

/* ===== FEATURE BOXES ===== */
.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.feature-box:hover {
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.3rem;
    color: var(--purple-onion);
    margin-bottom: 15px;
}

.feature-text {
    color: var(--medium-gray);
}

/* ===== INFO BLOCKS ===== */
.info-block {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.info-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(233, 79, 8, 0.1) 0%, transparent 70%);
}

.info-block-content {
    position: relative;
    z-index: 1;
}

.info-block h3 {
    color: var(--golden-lemon);
    margin-bottom: 20px;
}

.warning-block {
    background: linear-gradient(135deg, var(--purple-onion), var(--ripe-tomato));
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border-left: 5px solid var(--golden-lemon);
}

.warning-block h4 {
    color: var(--golden-lemon);
    margin-bottom: 15px;
}

/* ===== TESTIMONIALS ===== */
.testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--golden-lemon);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--golden-lemon);
}

.testimonial-name {
    font-weight: 700;
    color: var(--purple-onion);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* ===== STATISTICS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--gradient-gold);
    border-radius: 20px;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-gold);
    transform: translateX(-50%);
}

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

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--golden-lemon);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-soft);
}

/* ===== FAQ ACCORDION ===== */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.accordion-header {
    padding: 25px 30px;
    background: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    background: var(--medium-gray);
    color: var(--white);
}

.accordion-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: 25px 30px;
    color: var(--charcoal);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--charcoal);
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--golden-lemon);
    box-shadow: 0 0 10px rgba(237, 174, 1, 0.2);
}

.form-input.error {
    border-color: var(--ripe-tomato);
}

.error-message {
    color: var(--ripe-tomato);
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.form-input.error + .error-message {
    display: block;
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

/* ===== CONTACT CARDS ===== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h4 {
    color: var(--purple-onion);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--medium-gray);
}

.contact-card a {
    color: var(--spice-orange);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--golden-lemon);
}

/* ===== GOOGLE MAP ===== */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    margin: 40px 0;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--golden-lemon);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.footer-links a {
    color: var(--light-gray);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--golden-lemon);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--light-gray);
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--golden-lemon);
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.working-hours p {
    margin-bottom: 5px;
    color: var(--light-gray);
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.messenger-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.messenger-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.messenger-icon.whatsapp {
    background: #25D366;
}

.messenger-icon.viber {
    background: #7360F2;
}

.messenger-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.messenger-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--medium-gray);
    margin-bottom: 10px;
}

.company-info {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ===== SUCCESS NOTIFICATION ===== */
.success-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-premium);
    z-index: 2000;
    transform: translateX(400px);
    transition: transform 0.5s ease;
}

.success-notification.show {
    transform: translateX(0);
}

.success-notification h4 {
    color: var(--white);
    margin-bottom: 5px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: var(--shadow-soft);
}

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

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

.back-to-top svg {
    width: 25px;
    height: 25px;
    fill: var(--white);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* ===== DECORATIVE DIVIDERS ===== */
.divider {
    height: 4px;
    background: var(--gradient-gold);
    margin: 60px 0;
    border-radius: 2px;
}

.divider-center {
    width: 100px;
    margin: 40px auto;
}

/* ===== POLICY PAGES ===== */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content ul,
.policy-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 10px;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* 1200px and below */
@media (max-width: 1200px) {
    .container {
        max-width: 992px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

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

/* 992px and below */
@media (max-width: 992px) {
    .container {
        max-width: 768px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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

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

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        margin-left: 40px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    * {
        overflow-x: hidden;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        max-width: 576px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

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

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

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

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

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

    .section {
        padding: 60px 0;
    }

    .card {
        padding: 30px;
    }

    .info-block {
        padding: 40px 25px;
    }

    .warning-block {
        padding: 30px 25px;
    }
}

/* 576px and below */
@media (max-width: 576px) {
    * {
        overflow-x: hidden !important;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .info-bar {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .card {
        padding: 25px;
    }

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

    .testimonial {
        padding: 30px;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer {
        padding: 40px 0 20px;
    }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
    outline: 3px solid var(--golden-lemon);
    outline-offset: 2px;
}

/* ===== HORIZONTAL SCROLL PREVENTION ===== */
/* Additional prevention for mobile */
@media (max-width: 768px) {
    .header-container,
    .footer-grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .hero-content,
    .card,
    .info-block,
    .warning-block,
    .feature-box,
    .testimonial,
    .package-card,
    .game-card,
    .contact-card {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    /* Prevent tables from causing horizontal scroll */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    /* Prevent iframes from causing horizontal scroll */
    iframe {
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Prevent form elements from causing horizontal scroll */
    input, textarea, select, button {
        max-width: 100%;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-gray);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--golden-lemon);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-banner-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cookie-banner-btn.accept {
    background: var(--gradient-gold);
    color: var(--white);
}

.cookie-banner-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.cookie-banner-btn.decline {
    background: transparent;
    border: 2px solid var(--medium-gray);
    color: var(--light-gray);
}

.cookie-banner-btn.decline:hover {
    border-color: var(--golden-lemon);
    color: var(--golden-lemon);
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .back-to-top,
    .burger,
    .cookie-banner {
        display: none;
    }

    body {
        font-size: 12pt;
    }
}
