.promo-body {
    overflow: hidden !important;
    overflow-x: hidden !important;
    height: 100vh;
    position: relative;
}

body.promo-body {
    overflow: hidden !important;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
}

/* Prevent horizontal overflow from animations */
html {
    overflow-x: hidden !important;
}


/* Disable image selection and context menu */
img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.process-navigation {
    position: fixed;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    z-index: 100;
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.process-step {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    /* backdrop-filter: blur(10px); */ /* Disabled for performance - very expensive during animations */
    border: 2px solid transparent;
    min-width: 250px;
    opacity: 0.7;
}

.process-step:hover {
    opacity: 1;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-step.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    opacity: 1;
}

.step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.process-step.active .step-indicator {
    background: white;
    color: var(--primary-color);
}

.step-text {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.process-line {
    width: 2px;
    height: 20px;
    background: rgba(255, 102, 0, 0.3);
    margin: 5px 0;
}

/* FAQ Floating Button */
.faq-floating-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.faq-floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 102, 0, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    transition: all 0.3s ease;
}

.scroll-dots {
    display: flex;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.85);
    /* backdrop-filter: blur(10px); */ /* Disabled for performance - very expensive during animations */
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}

.dot:hover {
    background: rgba(255, 102, 0, 0.8);
    transform: scale(1.1);
}

/* Section Base Styles */
.promo-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 20px 60px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    background: transparent;
    color: white;
    transform: translateX(100vw);
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow-x: hidden;
}

.promo-section.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: translateX(0);
}

/* Individual section positioning */
#section1 { left: 0vw; }
#section2 { left: 0vw; }
#section3 { left: 0vw; }
#section4 { left: 0vw; }
#section5 { left: 0vw; }
#section6 { left: 0vw; overflow: hidden;scale: 0.95; }

/* Main container that slides */
.promo-main {
    height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #e77919 55%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    /* background: linear-gradient(135deg, #1a1a1a 50%, #e77919 0%); */
}

/* Hero Section */
.hero-section {
    overflow: hidden;
    z-index: 2 !important;
}

/* Make hero section visible by default */
#section1 {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* .hero-section::before { */
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../src/imgs/bg/18.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
} */

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.promo-brand {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    /* font-size: 3rem;
    font-weight: 700; */
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 0;
    /* background: linear-gradient(135deg, white, #f0f0f0); */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-text {
    padding-top: 0;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hide hero tablet image on desktop (uses floating container instead) */
.hero-tablet-image {
    display: none;
}

.section-visual{
    text-align: center;
    place-self: center;
}

.hero-image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 5;
}

.hero-image {
    position: absolute;
    top: 15%;
    left: 72.5%;
    transform: translateX(-50%) perspective(1000px) rotateY(-15deg);
    transition: top 0.6s ease, left 0.6s ease, transform 0.6s ease, filter 0.3s ease, opacity 0.6s ease;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    opacity: 1;
    will-change: transform, top, left;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
}

/* Disable expensive filter during transitions for performance */
.promo-section:not(.active) ~ .hero-image-container .hero-image {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.feature-item span {
    font-size: 1rem;
    line-height: 1.4;
}

/* Content Sections */

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    margin-top: 0;
    color: white;
}



.section-text {
    padding-top: 0;
}

.section-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
    display: block;
}

/* Section images start hidden and animate in */
.section-image {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.6s ease-out;
    -webkit-transition: transform 0.6s ease-out;
    -moz-transition: transform 0.6s ease-out;
}

.section-image.loaded {
    opacity: 1;
}

.promo-section.active .section-image.loaded {
    transform: scale(1) translateY(0);
}

/* Contact Section */

.contact-section h2 {
    color: white;
    margin-bottom: 3rem;
    display: block;
}

/* Hide title on section 6 */
.contact-content {
display: grid;
    grid-template-columns: 2fr 0.3fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1500px;
    /* margin: 0 auto; */
    /* padding: 0 2rem; */
    margin-top: 2rem;
}

.contact-content.show-success {
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
}

.contact-content.show-success .expert-info {
    display: none;
}


.expert-info {
    text-align: center;
    max-width: 500px;
    place-self: anchor-center;
}
.expert-avatar {
    margin-bottom: 2rem;
}

.expert-avatar img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.expert-details h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.expert-role {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info {
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.contact-item strong {
    color: white;
    font-size: 0.95rem;
}

.contact-item span {
    color: #ccc;
    font-size: 0.95rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group select option {
    background: #2a2a2a;
    color: white;
    padding: 0.5rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.time-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.time-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.time-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.time-option:has(input[type="checkbox"]:checked) {
    background: rgba(255, 102, 0, 0.1);
    border-color: var(--primary-color);
}

.time-option input[type="checkbox"] {
    display: none;
}

.time-option .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-right: 0.5rem;
    position: relative;
}

.time-option:hover .checkmark {
    border-color: var(--primary-color);
}

.time-option input[type="checkbox"]:checked ~ .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.time-option input[type="checkbox"]:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    justify-self: end;
    border: 2px solid var(--primary-color);
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}





.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-header h2 {
    /* font-size: 2.5rem; */
    color: var(--tertiary-color);
    margin-bottom: 1rem;
}

/* Override for FAQ section with tertiary background */
.faq-section .faq-header h2 {
    color: white;
}

.faq-grid {
    max-width: 1400px;
    height: 525px;
    align-items: center
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, grid-template-rows 0.3s ease;
    display: grid;
    grid-template-rows: auto 0fr;
}

.faq-item.active {
    border-color: var(--primary-color);
    grid-template-rows: auto 1fr;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    color: var(--tertiary-color);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    grid-row: 2;
    padding: 0 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
}

.faq-answer p {
    color: var(--tertiary-color);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    /* Prevent overflow on desktop */
    max-width: 100%;
}

.fade-in-bottom {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
}

.fade-in.animate,
.fade-in-left.animate,
.fade-in-right.animate,
.fade-in-bottom.animate {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 1100px) {
    /* Disable custom scrolling and enable normal page flow */
    .promo-body {
        overflow-y: auto !important;
        height: auto !important;
    }
    
    body.promo-body {
        overflow: auto !important;
    }
    
    .promo-main {
        height: auto !important;
        padding-top: 60px;
    }
    
    /* Hide navigation elements on mobile */
    .process-navigation {
        display: none !important;
    }
    
    .scroll-indicator {
        display: none !important;
    }
    
    .faq-floating-button {
        display: none !important;
    }
    
    /* Stack sections vertically */
    .promo-section {
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        height: auto !important;
        min-height: auto !important;
        padding: 60px 30px !important;
        transition: none !important;
        will-change: auto !important;
    }
    
    /* Reset section positioning */
    #section1,
    #section2,
    #section3,
    #section4,
    #section5,
    #section6 {
        left: 0 !important;
        scale: unset;
    }
    
    /* Hide hero image on mobile */
    .hero-image-container {
        display: none !important;
    }
    
    /* Fade-in animation for sections on scroll */
    .promo-section {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    .promo-section.visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Prevent animation overflow */
    .fade-in-right {
        transform: translateY(20px) !important;
    }
    
    .fade-in-left {
        transform: translateY(20px) !important;
    }
    
    /* Grid layouts to single column */
    .hero-content,
    .section-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Expert avatar sizing for mobile */
    .expert-avatar img {
        width: 150px;
        height: 150px;
    }
    
    /* Alternate image positioning for visual interest */
    .section-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    /* Hero section - show tablet at top within section 1 */
    .hero-image-container {
        display: none !important;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-visual {
        order: 1;
        margin-bottom: 2rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-tablet-image {
        display: block !important;
        max-width: 60%;
        height: auto;
        margin: 0 auto;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    }
    
    .hero-text {
        order: 2;
        width: 100%;
        max-width: 800px;
    }
    
    /* Center feature items but keep text left-aligned */
    .hero-features {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .feature-item {
        text-align: left;
        justify-content: flex-start;
    }
    
    /* Section 2 - image at top, change to a1.webp */
    #section2 .section-visual {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    #section2 .section-text {
        order: 2;
        width: 100%;
        max-width: 800px;
    }
    
    #section2 .section-visual img {
        content: url('../src/imgs/promoapp/a1.webp');
        margin: 0 auto;
    }
    
    /* Section 3 - image at top (offline tablet) */
    #section3 .section-visual {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    #section3 .section-text {
        order: 2;
        padding-top: 0 !important;
        width: 100%;
        max-width: 800px;
    }
    
    /* Section 4 - image at top (no wifi tablet) */
    #section4 .section-visual {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    #section4 .section-text {
        order: 2;
        width: 100%;
        max-width: 800px;
    }
    
    /* Center all section visuals */
    .section-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .section-text {
        width: 100%;
        max-width: 800px;
    }
    
    /* Center section images */
    .section-image {
        margin: 0 auto;
        display: block;
    }
    
    /* Section features styling */
    .section-features {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        text-align: left;
    }
    
    .section-features .feature-item {
        text-align: left;
        justify-content: flex-start;
    }
    
    /* Scale down all section images */
    .section-image {
        max-width: 90% !important;
    }
    

    #section3 .section-image{
        max-width: 70% !important;
    }
    
    /* Contact section background */
    .contact-section {
        background: var(--tertiary-color) !important;
    }
    
    /* Typography adjustments */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .faq-header h2, .section-title {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    /* Contact form adjustments */
    .contact-content.show-success {
        grid-template-columns: 1fr;
    }

    /* Make form single column on mobile */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* FAQ grid */
    .faq-grid {
        height: auto;
        display: flex;
        flex-direction: column;
        /* gap: 1.5rem; */
    }
}

@media (max-width: 768px) {
    .promo-section {
        padding: 50px 20px !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .faq-header h2, .section-title {
        font-size: 1.8rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .hero-description,
    .contact-description {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .time-options {
        grid-template-columns: 1fr;
    }
    
    .hero-content,
    .section-content,
    .contact-content {
        gap: 2rem;
    }
    
    .hero-tablet-image {
        max-width: 70% !important;
    }
    
    .section-image {
        max-width: 80% !important;
    }
}

@media (max-width: 480px) {
    .promo-section {
        padding: 40px 15px !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .faq-header h2, .section-title {
        font-size: 1.5rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .hero-content,
    .section-content,
    .contact-content {
        gap: 1.5rem;
    }
    
    .hero-tablet-image {
        max-width: 70% !important;
    }
    
    .section-image {
        max-width: 90% !important;
    }
    
    .hero-visual {
        margin-bottom: 1.5rem;
    }
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
}

/* Loading animation enhancement */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Error Messages */
.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    /* margin-top: 0.5rem; */
    display: none;
    font-weight: 500;
}

.error-message-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Input error state */
.form-group input.error,
.form-group select.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Form success with animation */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-content.show-success .form-success {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.success-content i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.success-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Privacy link */
.privacy-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.2s ease;
    /* margin-bottom: 1rem; */
    display: inline-block;
}

.privacy-link:hover {
    color: white;
    text-decoration: underline;
}

/* Form submit button adjustments */
.form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 1rem; */
    /* margin-top: 1.5rem; */
}

.iti {
    width: 100% !important;
}

.iti__flag-container {
    background: rgba(255, 255, 255, 0.1) !important;
}

.iti__selected-flag {
    background: rgba(255, 255, 255, 0.1) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.iti__arrow {
    border-top-color: var(--secondary-color) !important;
}

.iti__country-list {
    background: var(--tertiary-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--secondary-color) !important;
}

.iti__country {
    color: var(--secondary-color) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.iti__country:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.iti__search-input, .iti__no-results {
    background: var(--tertiary-color) !important;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}


/* Button disabled state */
.submit-btn:disabled {
    background-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
    transform: none;
}

.submit-btn:disabled:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: none;
}
