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

:root {
    --primary-color: #800000;
    --secondary-color: #000000;
    --accent-color: #A52A2A;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --border-color: #E0E0E0;
    --success-color: #28A745;
    --gradient-primary: linear-gradient(135deg, #800000 0%, #A52A2A 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

picture {
    display: block;
    width: 100%;
    height: 100%;
}

picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

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

.nav-link:hover::after,
.nav-link.active::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}



/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease-in-out;
    }
    
     .nav-menu.active {
        right: 0 !important;
        display: flex !important;
    }
    
    .nav-link {
        width: 100%;
        padding: 0.75rem 0;
    }
    
    .nav-link-cta {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

/* Prevent body scroll when menu is open */
body.no-scroll {
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 70px;
}

.hero-bg-picture {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(15px); }
}

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

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

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

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

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.4);
}

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

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

.btn-block {
    width: 100%;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 700px;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
    transition: var(--transition);
}

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

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-quote {
    background: var(--light-gray);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    margin: 2rem 0;
}

.about-quote p {
    margin: 0;
    font-style: italic;
    color: var(--text-dark);
}

/* Values Section */
.values {
    background: var(--white);
    color: var(--text-dark);
}

.values .section-tag {
    color: var(--primary-color);
}

.values .section-title {
    color: var(--secondary-color);
}

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

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.value-card:hover h3,
.value-card:hover p {
    color: var(--white);
}

.value-card:hover .value-icon {
    background: var(--white);
}

.value-card:hover .value-icon svg {
    stroke: var(--primary-color);
}

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
    transition: var(--transition);
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--secondary-color);
    color: var(--white);
}

.why-choose-us .section-tag {
    color: #FF6B6B;
}

.why-choose-us .section-title {
    color: var(--white);
}

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

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.reason-item:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.reason-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.reason-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.reason-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-choose-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services {
    background: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    will-change: transform, box-shadow;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    will-change: transform;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
}

/* Products Section */
.products {
    background: var(--secondary-color);
    color: var(--white);
}

.products .section-tag {
    color: #FF6B6B;
}

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

.products .section-description {
    color: rgba(255, 255, 255, 0.8);
}

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

.product-card-simple {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.product-card-simple:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--secondary-color);
    border-color: var(--primary-color);
}

.product-card-simple:hover h3 {
    color: var(--white);
}

.product-card-simple:hover .product-bullets li {
    color: rgba(255, 255, 255, 0.9);
}

.product-card-simple:hover .product-bullets li::before {
    color: var(--primary-color);
}

.product-image-simple {
    height: 200px;
    overflow: hidden;
}

.product-image-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card-simple:hover .product-image-simple img {
    transform: scale(1.1);
}

.product-content-simple {
    padding: 1.5rem;
}

.product-content-simple h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.product-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-bullets li {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    transition: var(--transition);
}

.product-bullets li:last-child {
    margin-bottom: 0;
}

.product-bullets li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1rem;
    transition: var(--transition);
}

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

.products-image-section .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.product-image-display {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 600px;
}

.product-image-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.products-list-section {
    display: flex;
    flex-direction: column;
}

.product-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.product-card:hover,
.product-card.active {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.98);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.product-header h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 0;
}

.product-check {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-features li {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    margin-top: 2px;
}

.product-features li div {
    flex: 1;
}

.product-features strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.product-features span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    line-height: 1.5;
}

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

.product-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.8), rgba(165, 42, 42, 0.7));
    z-index: 0;
}

.product-category:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.category-header {
    background: transparent;
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-header h3 {
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-list {
    padding: 1.5rem;
}

.product-list li {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.product-list li:last-child {
    margin-bottom: 0;
}

.product-list li:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--primary-color);
}

.product-list strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.product-list span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Contact */
        .contact {
            padding: 3rem 2rem;
            background: var(--light-bg);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: stretch;
            background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.95));
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(15,23,42,0.06);
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-info {
            padding: 0.5rem 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            border-radius: 10px;
            color: var(--white);
            box-shadow: var(--shadow-md);
            flex-shrink: 0;
            font-size: 1.3rem;
        }

        .contact-details h3 {
            font-size: 1rem;
            margin: 0 0 6px;
            color: var(--primary-color);
        }

        .contact-details p {
            margin: 0;
            color: var(--light-text);
            font-size: 0.95rem;
        }

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

        .contact-details a:hover {
            text-decoration: underline;
        }

        .social-links {
            margin-top: 0.5rem;
        }

        .social-links h3 {
            margin: 10px 0 8px;
            color: var(--primary);
            font-size: 1rem;
        }

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

        .social-icons a {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.04);
            border-radius: 8px;
            color: var(--dark-text);
            transition: all 0.18s;
        }

        .social-icons a:hover {
            transform: translateY(-4px);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: #fff;
        }

        .social-icons img {
            height: 20px;
            width: auto;
        }

        .contact-map {
            min-height: 400px;
            height: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: inset 0 0 0 1px rgba(15,23,42,0.03);
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border: 0;
            display: block;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .contact {
                padding: 2rem 1rem;
            }
        }

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(26, 26, 26, 0.9) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

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

.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 10px;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.yp-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.yp-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

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

.yp-logo-footer {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 4px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .why-choose-content,
    .contact-content,
    .products-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-image {
        order: -1;
        max-height: 400px;
    }

    .product-image-display {
        height: 400px;
    }

    .products-image-section {
        order: -1;
    }

    .products-image-section .section-header {
        text-align: center;
    }

    .products-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-map-wrapper {
        height: 450px;
    }

    .map-overlay {
        position: static;
        margin-top: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .logo-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 999;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    .footer {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(26, 26, 26, 0.9) 100%);
    }

    .hero {
        margin-top: 70px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-header {
        text-align: center;
    }

    .section-header.center {
        text-align: center;
    }

    .services-grid,
    .products-grid,
    .products-grid-simple {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 400px;
    }

    .about-image img {
        min-height: 400px;
    }

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

    .footer-column {
        text-align: center;
    }

    .footer-column h3 {
        text-align: center;
    }

    .footer-column ul {
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-credit {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .about-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem;
    }

    .badge-number {
        font-size: 2rem;
    }

    .contact-map-wrapper {
        height: 400px;
    }

    .map-overlay {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }

    .map-overlay h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 500px;
        height: 100vh;
        max-height: 600px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-header {
        text-align: center;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .value-card,
    .service-content,
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .reason-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .reason-number {
        margin: 0 auto;
    }

    .reason-content h3 {
        text-align: center;
    }

    .reason-content p {
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-header h3 {
        font-size: 1.1rem;
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .value-card,
    .service-card,
    .reason-item,
    .contact-item {
        opacity: 0;
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .value-card:nth-child(1) { animation-delay: 0.1s; }
    .value-card:nth-child(2) { animation-delay: 0.2s; }
    .value-card:nth-child(3) { animation-delay: 0.3s; }
}

/* Print Styles */
@media print {
    .header,
    .hero,
    .footer,
    .nav-toggle,
    .btn {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}
