/* Font Loading Optimization - moved to HTML via <link>, keeping here commented to avoid double load */
/* @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&subset=latin,latin-ext&display=block'); */

/* Mobile-First Base Styles */
html {
    height: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0px;
    min-height: 100vh;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    height: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Touch-friendly interactions */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Improved touch targets */
button, 
.link, 
.social-link, 
.carousel-arrow, 
.submit-btn, 
.group-btn,
.faq-question-creative {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Performance optimizations */
.container,
.about-decorative-elements,
.faq-background-effects {
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Reduced motion for low-end devices */
.reduced-motion *,
.reduced-motion *::before,
.reduced-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}

/* CSS Custom Properties for mobile viewport */
:root {
    --vh: 1vh;
}

/* Use custom viewport height for mobile */
@media (max-width: 768px) {
    .container {
        min-height: calc(var(--vh, 1vh) * 100);
    }
    
    #eye-catcher {
        height: calc(var(--vh, 1vh) * 60);
    }
}

@media (max-width: 480px) {
    #eye-catcher {
        height: calc(var(--vh, 1vh) * 50);
    }
}

/* Accessibility improvements for mobile */
@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;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .container-content.offer,
    .about-text-box,
    .faq-item-creative,
    .contact-form {
        border-width: 3px;
        border-color: #ffffff;
    }
}

/* Dark mode support for mobile */
@media (prefers-color-scheme: dark) {
    /* This can be expanded if dark mode is desired */
}

#menu {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, #e91e63, #9c27b0, #673ab7, #3f51b5);
    background-size: 300% 300%;
    animation: headerGradientFlow 8s ease-in-out infinite;
    text-align: center;
    padding: 16px 10vw;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 0.3vw;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(156, 39, 176, 0.2);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

@keyframes headerGradientFlow {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}
#menu .link{
    flex: 1;
    text-align: center;
    color: #ffffff;
    font-weight: 900;
    padding: 12px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    text-decoration: none;

    border: 2px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#menu .link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.6);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.4);
}

#menu .link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.2);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 255, 255, 0.5);
}

#social-media {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.social-link.facebook {
    background: rgba(24, 119, 242, 0.2);
    margin-right: 5px;
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.4);
    color: #1877f2;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(24, 119, 242, 0.3);
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.2);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(225, 48, 108, 0.25);
}

/* TikTok brand styling */
.social-link.tiktok { background: rgba(0, 0, 0, 0.25); }
.social-link.tiktok:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

#logo{
    flex: 1;
    text-align: center;
    color: #ffffff;
    font-weight: 900;
    padding: 20px 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;

    border: 2px solid transparent;
}

#logo img {
    height: 72px;
    width: auto;
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 20px;
    padding: 8px;
}

#logo:hover img {
    filter: drop-shadow(0 0 20px rgba(255, 255, 128, 0.6)) drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.4));
    transform: scale(1.15);
}
/* Container Base Styles */
.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container-content {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 40px 40px 40px;
    box-sizing: border-box;
}

/* Eye Catcher Section */
#eye-catcher {
    background: linear-gradient(135deg, #ff0080, #ff4da6, #ff80cc);
    position: relative;
    overflow: hidden;
}

#eye-catcher::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

#eye-catcher img, #eye-catcher video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* About Section - Creative Artistic Design */
#About {
    background: linear-gradient(45deg, #ff0080, #ff4da6, #0080ff, #4da6ff, #ff0080);
    background-size: 400% 400%;
    animation: none;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 20%; }
    25% { background-position: 100% 80%; }
    50% { background-position: 20% 100%; }
    75% { background-position: 80% 0%; }
    100% { background-position: 0% 20%; }
}

#About::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 128, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none; /* allow clicks to pass through */
}

#About .container-content {
    position: relative;
    z-index: 2;
}

.about-creative-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto auto;
    gap: 3rem;
    width: 90%;
    max-width: 1200px;
    height: auto;
    padding: 4rem 2rem;
}

.about-image-container {
    grid-row: 1 / 3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-frame {
    position: relative;
    transform: none;
    transition: all 0.5s ease;
}

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

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #ffff80, #ff80cc, #80ccff, #ffff80);
    border-radius: 30px;
    z-index: -1;
    /* spinning background removed */
    animation: none;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg) scale(1); }
    30% { transform: rotate(120deg) scale(1.05); }
    60% { transform: rotate(200deg) scale(0.95); }
    85% { transform: rotate(300deg) scale(1.02); }
    100% { transform: rotate(360deg) scale(1); }
}

.about-image-frame img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.about-title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.about-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;

    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff0080, #0080ff, #ff0080);
    border-radius: 2px;
    animation: underlineGlow 5s ease-in-out infinite;
}

/* About subtitle (h3) styling */
.about-title-container h3 {
    margin: 0.75rem 0 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .about-title-container h3 { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .about-title-container h3 { font-size: 1.25rem; text-align: center; }
}

@media (max-width: 480px) {
    .about-title-container h3 { font-size: 1.1rem; }
}

@keyframes underlineGlow {
    0% { box-shadow: 0 0 5px rgba(255, 0, 128, 0.5); }
    25% { box-shadow: 0 0 15px rgba(255, 255, 128, 0.7); }
    50% { box-shadow: 0 0 20px rgba(0, 128, 255, 0.8); }
    75% { box-shadow: 0 0 12px rgba(255, 128, 204, 0.6); }
    100% { box-shadow: 0 0 5px rgba(255, 0, 128, 0.5); }
}

.about-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.about-text-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}






.about-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    text-align: left;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.about-decorative-elements::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 128, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(128, 204, 255, 0.1) 50%, transparent 70%);
    animation: lightBeams 15s ease-in-out infinite;
}

.about-decorative-elements::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 128, 204, 0.15) 0%, rgba(255, 128, 204, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 10s ease-in-out infinite;
}

@keyframes lightBeams {
    0% { transform: rotate(0deg) scale(1); opacity: 0.3; }
    25% { transform: rotate(90deg) scale(1.1); opacity: 0.6; }
    50% { transform: rotate(180deg) scale(0.9); opacity: 0.4; }
    75% { transform: rotate(270deg) scale(1.05); opacity: 0.7; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.3; }
}

@keyframes pulseGlow {
    0% { transform: scale(1) translateY(0px); opacity: 0.4; }
    30% { transform: scale(1.2) translateY(-20px); opacity: 0.7; }
    60% { transform: scale(0.8) translateY(10px); opacity: 0.3; }
    100% { transform: scale(1) translateY(0px); opacity: 0.4; }
}

/* ===== MOBILE RESPONSIVE DESIGN ===== */

/* Mobile Navigation Styles */
@media (max-width: 1024px) {
    #menu {
        padding: 15px 5vw;
        gap: 0.2vw;
    }
    
    #menu .link {
        font-size: 1rem;
        padding: 15px 8px;
        letter-spacing: 1px;
    }
    
    #logo {
        font-size: 1.1rem;
        padding: 15px 10px;
    }
    
    #logo img {
        height: 45px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    #menu {
        padding: 12px 3vw;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.5rem;
        min-height: 80px;
    }
    
    #menu .link {
        font-size: 0.85rem;
        padding: 10px 6px;
        letter-spacing: 0.5px;
        flex: none;
        min-width: auto;
        white-space: nowrap;
    }
    
    #logo {
        order: -1;
        flex: none;
        font-size: 1rem;
        padding: 10px 8px;
    }
    
    #logo img {
        height: 35px;
    }
    
    #social-media {
        order: 1;
        flex: none;
        gap: 8px;
        padding: 10px 5px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {

    #menu {
        padding: 8px 2vw;
        min-height: 90px;

        display: flex !important;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    #menu section {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.01rem;
    }
    
    /* Logo - Top row, left */
    #menu section:nth-child(1) {
        order: 1;
        flex: 20;
    }
    
    /* O nas, Oferta, Grupy, FAQ, Kontakt - Bottom row */
    #menu section:nth-child(2),
    #menu section:nth-child(3), 
    #menu section:nth-child(4),
    #menu section:nth-child(5),
    #menu section:nth-child(6) {
        order: 10;
        flex: 0 0 20%; /* exactly five equal columns */
        margin-top: 6px;
        min-width: 0;
        max-width: 18%;
    }
    
    /* Rezerwacja - Top row, center-right */
    #menu section:nth-child(7) {
        order: 2;
        flex: 20;
        margin-right: 8px;
    }
    
    /* Social Media - Top row, right */
    #menu section:nth-child(8) {
        order: 3;
        flex: 20;
    }

    /* Force line break between top row and bottom links */
    #menu::after {
        content: '';
        order: 5;
        flex-basis: 100%; /* takes full row width to push following items to next line */
        height: 0;
    }
    
    #menu .link {
        font-size: 0.75rem;
        padding: 6px 3px;
        letter-spacing: 0.3px;
        min-width: 50px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    #logo {
        font-size: 1rem;
        padding: 10px 8px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    #logo img {
        height: 32px;
    }
    
    #social-media {
        gap: 6px;
        padding: 8px 4px;
        display: flex !important;
        align-items: center;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* Ultra-small screens (320px and below) */
@media (max-width: 320px) {
    #menu {
        padding: 8px 1vw;
        min-height: 65px;
        gap: 0.1rem;
    }
    
    #menu .link {
        font-size: 0.65rem;
        padding: 5px 2px;
        letter-spacing: 0.1px;
        min-width: 50px;
    }
    
    #logo {
        font-size: 0.8rem;
        padding: 6px 4px;
    }
    
    #logo img {
        height: 25px;
    }
    
    #social-media {
        gap: 3px;
        padding: 5px 1px;
    }
    
    .social-link {
        width: 25px;
        height: 25px;
    }
    
    .social-link svg {
        width: 12px;
        height: 12px;
    }
}

/* Container and Content Mobile Styles */
@media (max-width: 768px) {
    .container {
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
        align-items: flex-start;
    }
    
    .container-content {
        width: 100%;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-top: 95px;
    }
    
    .container-content {
        padding: 30px 15px;
    }
}

@media (max-width: 320px) {
    .container {
        padding-top: 65px;
    }
    
    .container-content {
        padding: 25px 10px;
    }
}

/* Eye Catcher Mobile Styles */
@media (max-width: 768px) {
    #eye-catcher {
        height: 60vh;
        min-height: 400px;
    }
    
    #eye-catcher img {
        object-position: center center;
    }
}

@media (max-width: 480px) {
    #eye-catcher {
        height: 50vh;
        min-height: 300px;
    }
}

/* About Section Mobile Responsive Design */
@media (max-width: 1024px) {
    .about-creative-layout {
        gap: 2.5rem;
        padding: 3rem 1.5rem;
    }
    
    .about-title {
        font-size: 3.5rem;
    }
    
    .about-description {
        font-size: 1.2rem;
    }
    
    .about-text-box {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    #About .container-content {
        justify-content: flex-start;
        align-items: center;
        height: auto;
        padding: 20px 20px;
    }
    
    .about-creative-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 2rem;
        text-align: center;
        padding: 1rem 1rem;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-title-container {
        grid-row: 1;
        order: 1;
        align-items: center;
    }
    
    .about-content-container {
        grid-row: 2;
        order: 2;
    }
    
    .about-image-container {
        grid-row: 3;
        order: 3;
        margin-top: 3rem;
    }
    
    .about-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .about-description {
        text-align: center;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .about-text-box {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-image-frame img {
        max-width: 280px;
    }
    
    /* Adjust image styling for bottom placement */
    .about-image-frame {
        transform: none;
    }
    
    .about-image-frame:hover {
        transform: scale(1.03);
    }
}

@media (max-width: 480px) {
    .about-creative-layout {
        gap: 1.5rem;
        padding: 1.5rem 0.5rem;
    }
    
    .about-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .about-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .about-text-box {
        padding: 1.2rem;
    }
    
    .about-image-frame img {
        max-width: 250px;
    }
}

@media (max-width: 320px) {
    .about-creative-layout {
        gap: 1.2rem;
        padding: 1.2rem 0.3rem;
    }
    
    .about-title {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }
    
    .about-description {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .about-text-box {
        padding: 1rem;
    }
    
    .about-image-frame img {
        max-width: 220px;
    }
}


/* Offer Section - Blue Background */
.container.offer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, #0080ff, #4da6ff, #80ccff);
}

#offer {
    position: relative;
}

/* CSS variables hold current and next background images to avoid re-parsing styles */
#offer {
    --offer-bg-current: none;
    --offer-bg-next: none;
}

#offer::before,
#offer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Current image visible (with overlay) */
#offer::before {
    background-image: var(--offer-bg-current);
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.541);
    background-blend-mode: multiply;
}

/* Next image starts hidden (no overlay to avoid white flash) */
#offer::after {
    background-image: var(--offer-bg-next);
    opacity: 0;
    transition: opacity 400ms ease-in-out;
    will-change: opacity;
    pointer-events: none;
    background-color: transparent !important;
    background-blend-mode: normal;
}

/* Fade in next image over current */
#offer.crossfade::after {
    opacity: 1;
}

/* Background video mode for Offer */
#offer.use-video::before,
#offer.use-video::after {
    background-image: none !important; /* disable image-based backgrounds */
    transition: none;
}

/* Use ::before as a subtle overlay when videos are active */
#offer.use-video::before {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2);
    background-blend-mode: normal;
    z-index: 1; /* above videos, below content */
}

/* Not used in video mode */
#offer.use-video::after {
    opacity: 0;
}

/* Ensure content stays on top in video mode */
#offer.use-video .container-content.offer {
    position: relative;
    z-index: 2;
}

/* Background videos stacked under overlay/content */
.offer-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 400ms ease-in-out;
    pointer-events: none; /* keep interactions on content */
}

.offer-bg-video.visible {
    opacity: 1;
}

.container-content.offer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
}


.container-content.offer.text {
    color: #ffffff;
    font-weight: 400;
    line-height: 1.6;
}

.container-content.offer h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 32px;
    border-radius: 15px;
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}



#title-offer {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 20px 40px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

#title-offer p {
    font-size: 2rem;
    margin: 0 20px;
    color: #0080ff;
    font-weight: 900;
    letter-spacing: 2px;
}

#offer #learn-more-button {
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    color: #0080ff;
    border: 2px solid #ffffff;
    margin-top: 1rem;
}

#offer #learn-more-button:hover {
    background: #0080ff;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.3);
    color: #0080ff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

/* Background images are hidden */
.background-images {
    display: none !important;
}

/* Group Offers Section */
.container.group-offers {
    height: 90vh;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.container.group-offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, #ff0080 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, #0080ff 2px, transparent 2px),
        radial-gradient(circle at 20% 80%, #ffff80 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, #ff0080 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, #0080ff 1px, transparent 1px);
    background-size: 100px 100px, 120px 120px, 80px 80px, 150px 150px, 60px 60px;
    background-position: 0 0, 25px 25px, 50px 50px, 75px 75px, 100px 100px;
    animation: floatingDots 25s ease-in-out infinite;
    z-index: 1;
    opacity: 0.3;
}

@keyframes floatingDots {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-15px); }
    75% { transform: translateY(-30px) translateX(5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.container.group-offers::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 0, 128, 0.1) 49%, rgba(255, 0, 128, 0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 128, 255, 0.1) 49%, rgba(0, 128, 255, 0.1) 51%, transparent 52%);
    background-size: 40px 40px, 60px 60px;
    animation: geometricLines 30s linear infinite;
    z-index: 1;
    opacity: 0.4;
}

@keyframes geometricLines {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 40px 40px, -60px 60px; }
}

.container-content.group-offers {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    color: white;
    text-align: center;
}

.container.group-offers h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 4px solid #0080ff;
    padding-bottom: 15px;
}




.group-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.group-info {
    flex: 1;
    text-align: left;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}



.group-info:hover::before {
    opacity: 1;
}

.group-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Group section subtitle (h4) styling */
.group-info h4 {
    margin: 0 0 1rem;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.45);
}

@media (max-width: 1024px) {
    .group-info h4 { font-size: 1.6rem; }
}

@media (max-width: 768px) {
    .group-info h4 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .group-info h4 { font-size: 1.2rem; letter-spacing: 1px; }
}

.group-info p {
    font-size: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.group-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.group-info li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: white;
}

.group-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffff80;
    font-weight: bold;
    font-size: 1.2rem;
}


.group-btn {
    text-decoration: none;
    background: #ff0080;
    color: #ffffff;
    border: 3px solid #ffff80;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.group-btn:hover {
    background: #ffff80;
    color: #ff0080;
    transform: translateY(-3px);
    border-color: #ff0080;
    box-shadow: 0 5px 15px rgba(255, 255, 128, 0.1);
}

.group-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
}





.group-image img {
    max-width: 75%;
    height: auto;
    border-radius: 15px;

    border: 3px solid white;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}



/* Offer Section Mobile Responsive Design */
@media (max-width: 1024px) {
    .container-content.offer {
        width: 70%;
        padding: 30px 20px;
    }
    
    .container-content.offer h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        padding: 18px 30px;
        letter-spacing: 2px;
    }
    
    #title-offer p {
        font-size: 1.8rem;
        margin: 0 15px;
    }
    
    #title-offer {
        padding: 15px 30px;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .container-content.offer {
        width: 90%;
        padding: 25px 15px;
    }
    
    .container-content.offer h2 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
        padding: 15px 25px;
        letter-spacing: 2px;
    }
    
    #title-offer {
        margin: 1.5rem 0;
        padding: 12px 20px;
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }
    
    #title-offer p {
        font-size: 1.5rem;
        margin: 0;
        flex: 0 0 auto;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
        position: static;
        margin: 0 10px;
        flex: 0 0 auto;
    }
    
    #offer #learn-more-button {
        padding: 12px 30px;
        font-size: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container-content.offer {
        width: 95%;
        padding: 20px 10px;
    }
    
    .container-content.offer h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding: 12px 20px;
        letter-spacing: 1px;
    }
    
    #title-offer {
        padding: 10px 15px;
        gap: 12px;
    }
    
    #title-offer p {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin: 0 8px;
    }
    
    #offer #learn-more-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Group Offers Mobile Responsive Design */
@media (max-width: 1024px) {
    .container.group-offers {
        height: auto;
        min-height: 70vh;
        padding: 40px 0;
    }
    
    .container-content.group-offers {
        width: 80%;
        padding: 30px 20px;
    }
    
    .container.group-offers h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .group-content {
        gap: 2rem;
    }
    
    .group-info p {
        font-size: 1.2rem;
    }
    
    .group-info li {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container.group-offers {
        height: auto;
        min-height: 60vh;
        padding: 30px 0;
    }
    
    .container-content.group-offers {
        width: 90%;
        padding: 25px 15px;
    }
    
    .group-content {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
    
    .group-info {
        text-align: left;
        padding: 20px 15px;
        flex: 2;
    }
    
    
    .container.group-offers h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .group-info p {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .group-info li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .group-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .group-image {
        flex: 1;
        min-width: 300px;
    }
    .group-image img {
        width: 60vh;
        height: auto;
    }
}

@media (max-width: 480px) {
    .container.group-offers {
        padding: 25px 0;
    }
    
    .container-content.group-offers {
        width: 95%;
        padding: 20px 10px;
    }
    
    .container.group-offers h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .group-info {
        padding: 30px 5 px;
    }
    
    .group-info p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .group-info li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .group-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* FAQ Section - Updated */
/* Creative FAQ Section */
.container.faq {
    min-height: auto;
    height: auto;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    background: #ff0080;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px 0;
    overflow: hidden;
}

@keyframes faqGradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* Floating Background Effects */
.faq-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.faq-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.2), rgba(255, 255, 128, 0.2));
    animation: floatShape 20s ease-in-out infinite;
}

.faq-floating-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.faq-floating-shape.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.faq-floating-shape.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-30px) rotate(90deg); opacity: 0.6; }
    50% { transform: translateY(-60px) rotate(180deg); opacity: 0.4; }
    75% { transform: translateY(-30px) rotate(270deg); opacity: 0.7; }
}

.faq-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: particleFloat 25s linear infinite;
}

.faq-particle.particle-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.faq-particle.particle-2 {
    top: 70%;
    left: 70%;
    animation-delay: -8s;
}

.faq-particle.particle-3 {
    top: 40%;
    right: 20%;
    animation-delay: -16s;
}

.faq-particle.particle-4 {
    bottom: 30%;
    left: 60%;
    animation-delay: -24s;
}

.faq-particle.particle-5 {
    top: 15%;
    left: 80%;
    animation: particleFloatAlt 30s linear infinite;
    animation-delay: -5s;
    width: 3px;
    height: 3px;
}

.faq-particle.particle-6 {
    top: 60%;
    left: 15%;
    animation: particleFloatSlow 35s linear infinite;
    animation-delay: -12s;
    width: 5px;
    height: 5px;
}

.faq-particle.particle-7 {
    bottom: 20%;
    right: 40%;
    animation: particleFloatAlt 28s linear infinite;
    animation-delay: -18s;
    width: 3px;
    height: 3px;
}

.faq-particle.particle-8 {
    top: 35%;
    left: 45%;
    animation: particleFloatSlow 32s linear infinite;
    animation-delay: -3s;
    width: 6px;
    height: 6px;
}

.faq-particle.particle-9 {
    bottom: 45%;
    right: 15%;
    animation: particleFloat 27s linear infinite;
    animation-delay: -21s;
    width: 3px;
    height: 3px;
}

.faq-particle.particle-10 {
    top: 80%;
    left: 25%;
    animation: particleFloatAlt 29s linear infinite;
    animation-delay: -9s;
    width: 4px;
    height: 4px;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

@keyframes particleFloatAlt {
    0% { transform: translateY(0px) translateX(0px); opacity: 0; }
    10% { opacity: 0.8; }
    50% { transform: translateY(-50vh) translateX(-30px); opacity: 1; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-100vh) translateX(-60px); opacity: 0; }
}

@keyframes particleFloatSlow {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0; }
    15% { opacity: 0.6; }
    30% { transform: translateY(-30vh) translateX(20px) rotate(90deg); opacity: 1; }
    60% { transform: translateY(-60vh) translateX(-10px) rotate(180deg); opacity: 1; }
    85% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(30px) rotate(360deg); opacity: 0; }
}

/* FAQ Content */
.container-content.faq {
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 1200px;
    text-align: center;
}

/* Creative Header */
.faq-header-creative {
    margin-bottom: 0.5rem;
    position: relative;
}

.faq-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.faq-title-main {
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    display: flex;
    gap: 0.2em;
    justify-content: center;
}

.faq-title-letter {
    display: inline-block;
    color: #ffffff;

}



.faq-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0.5rem 0 1rem 0;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.faq-decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.line-segment {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* FAQ Grid */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Creative FAQ Items */
.faq-item-creative {
    position: relative;
    perspective: 1000px;
}

.faq-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.faq-card-inner {
    position: relative;
    z-index: 2;
}



/* Question Styling */
.faq-question-creative {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.faq-icon-creative {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-number {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffffff;
    z-index: 2;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.8);
}

.faq-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff0080, #ffff80);
    border-radius: 50%;
    animation: iconRotate 6s linear infinite;
    z-index: 1;
}

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

.faq-question-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

.faq-expand-icon {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.expand-line {
    position: absolute;
    background: #ff0080;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.expand-line-1 {
    width: 20px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.expand-line-2 {
    width: 3px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.faq-item-creative.active .expand-line-2 {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item-creative.active .faq-expand-icon {
    transform: rotate(45deg);
}

/* Answer Styling */
.faq-answer-creative {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: rgba(248, 248, 248, 1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-answer-content {
    padding: 0 1.5rem;
}

.faq-answer-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333333;
    font-weight: 400;
}

/* FAQ list styling */
.faq-answer-content ul {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
}

.faq-answer-content li {
    position: relative;
    padding-left: 1.5rem;
    margin: 0.4rem 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333333;
}

.faq-answer-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff0080, #ffff80);
    box-shadow: 0 0 6px rgba(255, 0, 128, 0.4);
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .faq-answer-content li { font-size: 1rem; }
}

@media (max-width: 480px) {
    .faq-answer-content li { font-size: 0.95rem; }
}

.faq-item-creative.active .faq-answer-creative {
    max-height: 2000px; /* allow long answers on small screens */
    padding: 1.5rem 0;
}

/* FAQ Section Mobile Responsive Design */
@media (max-width: 1024px) {
    .container.faq {
        padding: 40px 0;
    }
    
    .container-content.faq {
        width: 90%;
        padding: 40px 30px;
    }
    
    .faq-title-main {
        font-size: 2.8rem;
    }
    
    .faq-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .faq-grid {
        gap: 1.8rem;
    }
    
    .faq-question-creative {
        padding: 1.8rem;
    }
    
    .faq-question-text {
        font-size: 1.2rem;
    }
    
    .faq-answer-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .container.faq {
        padding: 25px 0;
    }
    
    .container-content.faq {
        width: 90%;
        padding: 25px 15px;
    }
    
    .faq-title-main {
        font-size: 3rem;
    }
    
    .faq-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-grid {
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .faq-question-creative {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .faq-question-text {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .faq-item-creative.active .faq-answer-creative {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .faq-answer-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .faq-icon-creative {
        width: 50px;
        height: 50px;
    }
    
    .faq-number {
        font-size: 1.2rem;
    }
    
    .faq-floating-shape {
        display: none;
    }
    
    .faq-particle {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .container.faq {
        padding: 20px 0;
    }
    
    .container-content.faq {
        width: 95%;
        padding: 20px 10px;
    }
    
    .faq-title-main {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .faq-grid {
        gap: 1.2rem;
    }
    
    .faq-question-creative {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .faq-question-text {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .faq-item-creative.active .faq-answer-creative {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }
    
    .faq-answer-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .faq-icon-creative {
        width: 45px;
        height: 45px;
    }
    
    .faq-number {
        font-size: 1.1rem;
    }
    
    .expand-line {
        width: 12px;
        height: 2px;
    }
    
    .faq-particle {
        display: none;
    }
}

/* Contact Section */
.container.contact {
    height: auto;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.container.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.05));
    z-index: 0;
}

.container-content.contact {
    position: relative;
    z-index: 2;
    height: auto;
    min-height: unset;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch; /* allow inner sections to span full width */
    padding: 40px;
    box-sizing: border-box;
}

.container-content.contact.left {
    text-align: center;
    width: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.container-content.contact.left:hover {
    border-color: #3b82f6;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);

}

.container-content.contact.right {
    padding: 40px 30px 30px 30px;
    text-align: left;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    color: #1e293b;
    width: 100%; /* expand to full width now that left column is removed */
    max-width: 1200px; /* keep content readable on large screens */
    box-sizing: border-box;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-content: start;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    overflow: visible;
    min-height: 600px;
    margin: 0 auto; /* center the card */
}

.container-content.contact.right:hover {
    border-color: #3b82f6;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);

}

.container-content.contact.right h3 {
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    color: #1e293b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0;
    text-align: left;
    position: relative;
    border-bottom: 3px solid #667eea;
    padding-bottom: 8px;
}



.container-content.contact.right p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 15px 20px;
    border-left: 4px solid #667eea;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.container-content.contact.right p:hover {
    background: #f1f5f9;
    border-left-color: #764ba2;
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

/* Google Maps Styling */
.container-content.contact.right .map-container {
    height: 160px;
    min-height: 160px;
    max-height: 160px;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: block;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    box-sizing: border-box;
    flex: 1;
}

.container-content.contact.right .map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.container-content.contact.right .map-container iframe {
    display: block;
    width: 100%;
    height: 160px;
    min-height: 160px;
    max-height: 160px;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    order: 1;
    width: 100%;
}

.contact-items {
    gap: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* allow items to wrap in one column on narrow widths */
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    gap: 4px;
    flex: 1;
}

.contact-item:hover {
    background: #f1f5f9;
    border-left-color: #764ba2;
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.contact-label {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.contact-value {
    font-weight: 500;
    color: #475569;
    font-size: 0.95rem;
    text-align: left;
}

.contact-value a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-value a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Location Section */
.location-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    order: 2;
    width: 100%;
}

.location-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* allow address and map to stack when needed */
    gap: 12px;
    align-items: flex-start;
}

.address-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    gap: 4px;
    flex: 1;
}

.address-info:hover {
    background: #f1f5f9;
    border-left-color: #764ba2;
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

/* Hours Section */
.hours-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    order: 3;
    width: 100%;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: transparent;
    border-radius: 8px;
    transition: all 0.2s ease;
    border-left: 3px solid #667eea;
    min-height: 44px;
}

.hours-item:hover {
    background: #f8fafc;
    transform: translateX(2px);
    border-left-color: #764ba2;
}

.hours-item .day {
    font-weight: 600;
    text-transform: capitalize;
    color: #1e293b;
    font-size: 0.9rem;
}

.hours-item .time {
    font-weight: 500;
    color: #475569;
    font-size: 0.85rem;
    text-align: right;
}

.hours-item .time.closed {
    color: #ef4444;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    opacity: 0.8;
}



.container.contact h2 {
    margin-top: 0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
    font-weight: 700;
    border-bottom: 4px solid #667eea;
    padding-bottom: 12px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container.contact h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    border-radius: 2px;
    animation: headerGlow 3s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Desktop (>=1024px) compact hours styling */
@media (min-width: 1024px) {
    /* Tighten container spacing if present */
    .hours-list {
        gap: 6px;
        padding: 12px;
    }
    /* Make rows shorter while keeping full names */
    .hours-item {
        padding: 6px 10px;
        min-height: 32px;
    }
    .hours-item .day {
        font-size: 0.9rem; /* keep names visible */
    }
    .hours-item .time {
        font-size: 0.8rem;
    }
}



.contact-form {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 40px;
    backdrop-filter: none;
    box-shadow: none;
    transition: none;
    max-width: none;
    margin: 0;
    width: 100%;
    height: 100%;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

.form-group label .required {
    color: #ef4444;
    margin-left: 4px;
    font-weight: 700;
}

.form-group label::before {
    content: '●';
    color: #667eea;
    margin-right: 8px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #ffffff;
    color: #1e293b;
    font-size: 1rem;
    font-family: 'Arial', 'Helvetica', sans-serif;
    box-sizing: border-box;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2), 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(71, 85, 105, 0.6);
    font-style: italic;
}

.form-group textarea {
    resize: none;
    min-height: 150px;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.submit-btn {
    background: #3f51b5;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-transform: none;
    letter-spacing: 0.3px;
    width: 100%;
    margin-top: 20px;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.submit-btn:hover {
    background: #673ab7;
}

.submit-btn:active {
    background: #ad1457;
}

.submit-btn:focus {
    outline: 2px solid #673ab7;
    outline-offset: 1px;
}

.submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Contact Section Mobile Responsive Design */
@media (max-width: 1024px) {
    .container.contact {
        padding: 0;
        align-items: stretch;
    }
    
    .container-content.contact {
        width: 50%;
        padding: 35px 25px;
    }
    
    .container.contact h2 {
        font-size: 2.2rem;
        margin-bottom: 1.8rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group label {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .container-content.contact.right h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .container-content.contact.right p {
        font-size: 0.95rem;
        padding: 8px 12px;
    }
    
    .contact-item,
    .hours-item {
        padding: 2px 12px;
    }
    
    .map-container iframe {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .container.contact {
        flex-direction: column;
        height: auto;
        padding: 60px 15px;
        justify-content: flex-start;
        align-items: center;
    }
    
    .container-content.contact {
        width: 95% !important;
        max-width: 600px;
        padding: 25px 20px;
        height: auto !important;
        min-height: auto !important;
    }
    
    .container-content.contact.left {
        width: 100% !important;
        margin-bottom: 30px;
        height: auto !important;
        padding: 30px 25px;
    }
    
    .container-content.contact.right {
        width: 100% !important;
        border-left: none;
        border-top: none;
        margin-top: 0;
        padding: 30px 25px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        height: auto !important;
        gap: 25px;
    }
    
    .container-content.contact.right h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .container-content.contact.right p {
        font-size: 1rem;
        padding: 10px 12px;
    }
    
    .container.contact h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
    }
    
    .contact-item,
    .hours-item {
        padding: 10px 12px;
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }
    
    .contact-label,
    .day {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .contact-value,
    .time {
        font-size: 1rem;
    }
    
    .map-container {
        margin-top: 1rem;
    }
    
    .map-container iframe {
        height: 200px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .container.contact {
        padding: 55px 10px;
        min-height: 200vh;
    }
    
    .container-content.contact {
        width: 98% !important;
        max-width: 500px;
        padding: 20px 15px;
        height: auto !important;
        min-height: auto !important;
    }
    
    .container-content.contact.left {
        width: 100% !important;
        margin-bottom: 25px;
        height: auto !important;
        padding: 25px 20px;
    }
    
    .container-content.contact.right {
        width: 100% !important;
        padding: 25px 20px;
        height: auto !important;
        gap: 20px;
    }
    
    .container.contact h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .container-content.contact.right h3 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem 0;
    }
    
    .contact-item,
    .hours-item {
        padding: 8px 10px;
    }
    
    .contact-label,
    .day {
        font-size: 0.85rem;
    }
    
    .contact-value,
    .time {
        font-size: 0.9rem;
    }
    
    .map-container iframe {
        height: 180px;
    }
    
    .submit-btn {
        font-size: 1rem;
        padding: 15px 30px;
    }
}

/* Ultra-small screens - Stack contact items vertically */
@media (max-width: 320px) {
    .contact-items {
        flex-direction: column;
        gap: 8px;
    }
    
    .location-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-item {
        margin-bottom: 8px;
        padding: 10px 12px;
    }
    
    .contact-label {
        font-size: 0.8rem;
    }
    
    .contact-value {
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    .address-info {
        padding: 10px 12px;
        margin-bottom: 10px;
    }
    
    .map-container {
        height: 140px !important;
        min-height: 140px !important;
        max-height: 140px !important;
    }
    
    .map-container iframe {
        height: 140px !important;
    }
}

/* Footer Section */
.footer {
    width: 100%;
    background: linear-gradient(135deg, #2c3e50, #34495e, #2c3e50);
    color: #ffffff;
    padding: 25px 0 15px 0;
    position: relative;
    border-top: 3px solid #3f51b5;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.15);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(63, 81, 181, 0.05);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #ecf0f1;
    font-weight: 400;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #bdc3c7;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Footer responsive design */
@media (max-width: 768px) {
    .footer {
        padding: 20px 0 12px 0;
    }
    
    .footer-content {
        padding: 0 25px;
    }
    
    .footer-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

.about-video{
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 300px;
    max-width: 80%;
    height: auto;
    border: 2px solid #e2e8f0;
}
.about-image-frame .about-video {
    width: 100%;
    max-width: 40vw;   /* match the image */
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto;     /* ensure centering */
}
@media (max-width: 768px) {
    .about-image-frame{
        margin-bottom: 50px;
    }
}
@media (max-width: 480px) {
    .about-image-frame{
        margin-bottom: 30px;
    }
    .about-image-frame .about-video {
        width: 100%;
        max-width: 50vw;   /* match the image */
        height: auto;
        display: block;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        margin: 0 auto;     /* ensure centering */
    }
}
@media (max-width: 375px) {
    .about-image-frame{
        margin-bottom: 20px;
    }
    .about-image-frame .about-video {
        width: 100%;
        max-width: 70vw;   /* match the image */
        height: auto;
        display: block;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        margin: 0 auto;     /* ensure centering */
    }
}
@media (min-width: 800px) and  (min-height: 1000px){
    #social-media{
        display: block;
    }
}