* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.laptop-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    padding-top: 120px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    z-index: 1;
}

.laptop-screen {
    width: 100%;
    max-width: 1400px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
    min-height: 800px;
    border: 1px solid #e0e0e0;
    z-index: 2;
}

/* Top Navigation Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: transparent;
    border: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 10002;
    overflow: visible;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    background: transparent;
    transform: scale(1);
    transform-origin: left center;
    opacity: 1 !important;
}

/* Fixed Header that follows on scroll */
.fixed-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 224, 224, 0.3);
    border-radius: 12px;
    z-index: 10000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, top 0.3s ease;
    padding: 10px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    pointer-events: auto;
    touch-action: pan-y;
}

.fixed-header.scrolled {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(224, 224, 224, 0.5);
    top: 10px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    opacity: 1 !important;
}

.ets-text {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
}

.palantir-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a1a;
    font-size: 16px;
}

.search-icon, .close-icon, .menu-icon {
    cursor: pointer;
    color: #666;
    font-size: 18px;
    transition: color 0.2s;
}

.search-icon:hover, .close-icon:hover, .menu-icon:hover {
    color: #1a1a1a;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.get-started-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-right: 10px;
    display: inline-block;
    text-decoration: none;
}

.get-started-btn:hover {
    background: #333333;
    transform: translateY(-1px);
}

/* Hamburger Menu Button */
.hamburger-menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    padding: 0;
    z-index: 10001;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
    pointer-events: auto;
    -webkit-user-select: none;
    user-select: none;
}

.hamburger-menu-btn span {
    width: 100%;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Hamburger Menu Dropdown */
.hamburger-menu {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(224, 224, 224, 0.8);
    border-radius: 8px;
    min-width: 200px;
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 10001;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    z-index: 10001 !important;
}

    .hamburger-menu .menu-item {
        display: block;
        padding: 12px 20px;
        color: #1a1a1a;
        text-decoration: none;
        font-size: 14px;
        transition: background 0.2s ease;
        border: none;
        width: 100%;
        text-align: left;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .hamburger-menu .menu-item:hover,
    .hamburger-menu .menu-item:active {
        background: #f5f5f5;
    }

/* Main Content Area */
.main-content {
    display: flex;
    height: 100%;
    position: relative;
}

/* Left Panel */
.left-panel {
    width: 200px;
    background: #f9f9f9;
    padding: 20px 10px;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.panel-item {
    background: #ffffff;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border: 1px solid #e0e0e0;
}

.item-label {
    color: #1a1a1a;
    font-size: 12px;
}

.item-number {
    color: #666;
    font-size: 11px;
    position: absolute;
    right: 8px;
}

.target-icon {
    color: #999;
    font-size: 14px;
    margin-left: 8px;
}

/* Right Panel */
.right-panel {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #ffffff;
    position: relative;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 8px;
    cursor: pointer;
}

.category-header:first-child {
    margin-top: 0;
}

.chevron {
    color: #666;
    font-size: 10px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.orange-box {
    background: #fff8f0;
    border-color: #e8d5b7;
    border-left: 3px solid #d4a574;
}

.green-box {
    background: #f0f8f4;
    border-color: #c8e6d3;
    border-left: 3px solid #2d7a3d;
}

.item-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
}

.red-shield {
    background: #fff8f0;
    color: #d4a574;
}

.red-diamond {
    background: #f0f8f4;
    color: #7fb069;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.green-diamond {
    background: #e8f5e9;
    color: #2d7a3d;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.red-hexagon {
    background: #fff8f0;
    color: #b8860b;
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

.red-circle {
    background: #f0f8f4;
    color: #8b7355;
    border-radius: 50%;
}

.item-content {
    flex: 1;
}

.item-title {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.item-subtitle {
    color: #666;
    font-size: 11px;
    margin-bottom: 2px;
}

.item-code {
    color: #999;
    font-size: 10px;
    font-family: 'Courier New', monospace;
}

.checkmark {
    color: #2d7a3d;
    font-size: 18px;
    font-weight: bold;
    margin-right: 8px;
}

.item-count {
    color: #666;
    font-size: 12px;
    position: absolute;
    right: 15px;
}

.aircraft-label {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #999;
    font-size: 12px;
}

/* Marketing Overlay */
.marketing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    z-index: 5;
    pointer-events: none;
    opacity: 1 !important;
    will-change: transform;
    overflow: hidden;
}

/* Fix scrolling on mobile - ensure overlay doesn't block */
@media (max-width: 768px) {
    .marketing-overlay {
        pointer-events: none !important;
        touch-action: none;
    }
    
    /* Ensure body and html can scroll */
    body, html {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        position: relative !important;
        height: auto !important;
        min-height: 100vh;
        touch-action: pan-y !important;
        scroll-behavior: auto !important;
    }
    
    /* Prevent initial scroll bounce on services page */
    .services-page {
        scroll-behavior: auto !important;
    }
    
    /* Disable smooth scroll on mobile to prevent bounce */
    html {
        scroll-behavior: auto !important;
    }
    
    /* Services page specific scroll fix */
    .services-page {
        overflow-x: hidden !important;
        position: relative !important;
        height: auto !important;
        min-height: 100vh;
        touch-action: pan-y !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Ensure fixed header doesn't cause scroll jump */
    .fixed-header {
        will-change: transform;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Prevent any fixed elements from blocking scroll */
    .fixed-header {
        position: fixed !important;
        touch-action: pan-y !important;
        pointer-events: auto !important;
    }
    
    /* Ensure header doesn't capture all touch events - only interactive elements */
    .fixed-header .header-left,
    .fixed-header .header-right {
        touch-action: manipulation;
    }
    
    /* Critical: Make sure the header background doesn't block page scrolling */
    .fixed-header::before {
        display: none;
    }
    
    /* Ensure company name and logo don't block scroll - make them non-interactive for scroll */
    .fixed-header .company-name {
        pointer-events: none !important;
        touch-action: pan-y !important;
    }
    
    .fixed-header .logo-link {
        pointer-events: auto;
        touch-action: manipulation;
    }
    
    .fixed-header .logo-image {
        pointer-events: none;
    }
    
    /* Only buttons and links should be interactive */
    .fixed-header a,
    .fixed-header button {
        pointer-events: auto;
        touch-action: manipulation;
    }
    
    /* Make header container allow scroll-through on non-interactive areas */
    /* Don't make entire header non-interactive, just ensure it doesn't block scroll */
    .fixed-header {
        pointer-events: auto !important;
    }
    
    /* But ensure scroll events pass through to body when not interacting with header elements */
    .fixed-header:not(:active):not(:focus-within) {
        touch-action: pan-y;
    }
    
    /* Ensure body can receive scroll events - critical for first scroll */
    body {
        -webkit-overflow-scrolling: touch !important;
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        touch-action: pan-y !important;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Ensure html can also receive scroll events */
    html {
        -webkit-overflow-scrolling: touch !important;
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        touch-action: pan-y !important;
    }
    
    /* Make sure services hero sections don't block scroll */
    .services-hero {
        touch-action: pan-y !important;
        position: relative !important;
    }
    
    /* Ensure all content is scrollable */
    .article-section,
    .content-card,
    .cta-section {
        touch-action: pan-y !important;
        position: relative !important;
    }
    
    /* Ensure the page container allows scrolling */
    .services-page > * {
        touch-action: pan-y;
    }
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    will-change: transform;
}

.overlay-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40vh;
    width: 100%;
    height: 100%;
}

.main-headline {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
    max-width: 90%;
}

.scroll-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    animation: bounce 2s infinite;
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
}

.scroll-arrow {
    font-size: 24px;
    color: #ffffff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Scroll Content Section */
.scroll-content {
    background: #ffffff;
    padding: 80px 40px;
    min-height: 100vh;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-section p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-headline {
        font-size: 3rem;
    }
    
    .laptop-screen {
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 2rem;
    }
    
    .main-content {
        flex-direction: column;
    }
    
    .left-panel {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
    }
    
    .top-bar {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Disable smooth scroll on mobile to prevent initial bounce */
@media (max-width: 768px) {
    html {
        scroll-behavior: auto !important;
    }
    
    body {
        scroll-behavior: auto !important;
    }
    
    .services-page {
        scroll-behavior: auto !important;
    }
    
    /* Prevent any scroll position reset on touch */
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* Carousel Section */
.carousel-section {
    padding: 80px 40px;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.carousel-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 224, 224, 0.8);
    color: #1a1a1a;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn.active {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.carousel-container {
    width: 100%;
    max-width: 1600px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #999;
    font-weight: 500;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    padding: 60px 40px 40px 40px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.carousel-text {
    max-width: 1000px;
    text-align: center;
    color: #ffffff;
}

.carousel-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.carousel-text p {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    font-style: italic;
}

@media (max-width: 1024px) {
    .carousel-text h3 {
        font-size: 2rem;
    }
    
    .carousel-text p {
        font-size: 1.1rem;
    }
    
    .carousel-overlay {
        padding: 50px 30px 30px 30px;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        height: 600px;
    }
    
    .carousel-text h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .carousel-text p {
        font-size: 1rem;
    }
    
    .carousel-overlay {
        padding: 40px 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        height: 500px;
    }
    
    .carousel-text h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .carousel-text p {
        font-size: 0.9rem;
    }
    
    .carousel-overlay {
        padding: 30px 15px 15px 15px;
    }
}

/* Text Section Below Carousel */
.text-section {
    padding: 40px 40px 80px 40px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 50vh;
}

.large-text {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.4;
    max-width: 1200px;
    margin: 0;
    margin-bottom: 40px;
}

.get-offer-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 20px 60px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: inline-block;
    text-decoration: none;
}

.get-offer-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.get-offer-btn:active {
    transform: translateY(0);
}

.stats-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stats-section {
        gap: 30px;
        margin-top: 40px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .stats-section {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .large-text {
        font-size: 1.8rem;
    }
    
    .get-offer-btn {
        padding: 16px 40px;
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .large-text {
        font-size: 2.2rem;
    }
    
    .get-offer-btn {
        padding: 18px 50px;
        font-size: 20px;
    }
}

/* Comprehensive Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header adjustments */
    .fixed-header {
        width: 100%;
        max-width: 100vw;
        padding: 8px 15px;
        top: 10px;
        left: 0;
        transform: none;
        border-radius: 0;
        box-sizing: border-box;
    }
    
    .company-name {
        font-size: 14px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .get-started-btn {
        padding: 6px 16px;
        font-size: 12px;
        margin-right: 5px;
    }
    
    /* Ensure hamburger menu is visible and clickable on mobile */
    .fixed-header {
        z-index: 10000 !important;
        pointer-events: auto !important;
    }
    
    .hamburger-menu-btn {
        display: flex !important;
        z-index: 10001 !important;
        position: relative;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2);
        width: 40px;
        height: 40px;
        pointer-events: auto !important;
        cursor: pointer;
    }
    
    .hamburger-menu {
        position: fixed !important;
        z-index: 10001 !important;
        min-width: 180px;
        max-width: 90vw;
        right: 15px !important;
        top: 70px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        pointer-events: auto !important;
    }
    
    .header-right {
        z-index: 10001;
        position: relative;
        pointer-events: auto;
    }
    
    .hamburger-menu .menu-item {
        padding: 15px 20px;
        font-size: 15px;
        pointer-events: auto;
    }
    
    /* Carousel buttons - stack vertically on mobile */
    .carousel-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
        justify-content: center;
        align-items: stretch;
        overflow-x: visible;
        width: 100%;
        max-width: 100%;
    }
    
    .carousel-btn {
        padding: 14px 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Carousel section padding */
    .carousel-section {
        padding: 40px 15px;
        min-height: auto;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    /* Text section */
    .text-section {
        padding: 30px 15px 60px 15px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    /* Laptop container */
    .laptop-container {
        padding: 20px 10px;
        padding-top: 100px;
    }
    
    .laptop-screen {
        min-height: 500px;
    }
    
    /* Overlay content */
    .overlay-content {
        padding-top: 30vh;
    }
    
    .scroll-prompt {
        bottom: 40px;
        font-size: 12px;
    }
    
    .scroll-arrow {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    /* Very small screens */
    .fixed-header {
        width: 100%;
        max-width: 100vw;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none;
        padding: 10px 15px;
        box-sizing: border-box;
    }
    
    .hamburger-menu {
        top: 60px !important;
        right: 10px !important;
    }
    
    .company-name {
        font-size: 12px;
        display: none; /* Hide on very small screens */
    }
    
    .logo-image {
        height: 35px;
    }
    
    .get-started-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    /* Carousel */
    .carousel-section {
        padding: 30px 10px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .carousel-buttons {
        gap: 10px;
        padding: 0 10px;
        flex-direction: column;
    }
    
    .carousel-btn {
        padding: 12px 18px;
        font-size: 12px;
        border-radius: 8px;
        width: 100%;
    }
    
    /* Text section */
    .text-section {
        padding: 25px 15px 50px 15px;
    }
    
    .large-text {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .get-offer-btn {
        padding: 14px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
    
    .stats-section {
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Laptop container */
    .laptop-container {
        padding: 10px 5px;
        padding-top: 80px;
    }
    
    .laptop-screen {
        min-height: 400px;
        border-radius: 4px;
    }
    
    .main-headline {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .overlay-content {
        padding-top: 25vh;
    }
    
    .scroll-prompt {
        bottom: 30px;
        font-size: 11px;
    }
}

/* Mobile styles for other pages */
@media (max-width: 768px) {
    .contact-page,
    .about-page,
    .faq-page,
    .services-page {
        padding-top: 80px;
    }
    
    .services-hero {
        padding: 40px 20px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-title h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        padding-top: 0;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-hero {
        padding: 30px 15px;
    }
}
    
    .contact-hero,
    .about-hero,
    .faq-hero {
        padding: 50px 20px;
    }
    
    .contact-hero h1,
    .about-hero h1,
    .faq-hero h1 {
        font-size: 2rem;
    }
    
    .faq-section {
        padding: 40px 20px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h2 {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        padding: 0 20px 15px 20px;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1,
    .about-hero h1,
    .faq-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .contact-hero p,
    .about-hero p {
        font-size: 1rem;
    }
    
    .faq-question h2 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
    }
}

/* Ensure images and videos are responsive */
@media (max-width: 768px) {
    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .background-video {
        width: 100%;
        height: 100%;
    }
}

/* Prevent horizontal scroll on mobile - ensure vertical-only layout */
body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure all containers respect viewport width - vertical-only layout */
@media (max-width: 768px) {
    .laptop-container,
    .carousel-section,
    .text-section,
    .contact-page,
    .about-page,
    .services-page,
    .faq-page {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .carousel-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        border-radius: 0;
    }
    
    .carousel-track {
        width: 100%;
        max-width: 100%;
    }
    
    .carousel-slide {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
    
    .carousel-slide img {
        width: 100%;
        max-width: 100%;
        object-fit: cover;
    }
    
    /* Ensure text doesn't overflow */
    .large-text,
    .carousel-text h3,
    .carousel-text p,
    .main-headline,
    .company-name {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    /* Ensure buttons and interactive elements fit */
    .get-started-btn,
    .get-offer-btn,
    .cta-button {
        max-width: calc(100% - 40px);
        width: auto;
    }
    
    /* Header content */
    .header-left,
    .header-right {
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Stats section - ensure vertical stacking */
    .stats-section {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
    .carousel-btn,
    .get-started-btn,
    .get-offer-btn,
    .cta-button,
    .faq-toggle {
        min-height: 44px; /* iOS recommended tap target size */
    }
}

/* Comprehensive Mobile Optimizations for All Pages */
@media (max-width: 768px) {
    /* About Page Mobile Styles */
    .about-hero {
        padding: 50px 20px !important;
    }
    
    .about-hero h1 {
        font-size: 2rem !important;
        margin-bottom: 20px;
    }
    
    .about-hero p {
        font-size: 1rem !important;
        line-height: 1.6;
    }
    
    .about-hero-logo {
        max-width: 200px !important;
        margin-bottom: 30px;
    }
    
    .land-carousel-container {
        margin: 30px 15px 0;
        border-radius: 4px;
    }
    
    .land-carousel-slide {
        height: 300px !important;
    }
    
    .land-carousel-arrow {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }
    
    .land-carousel-arrow.prev {
        left: 10px !important;
    }
    
    .land-carousel-arrow.next {
        right: 10px !important;
    }
    
    /* Services Page Mobile Styles - Reduced Spacing */
    .services-hero {
        padding: 30px 15px !important;
        text-align: center;
        margin: 0 !important;
    }
    
    .article-section {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 !important;
        min-height: auto !important;
        align-items: center;
        text-align: center;
        margin: 0 !important;
    }
    
    .article-section.reverse {
        flex-direction: column !important;
    }
    
    .article-title-section {
        flex: 1 1 auto !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px !important;
        margin: 0 !important;
    }
    
    .article-title {
        font-size: 1.8rem !important;
        white-space: normal !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto 10px auto !important;
        line-height: 1.3 !important;
    }
    
    .article-title-section h2 {
        font-size: 1.8rem !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto 10px auto !important;
    }
    
    .article-title-section p {
        font-size: 1rem !important;
        text-align: center !important;
        margin: 0 !important;
    }
    
    .article-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 200px !important;
        object-fit: cover;
        border-radius: 8px;
        margin: 0 auto 10px auto !important;
        display: block;
    }
    
    .article-image-section {
        flex: 1 1 auto !important;
        width: 100% !important;
        text-align: center;
    }
    
    .article-image-section img {
        width: 100% !important;
        height: auto !important;
        max-height: 250px !important;
        object-fit: cover;
        margin: 0 auto;
        display: block;
    }
    
    .content-card {
        width: 100% !important;
        padding: 20px 15px !important;
        text-align: center !important;
        margin: 0 auto !important;
        box-sizing: border-box;
    }
    
    .content-card h4 {
        font-size: 1.3rem !important;
        text-align: center !important;
        margin: 0 auto 10px auto !important;
    }
    
    .content-card p {
        font-size: 1rem !important;
        text-align: center !important;
        margin: 15px auto 10px auto !important;
        max-width: 100%;
        width: 100%;
    }
    
    .content-card p:last-child {
        margin-bottom: 0 !important;
        margin-top: 15px !important;
    }
    
    .content-card ul {
        margin: 15px auto !important;
        padding-left: 0 !important;
        display: block;
        text-align: center !important;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        list-style: none !important;
    }
    
    .content-card li {
        font-size: 1rem !important;
        text-align: center !important;
        margin: 10px 0 !important;
        padding: 0 !important;
        position: relative;
    }
    
    .content-card li:before {
        display: none !important;
    }
    
    .carousel-container-vertical {
        width: 100% !important;
        margin: 20px 0;
    }
    
    .carousel-slide-vertical {
        min-height: auto !important;
        padding: 30px 20px !important;
        text-align: center;
    }
    
    .carousel-slide-vertical h4 {
        font-size: 1.5rem !important;
        margin-bottom: 15px;
    }
    
    .carousel-slide-vertical p {
        font-size: 1.1rem !important;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .divider-line {
        margin: 20px auto !important;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero-description p {
        font-size: 1rem !important;
        text-align: center;
    }
    
    .benefits-list,
    .process-list {
        text-align: left;
        display: inline-block;
        margin: 15px auto;
        padding-left: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .benefit-item,
    .process-item {
        text-align: left;
        margin: 10px 0;
        width: 100%;
    }
    
    .process-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 20px auto !important;
        display: block !important;
        text-align: center !important;
        list-style: none !important;
    }
    
    .process-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin: 25px 0 !important;
        padding: 0 !important;
        width: 100% !important;
        box-sizing: border-box;
        list-style: none !important;
        position: relative !important;
    }
    
    .process-item::before {
        display: none !important;
    }
    
    .process-item-content {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }
    
    .process-item h4 {
        font-size: 1.2rem !important;
        text-align: center !important;
        margin: 0 auto 8px auto !important;
        width: 100%;
        white-space: normal !important;
    }
    
    .process-item p {
        font-size: 1rem !important;
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100%;
    }
    
    .step-number {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        margin: 0 auto 15px auto !important;
        display: block !important;
        width: auto !important;
        margin-right: 0 !important;
        font-size: 2rem !important;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 40px 20px !important;
        text-align: center !important;
        margin: 0 auto !important;
        margin-top: 40px !important;
    }
    
    .cta-section h2 {
        text-align: center !important;
        margin: 0 auto 15px auto !important;
        width: 100%;
    }
    
    .cta-section p {
        text-align: center !important;
        margin: 0 auto 25px auto !important;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-buttons {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100%;
        margin: 0 auto;
    }
    
    .cta-button {
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    /* Fix scrolling issues on mobile - Services page */
    .services-page {
        overflow-x: hidden !important;
        height: auto !important;
        min-height: 100vh;
        touch-action: pan-y !important;
        position: relative !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    body {
        overflow-x: hidden !important;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch !important;
        position: relative !important;
        touch-action: pan-y !important;
        -webkit-tap-highlight-color: transparent;
    }
    
    html {
        overflow-x: hidden !important;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-y !important;
    }
    
    /* Ensure fixed header doesn't block page scroll */
    .fixed-header {
        touch-action: pan-y !important;
    }
    
    /* Only interactive elements in header should capture touch */
    .fixed-header a,
    .fixed-header button {
        touch-action: manipulation;
    }
    
    /* Everything else should allow scrolling */
    .fixed-header .company-name,
    .fixed-header .header-left:not(:has(a)):not(:has(button)) {
        touch-action: pan-y;
        pointer-events: none;
    }
    
    .benefits-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 15px auto !important;
        display: block !important;
        text-align: center !important;
        list-style: none !important;
    }
    
    .benefit-item {
        text-align: center !important;
        margin: 12px 0 !important;
        font-size: 1.1rem !important;
        width: 100% !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    /* Ensure all sections have consistent spacing - Reduced */
    .services-hero {
        padding: 30px 15px !important;
        margin: 0 auto !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .services-hero .divider-line {
        margin: 0 auto 20px auto !important;
        max-width: 90%;
        width: 100%;
    }
    
    /* Ensure article sections have consistent spacing */
    .article-section {
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    /* Fix spacing between sections - Reduced */
    .services-hero + .services-hero {
        margin-top: 0 !important;
        padding-top: 30px !important;
    }
    
    /* Ensure hero content is centered */
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        text-align: center;
        width: 100%;
    }
    
    .hero-title h1 {
        text-align: center;
        width: 100%;
    }
    
    /* Contact Page Mobile Styles */
    .contact-hero {
        padding: 50px 20px !important;
    }
    
    .contact-hero h1 {
        font-size: 2rem !important;
        margin-bottom: 20px;
    }
    
    .contact-hero p {
        font-size: 1rem !important;
    }
    
    .contact-form-container {
        padding: 20px 10px !important;
        min-height: auto !important;
    }
    
    .contact-form-container iframe {
        width: 100% !important;
        min-height: 600px !important;
    }
    
    /* FAQ Page Mobile Styles */
    .faq-section {
        padding: 40px 15px !important;
    }
    
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 15px 20px !important;
        flex-wrap: wrap;
    }
    
    .faq-question h2 {
        font-size: 1.1rem !important;
        flex: 1 1 auto;
        min-width: 80%;
        margin-right: 10px;
    }
    
    .faq-toggle {
        width: 32px !important;
        height: 32px !important;
        font-size: 18px !important;
        flex-shrink: 0;
    }
    
    .faq-answer {
        padding: 0 20px !important;
    }
    
    .faq-answer.active {
        padding: 0 20px 15px 20px !important;
    }
    
    .faq-answer p {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }
    
    .cta-section {
        padding: 40px 20px !important;
    }
    
    .cta-section h2 {
        font-size: 1.8rem !important;
    }
    
    .cta-section p {
        font-size: 1rem !important;
    }
    
    /* General Mobile Text Optimizations */
    h1, h2, h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Ensure all images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure all containers don't overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Devices */
    .about-hero,
    .contact-hero,
    .faq-hero {
        padding: 40px 15px !important;
    }
    
    .about-hero h1,
    .contact-hero h1,
    .faq-hero h1 {
        font-size: 1.5rem !important;
    }
    
    .about-hero p,
    .contact-hero p {
        font-size: 0.9rem !important;
    }
    
    .about-hero-logo {
        max-width: 150px !important;
    }
    
    .land-carousel-slide {
        height: 250px !important;
    }
    
    .land-carousel-arrow {
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
    }
    
    .services-hero {
        padding: 30px 15px !important;
    }
    
    .article-section {
        padding: 0 !important;
        gap: 20px !important;
    }
    
    .article-title,
    .article-title-section h2 {
        font-size: 1.5rem !important;
        text-align: center !important;
    }
    
    .article-image {
        max-height: 200px !important;
    }
    
    .content-card {
        padding: 20px 15px !important;
    }
    
    .carousel-slide-vertical {
        padding: 25px 15px !important;
    }
    
    .carousel-slide-vertical h4 {
        font-size: 1.3rem !important;
    }
    
    .carousel-slide-vertical p {
        font-size: 1rem !important;
    }
    
    .hero-title h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .contact-form-container {
        padding: 15px 8px !important;
    }
    
    .contact-form-container iframe {
        min-height: 500px !important;
    }
    
    .faq-section {
        padding: 30px 10px !important;
    }
    
    .faq-question {
        padding: 12px 15px !important;
    }
    
    .faq-question h2 {
        font-size: 1rem !important;
    }
    
    .faq-answer p {
        font-size: 0.9rem !important;
    }
    
    .cta-section {
        padding: 30px 15px !important;
    }
    
    .cta-section h2 {
        font-size: 1.5rem !important;
    }
    
    .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    /* Ensure proper spacing on all pages */
    .about-page,
    .contact-page,
    .services-page,
    .faq-page {
        padding-top: 70px !important;
    }
    
    /* Fix any potential overflow issues */
    .services-hero,
    .about-hero,
    .contact-hero,
    .faq-hero {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Ensure article sections stack properly */
    .article-section {
        width: 100%;
        max-width: 100%;
    }
    
    /* Make sure dividers are visible */
    .divider-line {
        margin: 20px 0;
    }
    
    /* About Page Additional Mobile Styles */
    .about-section {
        padding: 40px 20px !important;
    }
    
    .about-section h2 {
        font-size: 1.8rem !important;
        margin-bottom: 20px;
    }
    
    .about-section h3 {
        font-size: 1.4rem !important;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .about-section p {
        font-size: 1rem !important;
        line-height: 1.6;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 30px;
    }
    
    .why-choose-grid {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
        align-items: center;
    }
    
    .why-choose-grid .feature-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        height: auto !important;
        min-height: 200px;
    }
    
    .feature-card {
        padding: 20px !important;
    }
    
    .feature-card h4 {
        font-size: 1.1rem !important;
    }
    
    .feature-card p {
        font-size: 0.95rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        margin: 40px 0;
    }
    
    .stat-card {
        padding: 20px !important;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem !important;
    }
    
    .stat-card .stat-text {
        font-size: 0.9rem !important;
    }
    
    .expertise-list {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .expertise-item {
        padding: 15px !important;
    }
    
    .expertise-item h4 {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    /* About Page Extra Small */
    .about-section {
        padding: 30px 15px !important;
    }
    
    .about-section h2 {
        font-size: 1.5rem !important;
    }
    
    .about-section h3 {
        font-size: 1.2rem !important;
    }
    
    .about-section p {
        font-size: 0.9rem !important;
    }
    
    .feature-card {
        padding: 15px !important;
    }
    
    .stat-card .stat-number {
        font-size: 2rem !important;
    }
    
    .why-choose-grid .feature-card {
        min-height: 180px;
    }
    
    /* Services Page - Ensure all article images are responsive */
    .article-image-section img,
    .article-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }
    
    /* Ensure all buttons and links are touch-friendly */
    a, button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Ensure proper text wrapping */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Prevent horizontal scrolling */
    body, html {
        overflow-x: hidden;
        max-width: 100vw;
    }
}

/* Final Mobile Check - Ensure everything is optimized */
@media (max-width: 768px) {
    /* Force all fixed/absolute positioned elements to respect viewport */
    .fixed-header,
    .hamburger-menu {
        max-width: 100vw;
    }
    
    /* Ensure all containers are properly sized */
    .laptop-container,
    .carousel-section,
    .text-section,
    .about-page,
    .contact-page,
    .services-page,
    .faq-page {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Ensure all images don't overflow */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure proper text sizing */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* Additional mobile optimizations */
@media (max-width: 360px) {
    /* Extra small devices */
    .main-headline {
        font-size: 1.5rem;
    }
    
    .carousel-btn {
        padding: 10px 16px;
        font-size: 11px;
        width: 100%;
    }
    
    .carousel-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .company-name {
        display: none;
    }
    
    .large-text {
        font-size: 1.3rem;
    }
    
    .get-offer-btn {
        font-size: 14px;
        padding: 12px 25px;
    }
}

