/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-text);
    background: var(--background);
    overflow-x: hidden;
}

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

/* Dark Theme Color Scheme */
:root {
    --background: #f8f9fa;
    --primary-text: #333333;
    --subtext: #666666;
    --cta-button-bg: #1C1C1E;
    --pill-bg: #2E2E33;
    --accent-gold: #D4AF37;
    --accent-copper: #B87333;
    --white: #FFFFFF;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --gradient-primary: linear-gradient(135deg, var(--accent-gold), var(--accent-copper));
    --gradient-dark: linear-gradient(135deg, var(--background), #1A1A1A);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
}



/* Hero Section */
.hero {
    min-height: 80vh;
    background: #000000;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Top Left Title Container */
.top-left-title-container {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    z-index: 10;
}

/* Top Left Logo */
.top-left-logo {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
    background: #000;
    padding: 0.25rem;
    border-radius: 0.25rem;
}

/* Top Left Title */
.top-left-title {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

/* Hero Navigation Overlay */
.hero-nav {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.nav-overlay {
    display: flex;
    gap: 2rem;
    padding: 1rem 4rem;
    min-width: 600px;
}

.nav-overlay a {
    color: white;
    text-decoration: none;
    font-weight: 200;
    font-size: 1.2rem;
}



.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    min-height: 80vh;
}

/* Left Side Content */
.hero-content {
    /* Animation removed to prevent jerk action */
}



.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 6rem;
    font-family: 'Inter', sans-serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--cream);
    display: block;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #e5e5e5;
    color: #000;
    box-shadow: none;
    position: relative;
    padding-right: 3rem;
    transition: all 0.3s ease;
    overflow: hidden;
    font-size: 0.9rem;
    font-weight: 200;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: right 0.5s ease;
    z-index: 1;
}

.btn-primary::after {
    content: '→';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    line-height: 1;
}

.btn-primary span {
    position: relative;
    z-index: 2;
}

.btn-primary:hover::before {
    right: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: #fff;
}

.btn-primary:hover::after {
    transform: translateY(-50%) rotate(0deg) translateX(5px);
    color: #fff;
    background: #000;
}

/* Hero CTA button specific styling */
.hero-cta {
    background: #333 !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    font-weight: 200 !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

.hero-cta::after {
    content: '→';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000 !important;
    text-align: center;
    line-height: 1;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: right 0.5s ease;
    z-index: 1;
    border: none;
    outline: none;
}

.hero-cta:hover::before {
    right: 0;
}

.hero-cta:hover {
    color: #000 !important;
    border: none !important;
    outline: none !important;
}

.hero-cta:hover::after {
    transform: translateY(-50%) rotate(0deg) translateX(5px);
    background: #fff !important;
    color: #000 !important;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-text);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

/* Right Side - Image with Overlays */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-content {
    width: 100%;
    max-width: 700px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    margin-top: 1rem;
}



/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--subtext);
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--background);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--pill-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-gold);
}

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

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--subtext);
    line-height: 1.6;
}

/* Location Cards */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    background: var(--pill-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-gold);
}

.location-image {
    margin-bottom: 1.5rem;
}

.location-image .image-placeholder {
    width: 200px;
    height: 150px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--accent-gold);
    font-size: 3rem;
    transition: all 0.3s ease;
}

.location-card:hover .location-image .image-placeholder {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.location-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.location-card p {
    color: var(--subtext);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--background);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--pill-bg);
    transform: translateX(10px);
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item h3 i {
    color: var(--accent-gold);
}

.feature-item p {
    color: var(--subtext);
    line-height: 1.6;
}

.features-image .image-placeholder {
    width: 100%;
    height: 400px;
    font-size: 3rem;
}







/* Technology Section */
.technology {
    padding: 6rem 0;
    background: var(--background);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: var(--pill-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-gold);
}

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

.tech-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.tech-card p {
    color: var(--subtext);
    line-height: 1.6;
}



/* Technology Number Animation */
.tech-number {
    color: var(--primary-gold);
    font-weight: 700;
}

/* About Us Section */
.about {
    background: #f8f9fa;
    padding: 6rem 0;
}

.about-label {
    display: inline-block;
    background: #333333;
    color: #FFFFFF;
    padding: 0.15rem 0.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    margin-bottom: 0.5rem;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.7);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-left h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #000;
    margin-top: 0.25rem;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
    text-transform: lowercase;
}

.about-right p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* Services Section */
.services {
    background: #f8f9fa;
    padding: 3rem 0;
}

/* Smart Ops Section */
.smart-ops {
    background: #f8f9fa;
    padding: 3rem 0;
}

.smart-ops-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.smart-ops-header {
    text-align: center;
    margin-bottom: 4rem;
}

.smart-ops-label {
    display: inline-block;
    background: #333333;
    color: #FFFFFF;
    padding: 0.15rem 0.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    margin-bottom: 0.5rem;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.7);
}

.smart-ops-header h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #000;
    margin-top: 0.25rem;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
    text-transform: lowercase;
}

.smart-ops-header p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    margin: 1rem auto 0;
}

.smart-ops-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.smart-ops-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.smart-ops-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.smart-ops-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* Smart Ops Image Section */
.smart-ops-image-section {
    margin-top: 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smart-ops-main-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Checkout Process Section */
.checkout-process {
    margin-top: 5rem;
    text-align: center;
    position: relative;
    overflow: visible;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

/* FAQs Section */
.faqs {
    background: #f8f9fa;
    padding: 3rem 0;
}

.faqs-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.faqs-left {
    padding-right: 2rem;
}

.faqs-label {
    display: inline-block;
    background: #333333;
    color: #FFFFFF;
    padding: 0.15rem 0.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 200;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    margin-bottom: 0.5rem;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.7);
}

.faqs-left h2 {
    font-size: 3.5rem;
    font-weight: 200;
    color: #000;
    margin-top: 0.25rem;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
    text-transform: lowercase;
    margin-bottom: 1rem;
}

.faqs-left p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    font-weight: 200;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2rem;
}

.faqs-cta {
    margin-top: 2rem;
}

.faqs-right {
    padding-left: 1rem;
}

.faqs-menu {
    width: 100%;
}

.faq-item {
    background: #f0f0f0;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f0f0f0;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 200;
    color: #000;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #666;
    font-weight: 200;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    color: #000;
}

.faq-item.active .faq-header {
    background: #F0F0F0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    background: #f0f0f0;
    opacity: 0;
    padding: 0 1.5rem;
}

.faq-item.active .faq-content {
    max-height: 1000px;
    opacity: 1;
    padding: 0 1.5rem 1.5rem;
}

.faq-content p {
    padding: 0 0 1.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-weight: 200;
    font-family: 'Inter', sans-serif;
}

/* Responsive Design for FAQs */
@media (max-width: 768px) {
    .faqs-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .faqs-left {
        padding-right: 0;
        text-align: center;
    }
    
    .faqs-left h2 {
        font-size: 2.5rem;
        font-weight: 200;
    }
    
    .faqs-right {
        padding-left: 0;
    }
    
    .faq-header h3 {
        font-size: 1rem;
        font-weight: 200;
    }
}

@media (max-width: 480px) {
    .faqs-left h2 {
        font-size: 2rem;
        font-weight: 200;
    }
    
    .faq-header {
        padding: 1rem;
    }
    
    .faq-content p {
        padding: 0 1rem 1rem;
        font-weight: 200;
    }
}

.process-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.panning-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: panImage 20s linear infinite;
    opacity: 0.1;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes panImage {
    0% {
        transform: translateX(-5%);
    }
    100% {
        transform: translateX(-15%);
    }
}

.checkout-process h3 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    padding: 1rem 0;
}

.process-step {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    max-width: 250px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #333333;
    color: #FFFFFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.step-icon {
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.step-icon i {
    font-size: 2.5rem;
    color: #333333;
    opacity: 0.8;
}

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.process-step p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.process-arrow {
    color: #333333;
    opacity: 0.6;
    font-size: 1.5rem;
    margin: 0 1rem;
}

.process-arrow i {
    font-size: 1.8rem;
}

/* Responsive design for process steps */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .process-step {
        min-width: 250px;
        max-width: none;
        flex: none;
    }
    
    .process-background {
        max-width: 100%;
        margin: 0 2rem;
        left: 0;
        transform: none;
    }
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-label {
    display: inline-block;
    background: #333333;
    color: #FFFFFF;
    padding: 0.15rem 0.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    margin-bottom: 0.5rem;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.7);
}

.services-header h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #000;
    margin-top: 0.25rem;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
    text-transform: lowercase;
}

.services-header p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    margin: 1rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.services-image {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.services-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    background: transparent;
    border-radius: 0;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 1px solid #000;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    transform: translateY(-2px);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    background: transparent;
    transition: all 0.3s ease;
    width: 100%;
}

.menu-header h3 {
    font-size: 1.3rem;
    font-weight: 200;
    color: #000;
    margin: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-header h3 i {
    font-size: 1.1rem;
    color: #000;
    font-weight: 100;
    opacity: 0.8;
    transform: scale(0.9);
}

.toggle-icon {
    font-size: 1.5rem;
    color: #666;
    font-weight: 300;
    transition: transform 0.3s ease;
    margin-left: auto;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}

.menu-item.active .toggle-icon {
    transform: rotate(45deg);
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

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

.menu-content p {
    padding: 0 0 2rem 0;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 200;
}

/* Statistics Section */
.stats {
    background: #f8f9fa;
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.stat-card {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #000;
    line-height: 1.4;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* Gallery Section */
.gallery {
    background: #f8f9fa;
    padding: 4rem 0;
}

.gallery-carousel {
    display: flex;
    overflow: hidden;
    gap: 2rem;
    padding: 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}



.gallery-carousel-content {
    display: flex;
    gap: 2rem;
    animation: scroll 20s linear infinite;
    padding-left: 2rem;
}



@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

.gallery-image {
    min-width: 400px;
    width: 400px;
    height: 400px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
    background: transparent;
}

.gallery-image:hover {
    transform: scale(1.02);
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background: #000000;
    border-radius: 20px;
    margin: 1rem 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding: 2rem;
}

/* Left Column - Contact Information */
.contact-info {
    color: #fff;
}

.contact-label {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 200;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.contact-info p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 200;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.contact-label-text {
    font-weight: 200;
    color: #fff;
}

.contact-value {
    color: #fff;
    font-weight: 200;
}

/* Social Section */
.social-section {
    margin-top: 2rem;
}

.social-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.social-label {
    color: #fff;
    font-weight: 200;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
}

.social-icon:hover {
    color: #fff;
}

/* Right Column - Contact Form */
.contact-form {
    background: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 200;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.form-group label::after {
    content: '*';
    color: #ff4444;
    margin-left: 0.25rem;
}

.form-group label[for="phone"]::after {
    content: '';
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f0f0f0;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    font-family: 'Sans Serif', sans-serif;
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
    background: #fff;
    box-shadow: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-submit {
    width: 100%;
    background: #333;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 200;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.contact-submit:hover {
    background: #555;
}

/* Remove arrow from contact submit button */
.contact-submit::after {
    display: none !important;
}

.contact-submit::before {
    display: none !important;
}

/* Form validation styles */
.form-group input.error,
.form-group textarea.error {
    border-color: #ff4444;
    background: #fff5f5;
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

/* Error notification styles */
.notification-error {
    background: #ff4444 !important;
}

/* Success message styles */
.success-message {
    text-align: center;
    padding: 2rem;
    color: #333;
}

.success-icon {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 1.5rem;
}

.success-message h3 {
    font-size: 1.8rem;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.success-message p {
    font-size: 1.1rem;
    font-weight: 200;
    color: #666;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000000;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
    border-radius: 20px;
    margin: 1rem 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Title Container */
.footer-title-container {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Footer Logo */
.footer-logo {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    background: #000;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transform: translateY(0.2rem);
}

.footer-section h3,
.footer-section h4 {
    color: #FFFFFF;
    margin-bottom: 0;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-0.3rem);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 200;
    font-family: 'Inter', sans-serif;
}

.footer-section ul li a:hover {
    color: #FFFFFF;
    opacity: 0.8;
}

.footer-section p {
    color: #FFFFFF;
    line-height: 1.6;
    font-weight: 200;
    font-family: 'Inter', sans-serif;
}

/* Right-align the Quick Links section */
.footer-section:last-child {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Quick Links specific styling */
.footer-section:last-child h4 {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    position: relative;
    align-self: flex-start;
}

.footer-section:last-child h4::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    width: 20px;
    height: 1px;
    background: #FFFFFF;
    opacity: 1;
}

/* Modern two-column layout for Quick Links */
.footer-section:last-child ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 0.8rem;
    text-align: left;
    justify-items: start;
    width: 100%;
}

.footer-section:last-child ul li {
    margin-bottom: 0.4rem;
    position: relative;
}

.footer-section:last-child ul li a {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.2rem 0;
}

.footer-section:last-child ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: #FFFFFF;
    transition: width 0.3s ease;
}

.footer-section:last-child ul li a:hover::before {
    width: 100%;
}

.footer-section:last-child ul li a:hover {
    opacity: 1;
    transform: translateX(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: #FFFFFF;
    font-weight: 200;
    font-family: 'Inter', sans-serif;
}

/* Animations removed */

/* Responsive Design */
/* Ensure touch-friendly interactions on mobile */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .nav-overlay a:hover {
        color: white;
    }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        margin: 1rem 2rem;
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
        text-align: center;
    }
    
    .footer-section:last-child {
        text-align: center;
        align-items: center;
    }
    
    .footer-section:last-child h4 {
        align-self: center;
    }
    
    .footer-section:last-child ul {
        text-align: center;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 0.8rem;
        justify-items: center;
    }
    
    .footer-section:last-child h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-title-container {
        justify-content: center;
        gap: 0.75rem;
        align-items: baseline;
    }
    
    .footer-logo {
        height: 2.5rem;
        transform: translateY(0.15rem);
    }
    
    .footer-section h3 {
        font-size: 2.5rem;
        transform: translateY(-0.2rem);
    }
    
    .footer-section:last-child ul li a:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 480px) {
    .footer {
        margin: 1rem 1rem;
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        padding: 0.5rem;
        gap: 1.5rem;
    }
    
    .footer-title-container {
        gap: 0.5rem;
        align-items: baseline;
    }
    
    .footer-logo {
        height: 2rem;
        transform: translateY(0.1rem);
    }
    
    .footer-section h3 {
        font-size: 2rem;
        transform: translateY(-0.15rem);
    }
}

/* Ultra Large Desktop (49" monitors, ultrawide) */
@media (min-width: 2000px) {
    .hero-container {
        max-width: 2000px;
        gap: 6rem;
        padding: 0 4rem;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-image-content {
        max-width: 900px;
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
    
    .container {
        max-width: 1800px;
        padding: 0 4rem;
    }
    
    .about-content {
        max-width: 1400px;
        gap: 5rem;
    }
    
    .about-left h2 {
        font-size: 4.5rem;
    }
    
    .about-right p {
        font-size: 1.3rem;
    }
    
    .stats-grid {
        max-width: 1600px;
        gap: 4rem;
    }
    
    .stat-number {
        font-size: 4rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
}

/* Large Desktop */
@media (min-width: 1400px) and (max-width: 1999px) {
    .hero-container {
        max-width: 1600px;
        gap: 5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-image-content {
        max-width: 800px;
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
    
    .container {
        max-width: 1400px;
    }
}

/* Medium Desktop */
@media (max-width: 1399px) and (min-width: 1200px) {
    .hero-container {
        max-width: 1200px;
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-image-content {
        max-width: 700px;
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
}

/* Small Desktop */
@media (max-width: 1199px) and (min-width: 1024px) {
    .hero-container {
        gap: 3rem;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image-content {
        max-width: 600px;
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 769px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 30px;
    }
    
    .hero-nav {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-top: 0;
    }
    
    .hero-image-content {
        width: 100%;
        max-width: 600px;
        height: auto;
        aspect-ratio: 1/1;
        margin: 0 auto;
    }
    
    .hero-nav {
        margin-bottom: 0;
    }
    
    .nav-overlay {
        gap: 1.5rem;
        padding: 1rem 3rem;
        flex-wrap: nowrap;
        justify-content: center;
        min-width: 600px;
    }
    
    .nav-overlay a {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .about-content {
        max-width: 900px;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    
    .gallery-carousel {
        gap: 1.5rem;
        padding: 1.5rem 2rem;
        max-width: 100%;
    }
    
    .gallery-carousel-content {
        gap: 1.5rem;
        animation: scroll 15s linear infinite;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .top-left-title-container {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .top-left-logo {
        height: 2rem;
    }
    
    .top-left-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 0;
    }
    
    .hero-image-content {
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 1/1;
        margin: 0 auto;
    }
    
    .hero-nav {
        margin-bottom: 0;
    }
    
    .nav-overlay {
        gap: 1rem;
        padding: 0.8rem 2rem;
        flex-wrap: nowrap;
        justify-content: center;
        min-width: 500px;
    }
    
    .nav-overlay a {
        font-size: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .top-left-title-container {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .top-left-logo {
        height: 2rem;
    }
    
    .top-left-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 2rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-image {
        height: 30vh;
    }
    
    .services-header h2 {
        font-size: 2.5rem;
    }
    
    .about-left {
        align-items: center;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery-image {
        min-width: 350px;
        width: 350px;
        height: 350px;
        border-radius: 0;
        background: transparent;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .top-left-title-container {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image-content {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1/1;
    }
    
    .hero-nav {
        margin-bottom: 0;
    }
    
    .nav-overlay {
        gap: 0.8rem;
        padding: 0.6rem 1.5rem;
        flex-wrap: nowrap;
        min-width: 400px;
    }
    
    .nav-overlay a {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .top-left-title-container {
        display: none;
    }
    
    .about-left h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .gallery-image {
        min-width: 300px;
        width: 300px;
        height: 300px;
        border-radius: 0;
        background: transparent;
    }
    
    .container {
        padding: 0 15px;
    }
}

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

/* Viewport-based scaling for ultrawide monitors */
@media (min-width: 2000px) {
    html {
        font-size: 18px; /* Scale up base font size for large screens */
    }
}

@media (min-width: 2500px) {
    html {
        font-size: 20px; /* Even larger scaling for very wide screens */
    }
}

/* Additional responsive improvements */

/* Ultrawide and large monitor optimizations */
@media (min-width: 2000px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        max-width: 1800px;
        margin: 0 auto;
    }
    
    .location-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        max-width: 1800px;
        margin: 0 auto;
    }
    

    
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        max-width: 1800px;
        margin: 0 auto;
    }
    
    .section-header h2 {
        font-size: 3.5rem;
    }
    
    .section-header p {
        font-size: 1.3rem;
    }
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    

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

/* Bottom-up animation for hero title, subtitle and button */
.hero-title {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.75s forwards;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Browser Validation Message Styles */
.form-group {
    position: relative;
    margin-bottom: 1rem;
}

/* Custom styling for browser validation messages - only show after user interaction */
.form-group input:not(:placeholder-shown):invalid,
.form-group textarea:not(:placeholder-shown):invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group input:not(:placeholder-shown):valid,
.form-group textarea:not(:placeholder-shown):valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Override browser validation message styling - only show after user interaction */
.form-group input:not(:placeholder-shown):invalid:focus,
.form-group textarea:not(:placeholder-shown):invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group input:not(:placeholder-shown):valid:focus,
.form-group textarea:not(:placeholder-shown):valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
} 

/* Mobile Navigation Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    font-family: 'Inter', sans-serif;
}

.mobile-nav-logo {
    height: 2rem;
    width: auto;
    object-fit: contain;
    background: #000;
    padding: 0.25rem;
    border-radius: 0.25rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

.nav-menu {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
}

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

.nav-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-menu a {
    display: block;
    padding: 1.2rem 1.5rem;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.nav-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
}

/* Show mobile nav on mobile devices */
@media (max-width: 768px) {
    .mobile-nav {
        display: block;
    }
    
    /* Hide desktop navigation on mobile */
    .hero-nav {
        display: none;
    }
    
    /* Adjust hero section for mobile nav */
    .hero {
        padding-top: 80px;
    }
    
    .top-left-title-container {
        display: none;
    }
}

/* Mobile Responsive Fixes - Comprehensive Optimization */

/* Smart Ops Section Mobile Fixes */
@media (max-width: 768px) {
    .smart-ops {
        padding: 2rem 0;
    }
    
    .smart-ops-content {
        padding: 0 1rem;
    }
    
    .smart-ops-header h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .smart-ops-header p {
        font-size: 1rem;
        margin: 1rem auto 0;
    }
    
    .smart-ops-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .smart-ops-card {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .smart-ops-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .smart-ops-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .smart-ops-image-section {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .smart-ops-main-image {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .smart-ops-header h2 {
        font-size: 2rem;
    }
    
    .smart-ops-cards {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .smart-ops-card {
        padding: 1.2rem;
    }
    
    .smart-ops-card h3 {
        font-size: 1.1rem;
    }
    
    .smart-ops-card p {
        font-size: 0.9rem;
    }
}

/* Hero Section Mobile Fixes */
@media (max-width: 768px) {
    .hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-image-content {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Process Steps Mobile Fixes */
@media (max-width: 768px) {
    .checkout-process {
        margin-top: 3rem;
        padding: 1rem;
    }
    
    .checkout-process h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .process-step {
        width: 100%;
        max-width: 300px;
        min-width: auto;
        padding: 1.5rem 1rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .process-arrow i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .checkout-process h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .process-step {
        padding: 1.2rem 0.8rem;
        max-width: 280px;
    }
    
    .process-step h4 {
        font-size: 1.1rem;
    }
    
    .process-step p {
        font-size: 0.85rem;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
}

/* General Mobile Layout Improvements */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .benefits-grid,
    .location-grid,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card,
    .location-card,
    .tech-card {
        padding: 1.5rem;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-left h2 {
        font-size: 2.5rem;
    }
    
    .about-right p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .services-image {
        height: 25vh;
        width: 100%;
        max-width: 100%;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .services-menu {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
        margin-bottom: 2rem;
    }
    
    .menu-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        margin-bottom: 1rem;
        border-radius: 8px;
        background: #f8f9fa;
        transition: all 0.3s ease;
    }
    
    .menu-item:hover {
        background: #e9ecef;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .menu-header {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 1.5rem;
        overflow: hidden;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .menu-header h3 {
        font-size: 1.1rem;
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding-right: 1rem;
        max-width: calc(100% - 2rem);
        font-weight: 500;
        color: #333;
    }
    
    .menu-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .menu-content p {
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        line-height: 1.6;
        color: #666;
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .gallery-carousel {
        padding: 1rem;
    }
    
    .gallery-image {
        min-width: 280px;
        width: 280px;
        height: 280px;
    }
    
    .contact {
        margin: 1rem 1rem 2rem 1rem;
        border-radius: 15px;
        padding: 2rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .footer {
        margin: 1rem 1rem 2rem 1rem;
        border-radius: 15px;
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .benefit-card,
    .location-card,
    .tech-card {
        padding: 1.2rem;
    }
    
    .about-left h2 {
        font-size: 2rem;
    }
    
    .about-right p {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-menu {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin-bottom: 1.5rem;
    }
    
    .menu-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-bottom: 0.8rem;
        border-radius: 6px;
    }
    
    .menu-header {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 1.2rem;
        border-radius: 6px;
    }
    
    .menu-header h3 {
        font-size: 1rem;
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding-right: 0.8rem;
        font-weight: 500;
    }
    
    .menu-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 1.2rem 1.2rem 1.2rem;
    }
    
    .menu-content p {
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .gallery-image {
        min-width: 250px;
        width: 250px;
        height: 250px;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-menu a,
    .faq-item,
    .menu-item {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu a {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-header,
    .menu-header {
        min-height: 44px;
        padding: 1rem 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Landscape orientation fixes for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
    }
    
    .hero-container {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .smart-ops-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .process-step {
        max-width: 200px;
        min-width: 180px;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image-content,
    .smart-ops-main-image,
    .gallery-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Safe area insets for modern mobile devices */
@supports (padding: max(0px)) {
    .container {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    
    .hero-container {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    
    .contact,
    .footer {
        margin-left: max(1rem, env(safe-area-inset-left));
        margin-right: max(1rem, env(safe-area-inset-right));
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    .gallery-carousel-content {
        animation-duration: 25s; /* Slower animation for better performance */
    }
    
    .panning-image {
        animation-duration: 30s;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    .btn:focus,
    .nav-menu a:focus,
    .faq-item:focus,
    .menu-item:focus,
    .hamburger:focus {
        outline: 2px solid #D4AF37;
        outline-offset: 2px;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: 2px solid #D4AF37;
        outline-offset: 2px;
    }
} 

/* Additional Mobile Optimizations for Very Small Screens */
@media (max-width: 375px) {
    .smart-ops-cards {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .smart-ops-card {
        padding: 1rem;
    }
    
    .smart-ops-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .smart-ops-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .smart-ops-header h2 {
        font-size: 1.8rem;
    }
    
    .smart-ops-header p {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .mobile-nav-container {
        padding: 0.8rem 1rem;
    }
    
    .mobile-nav-brand {
        font-size: 1rem;
    }
    
    .mobile-nav-logo {
        height: 1.5rem;
    }
    
    .nav-menu a {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .process-step {
        padding: 1rem 0.6rem;
        max-width: 260px;
    }
    
    .process-step h4 {
        font-size: 1rem;
    }
    
    .process-step p {
        font-size: 0.8rem;
    }
    
    .step-icon i {
        font-size: 1.8rem;
    }
}

/* iPhone SE and similar small devices */
@media (max-width: 320px) {
    .smart-ops-cards {
        gap: 0.6rem;
    }
    
    .smart-ops-card {
        padding: 0.8rem;
    }
    
    .smart-ops-card h3 {
        font-size: 0.9rem;
    }
    
    .smart-ops-card p {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 0.6rem;
    }
    
    .hero-container {
        padding: 0 0.6rem;
    }
    
    .process-step {
        max-width: 240px;
        padding: 0.8rem 0.5rem;
    }
    
    .process-step h4 {
        font-size: 0.9rem;
    }
    
    .process-step p {
        font-size: 0.75rem;
    }
}

/* Ensure proper spacing and layout for all mobile devices */
@media (max-width: 768px) {
    .smart-ops {
        overflow: hidden;
    }
    
    .smart-ops-content {
        overflow: hidden;
    }
    
    .smart-ops-cards {
        overflow: visible;
    }
    
    .smart-ops-card {
        overflow: hidden;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .smart-ops-card h3 {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .smart-ops-card p {
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Prevent horizontal scrolling on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero,
    .about,
    .gallery,
    .stats,
    .services,
    .smart-ops,
    .faqs,
    .contact,
    .footer {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .container,
    .hero-container,
    .about-content,
    .services-content,
    .smart-ops-content,
    .faqs-content,
    .contact-content,
    .footer-content {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Ensure images don't overflow on mobile */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
    
    .hero-image-content,
    .smart-ops-main-image,
    .gallery-image,
    .services-img {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* Fix for iOS Safari specific issues */
@supports (-webkit-touch-callout: none) {
    .mobile-nav {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .nav-menu {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .hamburger span {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* Fix for Android Chrome specific issues */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .mobile-nav {
        will-change: transform;
    }
    
    .nav-menu {
        will-change: transform;
    }
}

/* Contact and Footer Mobile Optimizations */
@media (max-width: 768px) {
    .contact {
        margin: 0.5rem;
        border-radius: 15px;
        padding: 2rem 0;
        overflow: hidden;
        width: calc(100% - 1rem);
        box-sizing: border-box;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-details {
        gap: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-label-text {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .contact-submit {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .footer {
        margin: 0.5rem;
        border-radius: 15px;
        padding: 2rem 0 1rem 0;
        overflow: hidden;
        width: calc(100% - 1rem);
        box-sizing: border-box;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .footer-section:last-child ul {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem 1rem;
        justify-items: center;
    }
    
    .footer-section:last-child ul li a {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
    
    .footer-bottom {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact {
        margin: 0.3rem;
        padding: 1.5rem 0;
        width: calc(100% - 0.6rem);
    }
    
    .contact-content {
        gap: 1.5rem;
        padding: 0.8rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .contact-details {
        gap: 1rem;
    }
    
    .contact-item {
        gap: 0.3rem;
    }
    
    .contact-label-text {
        font-size: 0.8rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .contact-submit {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .footer {
        margin: 0.3rem;
        padding: 1.5rem 0 1rem 0;
        width: calc(100% - 0.6rem);
    }
    
    .footer-content {
        gap: 1.5rem;
        padding: 0.8rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .footer-section:last-child ul {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .footer-section:last-child ul li a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    .contact {
        margin: 0.2rem;
        padding: 1.2rem 0;
        width: calc(100% - 0.4rem);
    }
    
    .contact-content {
        gap: 1.2rem;
        padding: 0.6rem;
    }
    
    .contact-info h2 {
        font-size: 1.6rem;
    }
    
    .contact-info p {
        font-size: 0.85rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
    }
    
    .contact-submit {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .footer {
        margin: 0.2rem;
        padding: 1.2rem 0 0.8rem 0;
        width: calc(100% - 0.4rem);
    }
    
    .footer-content {
        gap: 1.2rem;
        padding: 0.6rem;
    }
    
    .footer-title-container {
        gap: 0.4rem;
        align-items: baseline;
    }
    
    .footer-logo {
        height: 1.5rem;
        transform: translateY(0.08rem);
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        transform: translateY(-0.1rem);
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
}

/* Additional Mobile Overflow Prevention */
@media (max-width: 768px) {
    .contact .container,
    .footer .container {
        padding: 0 0.5rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .contact-content,
    .footer-content {
        max-width: 100%;
        overflow: hidden;
    }
    
    .contact-info,
    .contact-form {
        max-width: 100%;
        overflow: hidden;
    }
    
    .contact-details {
        max-width: 100%;
        overflow: hidden;
    }
    
    .contact-item {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-value {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .form-group input,
    .form-group textarea {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-section {
        max-width: 100%;
        overflow: hidden;
    }
    
    .footer-section ul {
        max-width: 100%;
        overflow: hidden;
    }
    
    .footer-section ul li a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .contact .container,
    .footer .container {
        padding: 0 0.3rem;
    }
    
    .contact-content,
    .footer-content {
        padding: 0 0.3rem;
    }
}

@media (max-width: 375px) {
    .contact .container,
    .footer .container {
        padding: 0 0.2rem;
    }
    
    .contact-content,
    .footer-content {
        padding: 0 0.2rem;
    }
}

/* Enhanced Mobile FAQ Experience */
@media (max-width: 768px) {
    .faqs {
        padding: 2rem 0;
    }
    
    .faqs-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .faqs-left {
        padding-right: 0;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .faqs-left h2 {
        font-size: 2.5rem;
        font-weight: 200;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .faqs-left p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .faqs-cta {
        margin-top: 1.5rem;
    }
    
    .faqs-right {
        padding-left: 0;
        width: 100%;
    }
    
    .faqs-menu {
        width: 100%;
    }
    
    .faq-item {
        margin-bottom: 1rem;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .faq-header {
        padding: 1.2rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .faq-header h3 {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.4;
        margin: 0;
        flex: 1;
        padding-right: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .toggle-icon {
        font-size: 1.3rem;
        color: #666;
        font-weight: 200;
        transition: transform 0.3s ease;
        min-width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
        background: #f8f9fa;
        opacity: 0;
        padding: 0 1.2rem;
    }
    
    .faq-item.active .faq-content {
        max-height: 2000px; /* Much higher for mobile to prevent cutoff */
        opacity: 1;
        padding: 0 1.2rem 1.2rem;
    }
    
    .faq-content p {
        padding: 0 0 1rem 0;
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.6;
        font-weight: 300;
        color: #333;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .faqs {
        padding: 1.5rem 0;
    }
    
    .faqs-content {
        padding: 0 0.8rem;
        gap: 1.5rem;
    }
    
    .faqs-left h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .faqs-left p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .faq-item {
        margin-bottom: 0.8rem;
        border-radius: 10px;
    }
    
    .faq-header {
        padding: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .faq-header h3 {
        font-size: 0.9rem;
        line-height: 1.3;
        margin: 0;
        flex: 1;
        padding-right: 0.8rem;
        text-align: left;
    }
    
    .toggle-icon {
        font-size: 1.2rem;
        color: #666;
        font-weight: 200;
        transition: transform 0.3s ease;
        min-width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .faq-content {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-content {
        padding: 0 1rem 1rem;
    }
    
    .faq-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 0 0 0.8rem 0;
    }
}

@media (max-width: 375px) {
    .faqs-content {
        padding: 0 0.6rem;
        gap: 1.2rem;
    }
    
    .faqs-left h2 {
        font-size: 1.8rem;
    }
    
    .faqs-left p {
        font-size: 0.85rem;
    }
    
    .faq-header {
        padding: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .faq-header h3 {
        font-size: 0.85rem;
        margin: 0;
        flex: 1;
        padding-right: 0.6rem;
        text-align: left;
    }
    
    .faq-content {
        padding: 0 0.8rem;
    }
    
    .faq-item.active .faq-content {
        padding: 0 0.8rem 0.8rem;
    }
    
    .faq-content p {
        font-size: 0.8rem;
        padding: 0 0 0.6rem 0;
    }
}

/* Touch-friendly FAQ interactions */
@media (hover: none) and (pointer: coarse) {
    .faq-item {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    .faq-header {
        min-height: 48px;
        padding: 1rem 1.2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .faq-header h3 {
        font-size: 1rem;
        line-height: 1.4;
        margin: 0;
        flex: 1;
        text-align: left;
    }
    
    .toggle-icon {
        min-width: 28px;
        height: 28px;
        font-size: 1.4rem;
    }
}

/* Smooth FAQ animations for mobile */
@media (max-width: 768px) {
    .faq-item {
        transition: all 0.3s ease;
    }
    
    .faq-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .faq-item.active {
        transform: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    
    .faq-header {
        transition: background-color 0.3s ease;
    }
    
    .faq-item.active .faq-header {
        background: #e9ecef;
    }
    
    .toggle-icon {
        transition: transform 0.3s ease, color 0.3s ease;
    }
    
    .faq-item.active .toggle-icon {
        transform: rotate(45deg);
        color: #000;
    }
}