/* CS-Lak Kft. - Main Stylesheet */
/* Premium Design - Soft Green & Beige Palette */
/* Primary: #4A7C6F (Soft Sage Green) */
/* Secondary: #D4C4A8 (Warm Beige) */
/* Background: #4A7C6F (Soft Green) */

:root {
    --primary: #4A7C6F;
    --primary-light: #5A9182;
    --primary-dark: #3A6B5E;
    --secondary: #D4C4A8;
    --secondary-light: #E5D8C2;
    --accent: #4A7C6F;
    --accent-dark: #3A6B5E;
    --white: #FFFFFF;
    --text-primary: #FAF8F5;
    --text-secondary: #D4C4A8;
    --text-light: #7A9E8E;
    --text-on-dark: #FAF8F5;
    --border-color: rgba(212, 196, 168, 0.3);
    --shadow: rgba(0, 0, 0, 0.15);
    --shadow-hover: rgba(0, 0, 0, 0.25);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --border-radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--accent);
    position: relative;
}

/* Mobile-only elements hidden on desktop */
.mobile-bottom-nav,
.floating-call-btn {
    display: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    font-weight: 300;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--primary-dark);
    box-shadow: 0 4px 16px var(--shadow);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--secondary-light);
    box-shadow: 0 6px 20px var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary);
    border: 1.5px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--primary-dark);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(45, 74, 62, 0.98);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 2px 20px var(--shadow);
    width: 100%;
    max-width: 100vw;
}

.header.scrolled {
    background-color: rgba(45, 74, 62, 0.98);
    box-shadow: 0 2px 20px var(--shadow);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    outline: none;
    border-radius: var(--border-radius);
}

.logo:focus {
    outline: none;
    box-shadow: none;
}

.logo:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 4px;
}

.logo-image {
    height: 90px;
    width: auto;
    transition: var(--transition);
}

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

.company-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.company-year {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.company-info {
    display: flex;
    align-items: center;
}

.company-name {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 1px;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
}

.company-divider {
    display: none;
}

.company-year {
    font-size: 0.4rem;
    font-weight: 400;
    color: #C9A85C;
    letter-spacing: 0.5px;
    vertical-align: super;
    margin-left: 3px;
    font-style: normal;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--secondary-light);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-on-dark);
    font-weight: 400;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link.active {
    color: var(--secondary);
    font-weight: 500;
}

.nav-cta {
    background-color: var(--secondary) !important;
    color: var(--primary-dark) !important;
    font-weight: 500;
}

.nav-cta:hover {
    background-color: var(--secondary-light) !important;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

/* Explicit: hamburger csak 1024px alatt látszik */
@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none !important;
    }
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero::after {
    display: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 750px;
    margin: 0 auto;
    z-index: 3;
    background: rgba(74, 124, 111, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(45, 75, 65, 0.2);
}

.hero-content-inner {
    padding: 50px 60px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(45, 75, 65, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title span {
    color: #D4C4A8;
    background: none;
    -webkit-text-fill-color: #D4C4A8;
}

.hero-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    text-shadow: 0 1px 6px rgba(45, 75, 65, 0.4);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 300;
}

/* Hero Fullscreen Video Background */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) brightness(0.6) saturate(0.9);
    transform: scale(1.05);
    pointer-events: none;
    transition: opacity 0.8s ease-out;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(74, 124, 111, 0.5) 0%,
        rgba(58, 107, 94, 0.3) 50%,
        rgba(45, 85, 75, 0.4) 100%
    );
    z-index: 1;
}

/* Edge vignette - green color flowing in from edges */
.hero-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    background: 
        /* Top edge */
        linear-gradient(to bottom, rgba(74, 124, 111, 0.95) 0%, transparent 25%),
        /* Bottom edge */
        linear-gradient(to top, rgba(74, 124, 111, 0.95) 0%, transparent 25%),
        /* Left edge */
        linear-gradient(to right, rgba(74, 124, 111, 0.95) 0%, transparent 20%),
        /* Right edge */
        linear-gradient(to left, rgba(74, 124, 111, 0.95) 0%, transparent 20%);
}

.hero-content, .container.hero-container > .hero-content {
    position: relative;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 2;
}

/* =====================================================
   DISABLE RESPONSIVE - KEEP DESKTOP LAYOUT EVERYWHERE
   All media queries below are commented out to maintain
   consistent desktop appearance across all devices
   ===================================================== */

/* DISABLED RESPONSIVE QUERIES
@media (min-width: 1920px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-text {
        font-size: 1.3rem;
        max-width: 600px;
    }
    
    .hero-badge {
        font-size: 1rem;
        padding: 12px 28px;
    }
    
    .hero-video-wrapper video {
        filter: blur(4px) brightness(0.85) saturate(1.15);
    }
}

/* Large screens - Desktop (1200px - 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-text {
        font-size: 1.125rem;
        max-width: 550px;
    }
}

/* Medium screens - Tablet Landscape (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
        max-width: 500px;
    }
    
    .hero-container {
        padding: 0 40px;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        min-height: 100vh;
        padding-top: 100px;
    }
    
    .hero-container {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-text {
        font-size: 1.05rem;
        max-width: 100%;
        margin: 0 auto 40px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-contact-quick {
        justify-content: center;
    }
    
    .hero-video-wrapper video {
        filter: blur(2px) brightness(0.8) saturate(1.15);
    }
    
    .decor-1, .decor-5 {
        display: none;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero {
        min-height: 100vh;
        padding-top: 90px;
        padding-bottom: 60px;
    }
    
    .hero-container {
        text-align: center;
        padding: 0 24px;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-text {
        font-size: 1rem;
        max-width: 100%;
        margin: 0 auto 35px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-contact-quick {
        justify-content: center;
    }
    
    .hero-video-wrapper video {
        filter: blur(2px) brightness(0.75) saturate(1.1);
    }
    
    .decor-circle, .decor-ring {
        display: none;
    }
    
    .decor-line {
        width: 80px !important;
    }
    
    .scroll-indicator {
        left: 50%;
        transform: translateX(-50%);
        bottom: 25px;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .hero {
        min-height: 100vh;
        min-height: 100svh; /* Small viewport height for mobile browsers */
        padding-top: 80px;
        padding-bottom: 50px;
    }
    
    .hero-container {
        text-align: center;
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 16px;
    }
    
    .hero-title span {
        display: inline;
    }
    
    .hero-text {
        font-size: 0.95rem;
        max-width: 100%;
        margin: 0 auto 30px;
        line-height: 1.6;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .hero-contact-quick {
        justify-content: center;
        margin-top: 25px;
    }
    
    .hero-phone {
        font-size: 0.95rem;
    }
    
    .hero-video-wrapper video {
        filter: blur(2px) brightness(0.7) saturate(1.1);
    }
    
    .hero-video-overlay {
        background: linear-gradient(
            180deg,
            rgba(74, 124, 111, 0.75) 0%,
            rgba(58, 107, 94, 0.6) 50%,
            rgba(45, 85, 75, 0.7) 100%
        );
    }
    
    .hero-star {
        display: none;
    }
    
    .hero-decor {
        opacity: 0.5;
    }
    
    .decor-circle, .decor-ring, .decor-line {
        display: none;
    }
    
    .scroll-indicator {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        font-size: 0.8rem;
    }
}

/* Ultra-wide screens (2560px+) */
@media (min-width: 2560px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 5.5rem;
    }
    
    .hero-text {
        font-size: 1.5rem;
        max-width: 700px;
    }
    
    .hero-badge {
        font-size: 1.1rem;
        padding: 14px 32px;
    }
    
    .hero-buttons .btn {
        padding: 18px 40px;
        font-size: 1.15rem;
    }
    
    .hero-container {
        max-width: 1600px;
    }
}
END OF DISABLED RESPONSIVE QUERIES */

/* Decorative floating elements */
.hero-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Lines - Subtle decorative elements */
.decor-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(212, 196, 168, 0.2), transparent);
    height: 1px;
}

.decor-1 {
    width: 180px;
    top: 20%;
    left: 5%;
    transform: rotate(-15deg);
    animation: linePulseSubtle 5s ease-in-out infinite;
}

.decor-2 {
    width: 120px;
    bottom: 30%;
    right: 8%;
    transform: rotate(20deg);
    animation: linePulseSubtle 6s ease-in-out infinite 1.5s;
}

/* Dots - Minimal accent points */
.decor-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 196, 168, 0.35);
    border-radius: 50%;
}

.decor-3 {
    top: 35%;
    left: 12%;
    animation: dotPulseSubtle 3s ease-in-out infinite;
}

.decor-4 {
    bottom: 28%;
    right: 15%;
    animation: dotPulseSubtle 3s ease-in-out infinite 1.5s;
}

@keyframes linePulseSubtle {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.35; }
}

@keyframes dotPulseSubtle {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.6); opacity: 0.6; }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary);
    font-size: 0.875rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator::before {
    content: '';
    width: 24px;
    height: 40px;
    border: 2px solid var(--secondary);
    border-radius: 12px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

@keyframes pulse-call {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(212, 196, 168, 0.4);
    }
    50% {
        box-shadow: 0 6px 35px rgba(212, 196, 168, 0.6);
    }
}

/* Section Base */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 10px 26px;
    background-color: var(--secondary);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.section-title {
    margin-bottom: 16px;
    color: var(--white);
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

/* About Section */
.about {
    background-color: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 300;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-content p:nth-of-type(1) { animation-delay: 0.2s; }
.about-content p:nth-of-type(2) { animation-delay: 0.4s; }
.about-content p:nth-of-type(3) { animation-delay: 0.6s; }
.about-content p:nth-of-type(4) { animation-delay: 0.8s; }
.about-content p:nth-of-type(5) { animation-delay: 1s; }
.about-content p:nth-of-type(6) { animation-delay: 1.2s; }

.about .section-badge {
    padding: 12px 32px;
    font-size: 1rem;
}

.about-content strong {
    color: var(--secondary);
    font-weight: 600;
}

.about-content em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

.about-motto {
    margin-top: 30px;
    padding: 24px 30px;
    background: linear-gradient(135deg, rgba(74, 124, 111, 0.15), rgba(74, 124, 111, 0.05));
    border-left: 4px solid var(--secondary);
    border-radius: 8px;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 196, 168, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.about-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 196, 168, 0.08), transparent);
    transition: left 0.6s ease;
}

.about-feature:hover::before {
    left: 100%;
}

.about-feature:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 196, 168, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.15) 0%, rgba(212, 196, 168, 0.05) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.4s ease;
    position: relative;
}

.about-feature-icon svg {
    width: 32px;
    height: 32px;
    transition: all 0.4s ease;
}

.about-feature:hover .about-feature-icon {
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.25) 0%, rgba(212, 196, 168, 0.15) 100%);
    transform: scale(1.1) rotate(5deg);
}

.about-feature:hover .about-feature-icon svg {
    transform: scale(1.1);
    color: var(--secondary-light);
}

.about-feature-content {
    flex: 1;
}

.about-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.about-feature-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.85;
    animation: none;
}

.about-feature-text {
    font-weight: 500;
    color: var(--white);
}

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

/* Services Section */
.services {
    background-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(212, 196, 168, 0.15);
}

.service-card:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 196, 168, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-dark);
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background-color: var(--secondary-light);
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--white);
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

/* References Section */
.references {
    background-color: transparent;
}

.references-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.references-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reference-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 196, 168, 0.15);
}

.reference-card:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.08);
}

.reference-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 8px 8px 0 0;
}

.reference-content {
    padding: 20px;
}

.reference-content h4 {
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}

.reference-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.references-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.references-nav button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212, 196, 168, 0.3);
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-on-dark);
    font-size: 1.125rem;
}

.references-nav button:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary-dark);
}

/* All References List */
.all-references {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid rgba(212, 196, 168, 0.15);
    text-align: center;
}

.all-references .section-badge {
    margin-bottom: 16px;
}

.all-references-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-on-dark);
    text-align: center;
    margin-bottom: 12px;
}

.all-references-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin-bottom: 40px;
}

.references-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.reference-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: var(--transition);
}

.reference-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.ref-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.15) 0%, rgba(212, 196, 168, 0.05) 100%);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-top: 0;
}

.ref-check svg {
    width: 16px;
    height: 16px;
}

.reference-item span:last-child {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Gallery Section - Modern Grid */
.gallery {
    background-color: transparent;
}

.gallery .section-badge {
    background-color: var(--secondary);
    color: var(--primary-dark);
}

.gallery .section-title {
    color: var(--white);
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:hover {
    opacity: 0.9;
}

.gallery-image {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}

.gallery-item:nth-child(1) .gallery-image,
.gallery-item:nth-child(6) .gallery-image {
    min-height: 420px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 124, 111, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-text {
    color: var(--white);
    font-weight: 500;
}

/* Contact Section - Modern Split Design */
.contact {
    background-color: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 24px;
    color: var(--white);
}

.contact-info p {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
}

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

.contact-item:hover {
    padding-left: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.15) 0%, rgba(212, 196, 168, 0.05) 100%);
    border: none;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.25) 0%, rgba(212, 196, 168, 0.15) 100%);
    transform: scale(1.1);
}

.contact-text h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--white);
}

.contact-text p {
    font-size: 0.875rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.emergency-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(212, 196, 168, 0.1);
    border-radius: var(--border-radius);
    margin-top: 24px;
    color: var(--text-on-dark);
}

.emergency-info .emergency-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.15) 0%, rgba(212, 196, 168, 0.05) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.emergency-info .emergency-icon svg {
    width: 24px;
    height: 24px;
}

.emergency-info strong {
    color: var(--secondary);
}

.emergency-info p {
    color: rgba(250, 248, 245, 0.7);
    margin: 4px 0 0 0;
    font-size: 0.9rem;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 196, 168, 0.15);
}

/* Form Message Feedback */
.form-message {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-message.success {
    background-color: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.4);
    color: #27ae60;
}

.form-message.success::before {
    content: '✅';
}

.form-message.error {
    background-color: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #e74c3c;
}

.form-message.error::before {
    content: '⚠️';
}

.contact-form .form-title {
    color: var(--text-on-dark);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: rgba(250, 248, 245, 0.8);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(212, 196, 168, 0.3);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--text-on-dark);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250, 248, 245, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option,
.form-group select optgroup {
    background-color: #4A7C6F;
    color: var(--white);
}

.form-group select optgroup {
    font-weight: 600;
    color: var(--secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--secondary);
}

.form-checkbox label {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(250, 248, 245, 0.8);
}

.form-checkbox a {
    color: var(--secondary);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

.form-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(250, 248, 245, 0.6);
    text-align: center;
}

/* Footer - Premium Dark Style */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-on-dark);
    padding: 50px 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 25px;
}

.footer-brand .logo-text {
    color: var(--text-on-dark);
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(245, 240, 230, 0.7);
    font-size: 0.95rem;
}

.footer-certifications {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.certification-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(212, 196, 168, 0.1);
    border: 1px solid rgba(212, 196, 168, 0.25);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary);
    transition: var(--transition);
}

.certification-badge:hover {
    background-color: rgba(212, 196, 168, 0.15);
    border-color: rgba(212, 196, 168, 0.4);
}

.certification-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-item a svg {
    margin-top: 3px;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

.footer-links li {
    margin-bottom: 12px;
    color: rgba(245, 240, 230, 0.7);
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(245, 240, 230, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-cta {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    background-color: var(--secondary);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-cta:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 15px;
    border-top: none;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(245, 240, 230, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: var(--secondary-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--white);
}

/* Responsive Design - DISABLED */
/* @media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-container,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: #4A7C6F !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding: 100px 20px 40px;
        z-index: 9998 !important;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 10000;
    }
    
    .mobile-menu-btn.active {
        position: fixed;
        top: 15px;
        right: 15px;
    }
    
    .mobile-menu-btn.active span {
        background-color: var(--secondary);
    }
    
    .hero {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-text {
        margin: 0 auto 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .reference-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item:nth-child(1) .gallery-image,
    .gallery-item:nth-child(6) .gallery-image {
        min-height: 200px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
} */

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.bg-primary { background-color: var(--primary); }
.bg-accent { background-color: var(--accent); }
.bg-white { background-color: var(--white); }

/* =====================================================
   NEW SECTIONS STYLES
   ===================================================== */

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #4A7C6F;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background-color: rgba(212, 196, 168, 0.15);
    color: var(--secondary);
}

.nav-cta {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-radius: var(--border-radius) !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background-color: var(--primary-light) !important;
}

/* Certificates Section */
.certificates {
    background: linear-gradient(135deg, var(--primary-green) 0%, #3a6b5e 100%);
    text-align: center;
    padding: 80px 0;
}

.certificates-icon {
    width: 80px;
    height: 80px;
    background: #D4C4A8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.certificates-icon svg {
    color: var(--primary-green);
}

.certificates .section-title {
    color: #ffffff;
    margin-bottom: 20px;
}

.certificates .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 50px;
}

.certificates-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.certificate-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
}

.certificate-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 196, 168, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-icon svg {
    color: #D4C4A8;
}

.certificate-content {
    text-align: left;
}

.certificate-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.certificate-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Why Us Section */
.why-us {
    background-color: transparent;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.why-us-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 196, 168, 0.15);
    text-align: center;
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 196, 168, 0.3);
}

.why-us-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    margin: 0 auto 16px auto;
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.15) 0%, rgba(212, 196, 168, 0.05) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.4s ease;
}

.why-us-icon svg {
    width: 32px;
    height: 32px;
    transition: all 0.4s ease;
}

.why-us-card:hover .why-us-icon {
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.25) 0%, rgba(212, 196, 168, 0.15) 100%);
    transform: scale(1.1) rotate(5deg);
}

.why-us-card:hover .why-us-icon svg {
    transform: scale(1.1);
    color: var(--secondary-light);
}

.why-us-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--white);
}

.why-us-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Partners Section */
.partners-section {
    text-align: center;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid rgba(212, 196, 168, 0.2);
}

.partners-section .section-badge {
    margin-bottom: 16px;
}

.partners-title {
    font-size: 1.3rem;
    color: rgba(250, 248, 245, 0.9);
    font-weight: 500;
    margin-bottom: 32px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    padding: 16px 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(212, 196, 168, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.partner-logo img {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: var(--transition);
}

.partner-logo:hover {
    border-color: rgba(212, 196, 168, 0.3);
}

.partner-logo:hover img {
    filter: brightness(0) invert(1) opacity(1);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, var(--primary-green) 0%, #3a6b5e 100%);
}

.services .section-title,
.services .section-subtitle {
    color: #ffffff;
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.service-card-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: rgba(255, 255, 255, 0.25);
}

.service-card-icon svg {
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon svg {
    color: #D4C4A8;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-card ul li:last-child {
    border-bottom: none;
}

.service-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #D4C4A8;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Sustainability Section */
.sustainability {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.sustainability .section-badge {
    background-color: var(--secondary);
    color: var(--primary-dark);
}

.sustainability .section-title {
    color: var(--white);
}

.sustainability-intro {
    color: var(--secondary-light);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.sustainability-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sustainability-feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.sustainability-feature:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.sustainability-feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.15) 0%, rgba(212, 196, 168, 0.05) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.sustainability-feature-icon svg {
    width: 32px;
    height: 32px;
    transition: all 0.4s ease;
}

.sustainability-feature:hover .sustainability-feature-icon {
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.25) 0%, rgba(212, 196, 168, 0.15) 100%);
    transform: scale(1.1) rotate(5deg);
}

.sustainability-feature:hover .sustainability-feature-icon svg {
    transform: scale(1.1);
    color: var(--secondary-light);
}

.sustainability-feature-content h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.sustainability-feature-content p {
    color: var(--secondary-light);
    font-size: 0.95rem;
    margin: 0;
}

.sustainability-image-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 24px;
}

.sustainability-video-wrapper {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.sustainability-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

.sustainability-video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.sustainability-video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.8rem;
    font-weight: 300;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    z-index: 2;
    letter-spacing: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.sustainability-stats {
    display: flex;
    gap: 24px;
}

.stat-item {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

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

.stat-label {
    font-size: 0.85rem;
    color: var(--secondary-light);
}

/* Process Section */
.process {
    background-color: transparent;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-bottom: 60px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-step-content {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 196, 168, 0.15);
}

.process-step-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.process-step-icon svg {
    color: #D4C4A8;
}

.process-step:hover .process-step-icon {
    background: rgba(212, 196, 168, 0.2);
}

.process-step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--white);
}

.process-step-content p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.process-duration {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--secondary);
    color: var(--primary-dark);
    font-size: 0.75rem;
    border-radius: 50px;
    font-weight: 500;
}

.process-connector {
    display: none;
}

/* Folyamatos összekötő vonal */
.process-line {
    position: absolute;
    top: 30px;
    left: calc(12.5% + 30px);
    right: calc(12.5% + 30px);
    height: 3px;
    background: var(--secondary);
    z-index: 0;
    border-radius: 2px;
}

/* Vonal a step-ek között - kikapcsolva, process-line használata helyett */
.process-step:not(:last-child)::after {
    display: none;
}

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

.process-cta p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-on-dark);
}

/* FAQ Section */
.faq {
    background-color: transparent;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 196, 168, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-on-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    color: var(--secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.15) 0%, rgba(212, 196, 168, 0.05) 100%);
    border-radius: var(--border-radius-sm);
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 12px 24px 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Legal Section */
.legal {
    background-color: transparent;
    padding: 60px 0;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 196, 168, 0.15);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.legal-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 196, 168, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.legal-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.15) 0%, rgba(212, 196, 168, 0.05) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 16px;
}

.legal-icon svg {
    width: 32px;
    height: 32px;
}

.legal-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--white);
}

.legal-content {
    font-size: 0.9rem;
}

.legal-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.legal-item strong {
    color: var(--white);
    font-weight: 500;
}

.legal-item span {
    color: rgba(255, 255, 255, 0.85);
}

.legal-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 196, 168, 0.2);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.legal-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--primary-light);
}

/* Enhanced Contact Form */
.form-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    background-color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    margin: 0;
    font-size: 0.9rem;
}

.form-checkbox a {
    color: var(--primary);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
    gap: 10px;
}

.form-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
}

.emergency-info {
    display: flex;
    gap: 16px;
    padding: 20px;
    background-color: var(--accent);
    border-radius: var(--border-radius);
    margin-top: 24px;
    border-left: 4px solid var(--primary);
}

.emergency-icon {
    font-size: 1.5rem;
}

.emergency-info strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.emergency-info p {
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Updates - DISABLED */
/* @media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-categories {
        grid-template-columns: 1fr;
    }
    
    .sustainability-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-connector {
        display: none;
    }
    
    .process-step {
        padding: 0;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        display: none;
        padding-left: 20px;
        border-radius: 8px;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .sustainability-stats {
        flex-direction: column;
    }
    
    .partners-logos {
        gap: 20px;
    }
    
    .process-line {
        display: none;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
} */

/* =====================================================
   SCROLL TO TOP BUTTON
   ===================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
    background: var(--secondary-light);
}

/* =====================================================
   HERO QUICK CONTACT
   ===================================================== */
.hero-contact-quick {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(212, 196, 168, 0.3);
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition: var(--transition);
}

.hero-phone:hover {
    color: var(--white);
    transform: none;
}

.hero-phone span {
    font-size: 1.25rem;
}

/* =====================================================
   CONTACT LINKS
   ===================================================== */
.contact-link {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-light);
    text-decoration: none;
}

/* =====================================================
   FOCUS STATES (Accessibility)
   ===================================================== */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn:focus {
    outline: 3px solid var(--secondary);
    outline-offset: 3px;
}

/* Skip to content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* =====================================================
   LOADING STATE FOR FORM
   ===================================================== */
.btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    .header,
    .footer,
    .scroll-to-top,
    .hero-buttons,
    .contact-form,
    .gallery,
    .references-nav {
        display: none !important;
    }
    
    .section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}

/* =====================================================
   RESPONSIVE STYLES - MOBILE FIRST
   ===================================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    /* Header Mobile Fix - 1024px */
    .header {
        width: 100%;
        max-width: 100%;
    }
    
    .header-container {
        width: 100%;
        max-width: 100%;
    }
    
    .header-container nav {
        position: absolute;
        width: 0;
        height: 0;
        overflow: hidden;
    }
    
    /* Header Mobile Menu */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #4A7C6F;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        z-index: 9998;
        padding: 100px 20px 40px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 10000;
        position: relative;
    }
    
    .mobile-menu-btn.active {
        position: fixed;
        top: 15px;
        right: 15px;
    }
    
    .mobile-menu-btn.active span {
        background-color: var(--secondary);
    }
    
    .nav-link {
        font-size: 1.25rem;
        color: var(--white);
    }
    
    .nav-link:hover {
        color: var(--secondary);
    }
    
    .nav-cta {
        margin-left: 0 !important;
        margin-top: 10px;
        background: var(--secondary);
        color: var(--primary-dark);
        padding: 14px 30px;
        border-radius: 50px;
    }
    
    .nav-dropdown {
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        padding: 10px 0;
        min-width: auto;
        display: none;
        border-radius: 8px;
        margin-top: 8px;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.9);
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(212, 196, 168, 0.1);
        color: var(--secondary);
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Why Us */
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Process */
    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-step {
        flex-direction: row;
        text-align: left;
    }
    
    .process-step-content {
        text-align: left;
    }
    
    /* Sustainability */
    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sustainability-image {
        order: -1;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* References */
    .references-track {
        gap: 20px;
    }
    
    .reference-card {
        min-width: 300px;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Legal */
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    /* Certificates - marad egymás mellett */
    .certificates-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .certificate-card {
        padding: 30px 40px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile Large (max-width: 768px) */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 14px 28px;
    }
    
    /* About */
    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-feature {
        padding: 16px;
    }
    
    .about-feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .about-feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .about-motto {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 24px;
    }
    
    /* Why Us */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-card {
        padding: 24px;
    }
    
    .why-us-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .why-us-icon svg {
        width: 24px;
        height: 24px;
    }
    
    /* Partners */
    .partners-logos {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .partner-logo {
        width: calc(50% - 10px);
    }
    
    .partner-logo img {
        max-height: 40px;
    }
    
    /* Process */
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .process-step-content {
        text-align: center;
    }
    
    .process-step-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 12px;
    }
    
    /* Sustainability */
    .sustainability-feature {
        padding: 16px;
    }
    
    .sustainability-feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .sustainability-feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .sustainability-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .sustainability-video-wrapper {
        height: 280px;
    }
    
    /* Contact */
    .contact-info h3 {
        font-size: 1.25rem;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    /* References */
    .reference-card {
        min-width: 280px;
    }
    
    .references-list {
        gap: 12px;
    }
    
    .reference-item {
        padding: 12px 16px;
    }
    
    .ref-check {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
    
    .ref-check svg {
        width: 14px;
        height: 14px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* FAQ */
    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
    }
    
    .faq-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 0.9rem;
    }
    
    /* Legal */
    .legal-card {
        padding: 24px;
    }
    
    .legal-icon {
        width: 48px;
        height: 48px;
    }
    
    .legal-icon svg {
        width: 24px;
        height: 24px;
    }
    
    /* Certificates */
    .certificate-card {
        padding: 20px;
    }
    
    .certificate-icon {
        width: 48px;
        height: 48px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-certifications {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    /* Scroll to top */
    .scroll-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.125rem; }
    
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    /* About */
    .about-content {
        padding: 0;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .about-feature-content h4 {
        font-size: 1rem;
    }
    
    .about-feature-content p {
        font-size: 0.85rem;
    }
    
    /* Services */
    .service-card {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card li {
        font-size: 0.85rem;
    }
    
    .service-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .service-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    /* Why Us */
    .why-us-card h3 {
        font-size: 1.1rem;
    }
    
    .why-us-card p {
        font-size: 0.875rem;
    }
    
    /* Process */
    .process-step-content h3 {
        font-size: 1.1rem;
    }
    
    .process-step-content p {
        font-size: 0.875rem;
    }
    
    .process-duration {
        font-size: 0.75rem;
    }
    
    /* Sustainability */
    .sustainability-intro {
        font-size: 1rem;
    }
    
    .sustainability-feature-content h4 {
        font-size: 1rem;
    }
    
    .sustainability-feature-content p {
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Contact */
    .contact-form {
        padding: 20px;
    }
    
    .form-group label {
        font-size: 0.875rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 14px 20px;
    }
    
    .btn-large svg {
        width: 18px;
        height: 18px;
    }
    
    /* References */
    .reference-card {
        min-width: 260px;
    }
    
    .reference-content h4 {
        font-size: 1rem;
    }
    
    .reference-content p {
        font-size: 0.85rem;
    }
    
    .all-references-title {
        font-size: 1.25rem;
    }
    
    .reference-item span:last-child {
        font-size: 0.85rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* FAQ */
    .faq-question {
        padding: 14px;
    }
    
    .faq-question span:first-child {
        font-size: 0.9rem;
    }
    
    /* Legal */
    .legal-card h3 {
        font-size: 1.1rem;
    }
    
    .legal-item {
        font-size: 0.85rem;
    }
    
    /* Certificates */
    .certificates-grid {
        gap: 16px;
    }
    
    .certificate-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .certificate-icon {
        margin: 0 auto;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-links li {
        font-size: 0.85rem;
    }
    
    .footer-contact-item {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
    
    .certification-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .footer-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .footer-legal-links a {
        font-size: 0.8rem;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-text {
        margin-bottom: 20px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ================================================
   UNIQUE MOBILE VIEW - CUSTOM MOBILE EXPERIENCE
   ================================================ */

/* Mobile Bottom Navigation Bar */
@media (max-width: 768px) {
    /* Header Mobile Fix */
    .header {
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .header-container {
        padding: 10px 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .header-container nav {
        position: absolute;
        width: 0;
        height: 0;
        overflow: hidden;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav-menu.active {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
    }
    
    /* Bottom Navigation */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(74, 124, 111, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
        z-index: 9999;
        padding: 8px 0;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(212, 196, 168, 0.2);
    }
    
    .mobile-bottom-nav a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 6px 4px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.65rem;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .mobile-bottom-nav a svg {
        width: 22px;
        height: 22px;
        stroke: rgba(255, 255, 255, 0.7);
        stroke-width: 1.5;
        margin-bottom: 4px;
        transition: all 0.3s ease;
    }
    
    .mobile-bottom-nav a.active,
    .mobile-bottom-nav a:hover {
        color: var(--secondary);
    }
    
    .mobile-bottom-nav a.active svg,
    .mobile-bottom-nav a:hover svg {
        stroke: var(--secondary);
        transform: scale(1.1);
    }
    
    .mobile-bottom-nav a.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: var(--secondary);
        border-radius: 0 0 3px 3px;
    }
    
    .mobile-bottom-nav .nav-cta-mobile {
        background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
        color: var(--primary-dark);
        border-radius: 50%;
        width: 56px;
        height: 56px;
        margin: -20px 8px 0;
        box-shadow: 0 4px 20px rgba(212, 196, 168, 0.4);
        position: relative;
    }
    
    .mobile-bottom-nav .nav-cta-mobile::before {
        display: none;
    }
    
    .mobile-bottom-nav .nav-cta-mobile svg {
        stroke: var(--primary-dark);
        width: 26px;
        height: 26px;
        margin: 0;
    }
    
    .mobile-bottom-nav .nav-cta-mobile span {
        display: none;
    }
    
    /* Hide desktop header on mobile, show simplified version */
    .header {
        background: rgba(74, 124, 111, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 12px 0;
    }
    
    .header.scrolled {
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    }
    
    .logo-image {
        height: 60px;
    }
    
    /* Mobile Hero - Full Screen Experience */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        padding-bottom: 80px;
    }
    
    .hero-content {
        padding: 25px;
        border-radius: 20px;
        margin: 0 15px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(212, 196, 168, 0.2);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
        color: var(--text-primary);
    }
    
    .hero-title span {
        display: block;
        font-size: 1.6rem;
        color: var(--secondary);
        background: none;
        -webkit-text-fill-color: var(--secondary);
    }
    
    .hero-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        color: var(--text-secondary);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .hero-buttons .btn-primary {
        background: var(--secondary);
        color: var(--primary-dark);
        box-shadow: 0 8px 25px rgba(212, 196, 168, 0.35);
    }
    
    .hero-buttons .btn-outline-light {
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid var(--secondary);
        color: var(--secondary);
    }
    
    /* Mobile Scroll Indicator */
    .scroll-indicator {
        bottom: 100px;
        font-size: 0.75rem;
        opacity: 0.7;
    }
    
    .scroll-indicator::before,
    .scroll-indicator::after {
        display: none;
    }
    
    /* Mobile Sections - Card Style */
    section {
        padding: 60px 0;
        padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }
    
    section:last-of-type {
        padding-bottom: calc(100px + env(safe-area-inset-bottom));
    }
    
    .section-header {
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .section-badge {
        margin-bottom: 12px;
        order: -1;
    }
    
    .section-title {
        font-size: 1.6rem;
        position: relative;
        display: block;
        color: var(--text-primary);
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .section-title::after {
        display: none;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-top: 15px;
        color: var(--text-secondary);
    }
    
    /* Mobile About Section */
    .about-feature {
        padding: 20px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 196, 168, 0.15);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-bottom: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .about-feature:active {
        transform: scale(0.98);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }
    
    .about-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Mobile Service Cards - Horizontal Scroll */
    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        gap: 15px;
        padding: 15px 15px 40px;
        margin: 0 -15px;
        scroll-padding: 0 15px;
    }
    
    .services-grid::-webkit-scrollbar {
        display: none;
    }
    
    .service-card {
        flex: 0 0 calc(100% - 30px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        border-radius: 20px;
        padding: 25px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 196, 168, 0.15);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
    
    .service-card:last-child {
        margin-right: 15px;
    }
    
    .service-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    /* Mobile Swipe Indicator */
    #services {
        position: relative;
    }
    
    #services .services-grid::after {
        content: '← Húzd oldalra →';
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 0.75rem;
        color: var(--secondary);
        opacity: 0.7;
        pointer-events: none;
    }
    
    /* Mobile Why Us - Stacked Cards */
    .why-us-grid {
        gap: 15px;
    }
    
    .why-us-card {
        padding: 20px;
        border-radius: 16px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        text-align: left;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 196, 168, 0.15);
    }
    
    .why-us-icon {
        flex-shrink: 0;
    }
    
    .why-us-card h3,
    .why-us-card p {
        text-align: left;
    }
    
    /* Mobile Process - Simple Cards */
    .process-timeline {
        position: relative;
        padding-left: 0;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-line {
        display: none;
    }
    
    .process-step {
        position: relative;
        margin-bottom: 15px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 196, 168, 0.15);
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .process-step::before,
    .process-step::after {
        display: none !important;
    }
    
    .process-step-number {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 36px;
        height: 36px;
        background: var(--secondary);
        color: var(--primary-dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1rem;
    }
    
    .process-step-number::after {
        display: none;
    }
    
    .process-step-content {
        padding-left: 50px;
    }
    
    .process-step-icon {
        display: none;
    }
    
    .process-step-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .process-step-content p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .process-duration {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    /* Mobile Sustainability - Icon Grid */
    .sustainability-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .sustainability-feature {
        flex-direction: column;
        padding: 20px 15px;
        text-align: center;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 196, 168, 0.15);
    }
    
    .sustainability-feature-icon {
        margin: 0 auto 10px;
    }
    
    .sustainability-feature-content h4 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .sustainability-feature-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Mobile Stats - Circular */
    .sustainability-stats {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat-item {
        text-align: center;
        padding: 15px;
        background: linear-gradient(145deg, var(--secondary), var(--secondary-light));
        border-radius: 50%;
        width: 100px;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--primary-dark);
        box-shadow: 0 8px 25px rgba(212, 196, 168, 0.3);
    }
    
    .stat-number {
        font-size: 1.4rem;
        color: var(--primary-dark);
        font-weight: 600;
    }
    
    .stat-label {
        font-size: 0.6rem;
        color: var(--primary);
        margin-top: 2px;
        line-height: 1.2;
        text-align: center;
    }
    
    /* Mobile Contact - Full Width Form */
    .contact-content {
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 196, 168, 0.15);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px;
        border-radius: 12px;
        font-size: 16px; /* Prevents iOS zoom */
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(212, 196, 168, 0.2);
        color: var(--text-primary);
        transition: all 0.3s ease;
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(212, 196, 168, 0.6);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--secondary);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 0 0 3px rgba(212, 196, 168, 0.15);
    }
    
    .btn-large {
        padding: 18px 30px;
        font-size: 1.1rem;
        border-radius: 14px;
        background: var(--secondary);
        color: var(--primary-dark);
        box-shadow: 0 8px 25px rgba(212, 196, 168, 0.35);
    }
    
    .btn-large:active {
        transform: scale(0.98);
    }
    
    /* Mobile Contact Info Cards */
    .contact-info-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 18px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 196, 168, 0.15);
        border-radius: 14px;
        margin-bottom: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact-icon {
        flex-shrink: 0;
    }
    
    /* Mobile References - Swipeable Cards */
    .references-slider {
        padding: 10px 0 30px;
    }
    
    .reference-card {
        min-width: 280px;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
    
    .reference-nav button {
        width: 44px;
        height: 44px;
        border-radius: 50%;
    }
    
    /* Mobile Gallery - Simple 2 Column Grid */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0 10px;
    }
    
    .gallery-item {
        border-radius: 12px;
        aspect-ratio: 1;
        overflow: hidden;
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .gallery-item .gallery-image {
        min-height: 150px !important;
    }
    
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    }
    
    .gallery-overlay span {
        position: absolute;
        bottom: 10px;
        left: 10px;
        font-size: 0.8rem;
    }
    
    /* Mobile FAQ - Expandable Accordion */
    .faq-item {
        margin-bottom: 10px;
        border-radius: 14px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 196, 168, 0.15);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .faq-question {
        padding: 18px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--text-on-dark);
    }
    
    .faq-question span:first-child {
        color: var(--text-on-dark);
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, rgba(212, 196, 168, 0.15) 0%, rgba(212, 196, 168, 0.05) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .faq-icon svg {
        stroke: var(--secondary);
    }
    
    .faq-item.active .faq-icon {
        background: var(--secondary);
        transform: rotate(180deg);
    }
    
    .faq-item.active .faq-icon svg {
        stroke: var(--primary-dark);
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        font-size: 0.9rem;
        line-height: 1.6;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
        max-height: 300px;
        padding: 0 20px 18px;
    }
    
    .faq-answer p {
        color: rgba(255, 255, 255, 0.85);
    }
    
    /* Mobile Certificates - Stacked Layout */
    .certificates-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0;
    }
    
    .certificate-card {
        width: 100%;
        padding: 20px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 196, 168, 0.15);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .certificate-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .certificate-content h4 {
        font-size: 1rem;
    }
    
    .certificate-content p {
        font-size: 0.85rem;
    }
    
    /* Mobile Legal - Collapsible Cards */
    .legal-card {
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 15px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 196, 168, 0.15);
    }
    
    /* Mobile Footer - Stacked */
    .footer {
        padding: 40px 0 70px;
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }
    
    .footer-grid {
        gap: 35px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 15px;
    }
    
    .footer-description {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    /* Touch Feedback */
    .about-feature,
    .service-card,
    .why-us-card,
    .sustainability-feature,
    .reference-card,
    .faq-item,
    .certificate-card,
    .legal-card,
    .gallery-item {
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
    }
    
    .about-feature:active,
    .service-card:active,
    .why-us-card:active,
    .reference-card:active,
    .certificate-card:active {
        transform: scale(0.98);
    }
    
    /* Floating Call Button */
    .floating-call-btn {
        display: flex;
        position: fixed;
        right: 20px;
        bottom: 90px;
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 25px rgba(212, 196, 168, 0.4);
        z-index: 9998;
        animation: pulse-call 2s infinite;
    }
    
    .floating-call-btn svg {
        width: 26px;
        height: 26px;
        stroke: var(--primary-dark);
        stroke-width: 2;
    }
    
    /* Hide desktop elements */
    .mobile-menu-btn {
        display: flex;
    }
}

/* Extra Small Mobile (max-width: 380px) */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-title span {
        font-size: 1.4rem;
    }
    
    .hero-content {
        padding: 20px;
        margin: 0 10px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .sustainability-features {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        width: 80px;
        height: 80px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-bottom-nav a {
        font-size: 0.6rem;
    }
    
    .mobile-bottom-nav a svg {
        width: 20px;
        height: 20px;
    }
}

/* Safe Area Support for notched phones */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        .mobile-bottom-nav {
            padding-bottom: max(8px, env(safe-area-inset-bottom));
        }
        
        .footer {
            padding-bottom: max(100px, calc(100px + env(safe-area-inset-bottom)));
        }
        
        body {
            padding-bottom: max(70px, calc(70px + env(safe-area-inset-bottom)));
        }
    }
}

/* Mobile Menu Override - Highest Priority */
@media (max-width: 1024px) {
    .nav-menu.active {
        display: flex !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        width: 100% !important;
        height: auto !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
        background-color: #4A7C6F !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        z-index: 9998 !important;
        gap: 15px;
        padding: 30px 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    }
    
    .mobile-menu-btn.active {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        z-index: 10000 !important;
    }
    
    .mobile-menu-btn.active span {
        background-color: #D4C4A8 !important;
    }
}
/* Final Header Mobile Fix - Highest Priority */
@media (max-width: 768px) {
    .header,
    .header-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .header-container > nav:not(.active) {
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

/* Ultimate Mobile Overflow Fix */
@media (max-width: 1024px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .header {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .header-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .container,
    .hero-container,
    main,
    section,
    .section {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Hide nav element when menu is not active */
    .header-container nav {
        flex: 0 0 auto !important;
        width: auto !important;
        position: static !important;
    }
    
    .nav-menu:not(.active) {
        display: none !important;
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
    }
}