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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn--primary {
    background-color: #2563eb;
    color: white;
}

.btn--primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn--secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn--secondary:hover {
    background-color: #2563eb;
    color: white;
}

.btn--large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav__logo {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
    color: #2563eb;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav__toggle-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.hero__brand {
    color: #2563eb;
}

.hero__description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #64748b;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
}

.hero__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.page-header__title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Section Styles */
.section__title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.section__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

/* Value Props */
.value-props {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.value-prop {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-prop:hover {
    transform: translateY(-5px);
}

.value-prop__icon {
    margin-bottom: 1.5rem;
}

.value-prop__img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.value-prop__title {
    margin-bottom: 1rem;
    color: #1e293b;
}

/* Products Teaser */
.products-teaser {
    padding: 80px 0;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card__title {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1e293b;
}

.product-card__description {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
}

.products__cta {
    text-align: center;
}

/* Quality Badges */
.quality-badges {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.badge {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.badge__title {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Client Trust */
.client-trust {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.trust__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust__description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial__text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #64748b;
}

.testimonial__author strong {
    color: #1e293b;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial__author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.cta__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta__description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

.footer__title {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.footer__subtitle {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.footer__description {
    margin-bottom: 1rem;
    color: #94a3b8;
}

.footer__contact p {
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #60a5fa;
}

.footer__bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* About Page Styles */
.company-overview {
    padding: 80px 0;
}

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

.overview__description {
    margin-bottom: 1.5rem;
}

.overview__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Manufacturing */
.manufacturing {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.capability {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.capability__image {
    margin-bottom: 1.5rem;
}

.capability__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Materials */
.materials {
    padding: 80px 0;
}

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

.materials__subtitle {
    color: #2563eb;
    margin-bottom: 1rem;
}

.materials__list {
    list-style: none;
    margin-top: 1rem;
}

.materials__list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.materials__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.materials__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Quality Compliance */
.quality-compliance {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.compliance__item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.compliance__title {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Location */
.location {
    padding: 80px 0;
}

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

.location__subtitle {
    color: #2563eb;
    margin-bottom: 1rem;
}

.location__address {
    margin-top: 1rem;
    font-style: normal;
}

.location__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Distribution */
.distribution {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.feature {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature__title {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

/* Services Page Styles */
.products-overview {
    padding: 80px 0;
    background-color: #f8fafc;
}

.product-categories {
    padding: 80px 0;
}

.product-category {
    margin-bottom: 4rem;
}

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

.product-category:nth-child(even) .product-category__content {
    direction: rtl;
}

.product-category:nth-child(even) .product-category__text {
    direction: ltr;
}

.product-category__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.product-category__features {
    list-style: none;
    margin: 1rem 0;
}

.product-category__features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-category__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Specifications */
.specifications {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.spec__card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.spec__title {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Applications */
.applications {
    padding: 80px 0;
}

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

.application {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.application__title {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact {
    padding: 80px 0;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__title {
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact__description {
    margin-bottom: 2rem;
    color: #64748b;
}

/* Form Styles */
.contact__form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e293b;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form__checkbox {
    margin-top: 0.25rem;
}

.form__checkbox-label {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

.form__error {
    display: block;
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form__message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 500;
}

.form__message--success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form__message--error {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.form__submit {
    width: 100%;
}

/* Contact Info */
.contact__info-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact__item {
    margin-bottom: 2rem;
}

.contact__item-title {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.contact__detail {
    color: #64748b;
}

.contact__link {
    color: #2563eb;
    text-decoration: none;
}

.contact__link:hover {
    text-decoration: underline;
}

.contact__address {
    font-style: normal;
    color: #64748b;
}

/* Map */
.contact__map {
    margin-top: 2rem;
}

.map__container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Why Contact */
.why-contact {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.why-contact__item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.why-contact__title {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

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

.legal__last-updated {
    color: #64748b;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal__section-title {
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal__subsection-title {
    color: #2563eb;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal__text {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal__list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal__list li {
    margin-bottom: 0.5rem;
}

.legal__contact {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__toggle {
        display: flex;
    }

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

    .nav__toggle.active .nav__toggle-line:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active .nav__toggle-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__buttons {
        justify-content: center;
    }

    .overview__content,
    .materials__content,
    .location__content,
    .contact__content {
        grid-template-columns: 1fr;
    }

    .product-category__content {
        grid-template-columns: 1fr;
    }

    .product-category:nth-child(even) .product-category__content {
        direction: ltr;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .page-header__title {
        font-size: 2.5rem;
    }

    .trust__title {
        font-size: 2rem;
    }

    .cta__title {
        font-size: 2rem;
    }
}

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

    .hero {
        padding: 100px 0 60px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .value-props__grid,
    .products__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

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

    .stat__number {
        font-size: 2.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.form__input:focus,
.form__textarea:focus,
.nav__link:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta,
    .nav__toggle {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero,
    .page-header {
        padding: 20px 0;
    }
}
