/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --transition: all 0.2s ease;
    --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, #60a5fa 100%);
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
}

/* Navigation */
.navigation ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.navigation a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

.navigation a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.feature {
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.feature h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.feature p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Services Section - Timeline Layout */
.services-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000000" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23services)"/></svg>');
    opacity: 0.5;
}

.services-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 1;
}

.services-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 2rem;
    flex: 1;
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #4a5568;
}

.service-features i {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Smart Home Section - Showcase Layout */
.smart-home-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    position: relative;
}

.smart-home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="smart" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25 0L30 20H50L35 32L40 50L25 38L10 50L15 32L0 20H20L25 0Z" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23smart)"/></svg>');
    opacity: 0.3;
}

.smart-home-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.showcase-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.showcase-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.smart-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--white);
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.feature-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.smart-home-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 300px;
}

.preview-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.preview-item.active,
.preview-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: scale(1.05);
}

.preview-item i {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: block;
}

.preview-item span {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
}

/* Why Us Section - Feature Cards Layout */
.why-us-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
    position: relative;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="whyus" width="60" height="60" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="60" height="60" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23whyus)"/></svg>');
    opacity: 0.3;
}

.why-us-features {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
}

.feature-icon i {
    font-size: 2rem;
}

.feature-content h3 {
    font-size: 1.4rem;
}

.feature-content p {
    font-size: 1rem;
}

.feature-highlight {
    padding: 0.75rem;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: var(--light-gray);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.about-features {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature i {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.feature:hover i {
    transform: scale(1.1);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    margin: 0;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation Delays */
.services-grid .service-category:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-category:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-category:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-category:nth-child(4) { transition-delay: 0.25s; }

.smart-home-grid .smart-home-item:nth-child(1) { transition-delay: 0.1s; }
.smart-home-grid .smart-home-item:nth-child(2) { transition-delay: 0.2s; }
.smart-home-grid .smart-home-item:nth-child(3) { transition-delay: 0.2s; }
.smart-home-grid .smart-home-item:nth-child(4) { transition-delay: 0.25s; }

.why-us-grid .why-us-item:nth-child(1) { transition-delay: 0.1s; }
.why-us-grid .why-us-item:nth-child(2) { transition-delay: 0.2s; }
.why-us-grid .why-us-item:nth-child(3) { transition-delay: 0.2s; }
.why-us-grid .why-us-item:nth-child(4) { transition-delay: 0.25s; }
.why-us-grid .why-us-item:nth-child(5) { transition-delay: 0.3s; }
.why-us-grid .why-us-item:nth-child(6) { transition-delay: 0.3s; }

.contact-info .contact-item:nth-child(1) { transition-delay: 0.1s; }
.contact-info .contact-item:nth-child(2) { transition-delay: 0.2s; }
.contact-info .contact-item:nth-child(3) { transition-delay: 0.2s; }
.contact-info .contact-item:nth-child(4) { transition-delay: 0.25s; }

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

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

.contact-details {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.contact-details h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-details p {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-details i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 400px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 4px;
    border-radius: 4px;
}

.footer-bottom a:hover {
    color: #f0f0f0;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

/* Cookie Banner - Improved Responsive */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.5rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.2s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.cookie-buttons .btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

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

.cookie-buttons .btn-secondary {
    background: var(--gray-300);
    color: var(--gray-700);
}

.cookie-buttons .btn-secondary:hover {
    background: var(--gray-400);
    color: var(--gray-800);
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-content p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        max-width: 150px;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 0.75rem;
    }
    
    .cookie-content p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        max-width: none;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

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

/* Comprehensive Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .hero-content p {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.6rem;
    }
    
    .services-timeline {
        max-width: 900px;
    }
    
    .experience-content {
        gap: 3rem;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .container {
        max-width: 900px;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    /* Timeline responsive */
    .services-timeline::before {
        left: 30px;
        transform: none;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 60px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        position: absolute;
        left: -90px;
        top: 0;
    }
    
    .timeline-content {
        margin: 0;
        width: 100%;
        padding: 2rem;
    }
    
    /* Smart Home showcase responsive */
    .smart-home-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase-text h3 {
        font-size: 2rem;
    }
    
    .showcase-text p {
        font-size: 1.1rem;
    }
    
    .smart-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .smart-home-preview {
        max-width: 250px;
    }
    
    .preview-item {
        padding: 1rem;
    }
    
    .preview-item i {
        font-size: 1.5rem;
    }
    
    /* Experience section responsive */
    .experience-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .experience-text h2 {
        font-size: 2.5rem;
    }
    
    .experience-text p {
        font-size: 1.1rem;
    }
    
    .experience-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    /* Why Us features responsive */
    .why-us-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 2.2rem;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    /* Equipment responsive */
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .equipment-item {
        padding: 2rem;
    }
    
    /* CTA responsive */
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Large - Improved Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header responsive */
    .hamburger {
        display: block;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.2s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .navigation.active {
        left: 0;
    }
    
    .navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navigation a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.2s ease;
    }
    
    /* Hero responsive */
    .hero-section {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Section titles responsive */
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    /* Services Timeline responsive */
    .services-section {
        padding: 4rem 0;
    }
    
    .services-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        margin-left: 50px;
        margin-bottom: 2rem;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        left: -70px;
    }
    
    .timeline-content {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .timeline-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .timeline-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .service-features {
        gap: 0.5rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    /* Smart Home responsive */
    .smart-home-section {
        padding: 4rem 0;
    }
    
    .smart-home-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .showcase-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .smart-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .smart-home-preview {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .preview-item {
        padding: 0.75rem;
        border-radius: 10px;
    }
    
    .preview-item i {
        font-size: 1.2rem;
    }
    
    .preview-item span {
        font-size: 0.8rem;
    }
    
    /* Why Us responsive */
    .why-us-section {
        padding: 4rem 0;
    }
    
    .why-us-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .feature-highlight {
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .feature-highlight span {
        font-size: 0.85rem;
    }
    
    /* Process responsive */
    .process-section {
        padding: 4rem 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-item {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
        border-radius: 15px;
    }
    
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .process-item i {
        font-size: 2.5rem;
        margin: 1rem 0 1rem 0;
    }
    
    .process-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .process-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Experience responsive */
    .experience-section {
        padding: 4rem 0;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .experience-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .image-placeholder {
        height: 250px;
        border-radius: 15px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    .image-placeholder p {
        font-size: 1rem;
    }
    
    /* Equipment responsive */
    .equipment-section {
        padding: 4rem 0;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .equipment-item {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .equipment-item i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .equipment-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .equipment-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* FAQ responsive */
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-list {
        gap: 1rem;
    }
    
    .faq-item {
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        background: rgba(248, 250, 252, 0.9);
        transition: all 0.2s ease;
        border-top: 1px solid transparent;
        opacity: 0;
        padding: 0 2rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: 200px;
        padding: 1.5rem 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        opacity: 1;
    }
    
    .faq-answer p {
        margin: 0;
        line-height: 1.7;
        color: #4a5568;
        font-size: 1rem;
    }
    
    /* CTA responsive */
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* About responsive */
    .about-section {
        padding: 4rem 0;
    }
    
    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-features .feature {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .about-features .feature i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-features .feature h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .about-features .feature p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Contact responsive */
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
    }
    
    .contact-item i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-logo {
        max-width: 150px;
        margin-bottom: 1rem;
    }
    
    .footer-info p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-column ul {
        gap: 0.5rem;
    }
    
    .footer-column a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    /* Image section responsive */
    .image-section {
        height: 60vh;
        background-attachment: scroll;
    }
    
    .image-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .image-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .image-content .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* Mobile Small - Improved Responsive */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero responsive */
    .hero-section {
        min-height: 70vh;
        padding: 1.5rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .feature {
        margin-bottom: 0.75rem;
        padding: 1rem;
    }
    
    .feature i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .feature h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .feature p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Section titles responsive */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    /* Services Timeline responsive */
    .services-section {
        padding: 3rem 0;
    }
    
    .services-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        margin-left: 40px;
        margin-bottom: 1.5rem;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        left: -55px;
    }
    
    .timeline-content {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
    
    /* Smart Home responsive */
    .smart-home-section {
        padding: 3rem 0;
    }
    
    .showcase-text h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .showcase-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem;
        border-radius: 10px;
    }
    
    .feature-item h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .smart-home-preview {
        max-width: 150px;
        margin: 0 auto;
    }
    
    .preview-item {
        padding: 0.5rem;
        border-radius: 8px;
    }
    
    .preview-item i {
        font-size: 1rem;
    }
    
    .preview-item span {
        font-size: 0.7rem;
    }
    
    /* Why Us responsive */
    .why-us-section {
        padding: 3rem 0;
    }
    
    .why-us-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    .feature-highlight {
        padding: 0.5rem;
        border-radius: 6px;
    }
    
    .feature-highlight span {
        font-size: 0.8rem;
    }
    
    /* Process responsive */
    .process-section {
        padding: 3rem 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-item {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
        border-radius: 12px;
    }
    
    .process-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .process-item i {
        font-size: 2rem;
        margin: 0.75rem 0;
    }
    
    .process-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .process-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Experience responsive */
    .experience-section {
        padding: 3rem 0;
    }
    
    .experience-text h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .experience-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .image-placeholder {
        height: 200px;
        border-radius: 12px;
    }
    
    .image-placeholder i {
        font-size: 2.5rem;
    }
    
    .image-placeholder p {
        font-size: 0.9rem;
    }
    
    /* Equipment responsive */
    .equipment-section {
        padding: 3rem 0;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .equipment-item {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .equipment-item i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .equipment-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .equipment-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* FAQ responsive */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        background: rgba(248, 250, 252, 0.9);
        transition: all 0.2s ease;
        border-top: 1px solid transparent;
        opacity: 0;
        padding: 0 2rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: 200px;
        padding: 1.5rem 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        opacity: 1;
    }
    
    .faq-answer p {
        margin: 0;
        line-height: 1.7;
        color: #4a5568;
        font-size: 1rem;
    }
    
    /* CTA responsive */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* About responsive */
    .about-section {
        padding: 3rem 0;
    }
    
    .about-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .about-features .feature {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .about-features .feature i {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .about-features .feature h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .about-features .feature p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Contact responsive */
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-item {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .contact-item i {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Footer responsive */
    .footer-logo {
        max-width: 120px;
        margin-bottom: 0.75rem;
    }
    
    .footer-info p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-column a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Image section responsive */
    .image-section {
        height: 50vh;
    }
    
    .image-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .image-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .image-content .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .feature {
        margin-bottom: 0.5rem;
    }
    
    .feature i {
        font-size: 1.5rem;
    }
    
    .feature h3 {
        font-size: 0.9rem;
    }
    
    .feature p {
        font-size: 0.8rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .hamburger,
    .navigation,
    .cookie-banner,
    .cta-buttons {
        display: none !important;
    }
    
    .hero-section {
        height: auto;
        min-height: auto;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    .feature-card,
    .timeline-item,
    .process-item {
        page-break-inside: avoid;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Work Process Section */
.process-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="process" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 0L24 16H40L28 26L32 40L20 30L8 40L12 26L0 16H16L20 0Z" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23process)"/></svg>');
    opacity: 0.3;
}

.process-section .section-title,
.process-section .section-subtitle {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.process-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: transform 0.2s ease;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.process-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 1rem 0 1.5rem 0;
    transition: var(--transition-smooth);
}

.process-item:hover i {
    transform: scale(1.1);
}

.process-item h3 {
    color: var(--gray-800);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.process-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Equipment Section */
.equipment-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: var(--white);
    position: relative;
}

.equipment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="equipment" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23equipment)"/></svg>');
    opacity: 0.4;
}

.equipment-section .section-title,
.equipment-section .section-subtitle {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.equipment-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.equipment-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.equipment-item i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.equipment-item:hover i {
    transform: scale(1.1);
}

.equipment-item h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.equipment-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* FAQ Section - Fixed Responsive */
.faq-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.faq-list {
    max-width: 900px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.98);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    transition: var(--transition-smooth);
    transform: rotate(0deg);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.faq-question:hover {
    background: var(--gradient-secondary);
    color: var(--white);
}

.faq-question:hover::after {
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(248, 250, 252, 0.9);
    transition: all 0.2s ease;
    border-top: 1px solid transparent;
    opacity: 0;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: #4a5568;
    font-size: 1rem;
}

/* Call to Action Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 0L24 16H40L28 26L32 40L20 30L8 40L12 26L0 16H16L20 0Z" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23cta)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Image Section with Parallax */
.image-section {
    position: relative;
    height: 70vh;
    background: url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    justify-content: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.image-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.image-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.image-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.image-content .btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 60px;
    min-height: 100vh;
    background: var(--light-gray);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.legal-container h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.legal-container h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.legal-container a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Experience Section - Text & Image Layout - Fixed Responsive */
.experience-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="experience" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000000" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23experience)"/></svg>');
    opacity: 0.5;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.experience-text h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.experience-text p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

.experience-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="placeholder" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23placeholder)"/></svg>');
    opacity: 0.3;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}


@media (max-width: 768px) {
    .hamburger {
        display: block; /* ✅ Wichtig für Sichtbarkeit */
    }
}

/* Experience Section Responsive */
@media (max-width: 992px) {
    .experience-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .experience-text h2 {
        font-size: 2.5rem;
    }
    
    .experience-text p {
        font-size: 1.1rem;
    }
    
    .experience-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: 4rem 0;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .experience-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .image-placeholder {
        height: 250px;
        border-radius: 15px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    .image-placeholder p {
        font-size: 1rem;
    }
    
    /* FAQ Responsive */
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-list {
        gap: 1rem;
    }
    
    .faq-item {
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        background: rgba(248, 250, 252, 0.9);
        transition: all 0.2s ease;
        border-top: 1px solid transparent;
        opacity: 0;
        padding: 0 2rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: 200px;
        padding: 1.5rem 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        opacity: 1;
    }
    
    .faq-answer p {
        margin: 0;
        line-height: 1.7;
        color: #4a5568;
        font-size: 1rem;
    }
    
    /* Image Section Responsive */
    .image-section {
        height: 60vh;
        background-attachment: scroll;
    }
    
    .image-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .image-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .image-content .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .experience-section {
        padding: 3rem 0;
    }
    
    .experience-text h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .experience-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .image-placeholder {
        height: 200px;
        border-radius: 12px;
    }
    
    .image-placeholder i {
        font-size: 2.5rem;
    }
    
    .image-placeholder p {
        font-size: 0.9rem;
    }
    
    /* FAQ Small Mobile */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        background: rgba(248, 250, 252, 0.9);
        transition: all 0.2s ease;
        border-top: 1px solid transparent;
        opacity: 0;
        padding: 0 2rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: 200px;
        padding: 1.5rem 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        opacity: 1;
    }
    
    .faq-answer p {
        margin: 0;
        line-height: 1.7;
        color: #4a5568;
        font-size: 1rem;
    }
    
    /* Image Section Small Mobile */
    .image-section {
        height: 50vh;
    }
    
    .image-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .image-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .image-content .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .experience-section {
        padding: 2rem 0;
    }
    
    .experience-content {
        gap: 1.5rem;
    }
    
    .experience-text h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .experience-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .experience-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .image-placeholder {
        height: 180px;
    }
    
    .image-placeholder i {
        font-size: 2rem;
    }
    
    .image-placeholder p {
        font-size: 0.9rem;
    }
    
    /* FAQ Landscape */
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-question {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        background: rgba(248, 250, 252, 0.9);
        transition: all 0.2s ease;
        border-top: 1px solid transparent;
        opacity: 0;
        padding: 0 2rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: 200px;
        padding: 1.5rem 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        opacity: 1;
    }
    
    .faq-answer p {
        margin: 0;
        line-height: 1.7;
        color: #4a5568;
        font-size: 1rem;
    }
    
    /* Image Section Landscape */
    .image-section {
        height: 40vh;
    }
    
    .image-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .image-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .image-content .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Contact Links Styling */
.contact-item a,
.footer-column a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
    padding: 2px 4px;
    border-radius: 4px;
}

.contact-item a:hover,
.footer-column a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    text-decoration: underline;
}

/* Footer contact links specific styling */
.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    text-decoration: underline;
}

html, body {
    overflow-x: hidden;
  }
  