/* Root Variables */
:root {
    --primary: #4d3254;
    --accent: #e3a75c;
    --text: #333;
    --light-bg: #f9f9f9;
    --border: #e0e0e0;
}

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

html, body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

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

/* Header & Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    max-width: 130px;
    height: auto;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
}

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

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

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

.nav-container {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 180px;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-menu .menu-item-has-children:hover > .sub-menu {
    display: flex;
}

.nav-menu .sub-menu a {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary);
    color: var(--accent);
    border: 2px solid var(--accent);
}

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

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

.btn-cta {
    background: var(--primary);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-cta:hover {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    color: #fff;
    border: none;
}

.btn-whatsapp i {
    margin-right: 0.75rem;
}

/* Hero Section */
.hero {
    background: var(--primary);
    color: #fff;
    padding: 11rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--light-bg);
}

.about p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.stat-item h3 {
    color: var(--accent);
    font-size: 2.5rem;
}

.stat-item p {
    margin: 0;
    color: var(--text);
}

/* Product Categories Section */
.product-categories {
    padding: 4rem 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    margin-top: -0.5rem;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    text-decoration: none;
    color: inherit;
    padding: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s;
    overflow: hidden;
}

.card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.card h3 {
    color: var(--primary);
    padding: 1rem 1rem 0.5rem;
}

.card p {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
}

/* Why Partner Section */
.why-partner {
    background: var(--light-bg);
    padding: 4rem 0;
}

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

.advantage-item {
    text-align: center;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--accent);
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
}

.advantage-item h3 {
    margin-bottom: 1rem;
}

.advantage-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Brands Section */
.brands {
    padding: 4rem 0;
    background: var(--light-bg);
    text-align: center;
}

.brands h2 {
    margin-bottom: 1rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
}

.brands-grid img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
    padding: 1rem;
}

.brands-grid img:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .brands-grid img {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .brands-grid img {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .brands-grid img {
        height: 60px;
    }
}

/* Final CTA Section */
.final-cta {
    background: var(--accent);
    padding: 4rem 0;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1rem;
    color: var(--primary);
}

.cta-button {
    flex: 0 0 auto;
}

/* Footer */
footer {
    background: var(--primary);
    color: #fff;
    padding: 3rem 0 0;
    margin: 0;
}

.footer-content {
    padding: 3rem 0;
}

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

.footer-section {
    flex: 1;
}

.footer-logo img {
    max-width: 140px;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

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

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--accent);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.2rem;
}

.footer-bottom {
    background: var(--primary);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent);
    text-decoration: none;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #5a3d7a 100%);
    color: #fff;
    padding: 3rem 0;
}

.page-hero h1 {
    color: #fff;
}

.page-content {
    padding: 3rem 0;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* Who We Are Section */
.who-we-are {
    padding: 4rem 0;
    background: #fff;
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.who-we-are-text h2 {
    margin-bottom: 1.5rem;
}

.who-we-are-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
}

.who-we-are-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.about-stats {
    padding: 4rem 0;
    background: var(--light-bg);
}

.about-stats h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* QA Page */
.qa-hero {
    padding: 4rem 0;
    background: #fff;
}

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

.qa-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.qa-text h2 {
    margin-bottom: 1.5rem;
}

.qa-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
}

.qa-standards {
    padding: 4rem 0;
    background: var(--light-bg);
}

.qa-standards h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.standard-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--accent);
}

.standard-item h3 {
    margin-bottom: 1rem;
}

.standard-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.qa-process {
    padding: 4rem 0;
}

.qa-process h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    line-height: 50px;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
}

/* Sectors Page */
.sectors-hero {
    padding: 4rem 0;
    background: #fff;
}

.sectors-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sectors-hero-text h2 {
    margin-bottom: 1.5rem;
}

.sectors-hero-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
}

.sectors-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.sectors-cards {
    padding: 4rem 0;
    background: var(--light-bg);
}

.sectors-cards h2 {
    margin-bottom: 3rem;
}

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

.sector-card {
    background: #fff;
    padding: 0;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s;
}

.sector-card:hover {
    box-shadow: 0 8px 24px rgba(77, 50, 84, 0.12);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.sector-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.sector-content {
    padding: 2rem;
}

.sector-content h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.sector-content p {
    color: #666;
    line-height: 1.7;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    margin-bottom: 1.5rem;
}

.contact-form-wrapper p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(227, 167, 92, 0.1);
}

.form-message {
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.contact-info-wrapper {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-item {
    margin-bottom: 2rem;
}

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

.contact-info-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #666;
    line-height: 1.7;
}

.contact-info-item a {
    color: var(--accent);
    text-decoration: none;
}

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

.contact-map {
    padding: 0;
    margin-top: 3rem;
}

.container-full {
    width: 100%;
}

/* Products Archive */
.products-archive {
    padding: 3rem 0;
}

.products-filter {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.filter-search form {
    display: flex;
    gap: 1rem;
}

.filter-search input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.95rem;
}

.filter-search input:focus {
    outline: none;
    border-color: var(--accent);
}

.filter-categories {
    display: flex;
    flex-direction: column;
}

.filter-categories label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.filter-categories select {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.95rem;
}

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

.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(77, 50, 84, 0.12);
    border-color: var(--accent);
    text-decoration: none;
    color: inherit;
}

.product-card h3 {
    text-decoration: none;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.category-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.product-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.pagination {
    text-align: center;
    margin-top: 2rem;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 0.75rem 1rem;
    margin: 0.25rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    text-decoration: none;
    color: var(--primary);
}

.pagination a:hover {
    background: var(--accent);
    color: var(--primary);
}

.pagination .current {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Single Product Page */
.single-product {
    padding: 0;
}

.product-detail-grid {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-detail-image {
    width: 100%;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-detail-content h2 {
    margin-bottom: 1.5rem;
}

.product-category-detail {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 4px;
}

.product-category-detail p {
    margin: 0;
}

.product-category-detail a {
    color: var(--accent);
    text-decoration: none;
}

.product-category-detail a:hover {
    text-decoration: underline;
}

.product-description {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
}

/* Related Products Carousel */
.related-products-carousel {
    padding: 2rem 0;
    background: transparent;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
}

.related-products-carousel h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    scrollbar-width: none;
}

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

.carousel-product-card {
    flex: 0 0 100%;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

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

.carousel-product-image {
    width: 100%;
    height: 120px;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.carousel-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-product-card h4 {
    font-size: 0.85rem;
    margin: 0;
    color: var(--primary);
}

.carousel-arrow {
    background: var(--accent);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: var(--primary);
}

/* Tablet - 2-3 items */
@media (min-width: 768px) {
    .carousel-product-card {
        flex: 0 0 calc(50% - 0.5rem);
    }
    
    .carousel-product-image {
        height: 150px;
    }
}

/* Desktop - 4-5 items */
@media (min-width: 1024px) {
    .carousel-product-card {
        flex: 0 0 calc(25% - 0.75rem);
    }
    
    .carousel-product-image {
        height: 150px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .nav-container.active {
        max-height: 500px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 1rem 20px;
        width: 100%;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--border);
    }
    
    .nav-menu a {
        padding: 0.8rem 0;
    }
    
    .nav-menu .sub-menu {
        position: static;
        background: var(--light-bg);
        border: none;
        box-shadow: none;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .nav-menu .sub-menu.active {
        max-height: 500px;
    }
    
    .nav-menu .sub-menu a {
        padding: 0.6rem 0 0.6rem 1rem;
    }
    
    .logo img {
        max-width: 100px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero, .final-cta {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .cta-button .btn {
        width: 100%;
        display: block;
    }
    
    .category-cards, .advantages-list, .sector-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .who-we-are-content {
        grid-template-columns: 1fr;
    }
    
    .who-we-are-image img {
        height: 250px;
    }
    
    .qa-content {
        grid-template-columns: 1fr;
    }
    
    .qa-image img {
        height: 250px;
    }
    
    .sectors-hero-content {
        grid-template-columns: 1fr;
    }
    
    .sectors-hero-image img {
        height: 250px;
    }
    
    .sectors-list {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .products-filter {
        grid-template-columns: 1fr;
    }
    
    .filter-search form {
        flex-direction: column;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .sectors-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .logo img {
        max-width: 100px;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

