/* ===========================
   RESET & BASE STYLES
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

h2 i {
    color: #1a73e8;
    margin-right: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

a {
    color: #1a73e8;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #1557b0;
}

/* ===========================
   CONTAINER & LAYOUT
   =========================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 50px;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.logo-text {
    display: none;
    font-size: 1rem;
    color: #1a1a2e;
}

@media (min-width: 768px) {
    .logo {
        gap: 15px;
        height: 55px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text {
        display: inline;
        font-size: 1rem;
        font-weight: 700;
        color: #1a1a2e;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a73e8;
    background: rgba(26, 115, 232, 0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    color: white;
    margin-bottom: 20px;
    font-size: clamp(2rem, 8vw, 3.5rem);
    animation: slideUp 0.8s ease;
}

.hero h1 i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    animation: slideUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease 0.4s backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: #1a73e8;
    color: white;
}

.btn-primary:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}

.btn-secondary {
    background: white;
    color: #1a73e8;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* ===========================
   FEATURES SECTION
   =========================== */

.features {
    padding: 80px 20px;
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    padding: 40px 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #e8f0ff 0%, #f0e8ff 100%);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: #1a73e8;
}

.feature-icon i {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* ===========================
   BRANDS SECTION
   =========================== */

.brands {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.brands h2 {
    color: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.brand-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.brand-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.brand-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.brand-card p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* ===========================
   WAREHOUSE SECTION
   =========================== */

.warehouse {
    padding: 80px 20px;
    background: white;
}

.warehouse-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.warehouse-info {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
    padding: 50px;
    border-radius: 12px;
    border-left: 5px solid #1a73e8;
}

.warehouse-info h3 {
    color: #1a73e8;
    margin-bottom: 20px;
}

.warehouse-list {
    list-style: none;
    margin-top: 25px;
}

.warehouse-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: #333;
    border-bottom: 1px solid rgba(26, 115, 232, 0.1);
}

.warehouse-list li i {
    color: #1a73e8;
    margin-right: 12px;
    font-weight: bold;
}

.warehouse-list li:last-child {
    border-bottom: none;
}

/* ===========================
   CTA SECTION
   =========================== */

.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1a73e8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .hero {
        padding: 60px 20px;
        min-height: 60vh;
        background-attachment: fixed;
    }

    .hero-bg-image {
        opacity: 0.3;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
        border: none;
    }

    .menu-toggle {
        display: flex;
    }

    .features-grid,
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card,
    .brand-card {
        padding: 30px 20px;
    }

    .warehouse-info {
        padding: 30px 20px;
        border-left: 3px solid #1a73e8;
    }

    .footer-content {
        gap: 30px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .partners-clients-image {
        overflow: hidden;
    }

    .partners-clients-image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.95rem;
    }

    .hero {
        padding: 20px 15px 50px 15px;
        min-height: 55vh;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .hero-buttons {
        gap: 8px;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 240px;
    }

    .navbar-container {
        height: 60px;
        padding: 0 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .features,
    .brands,
    .warehouse,
    .cta {
        padding: 50px 15px;
    }

    .feature-card,
    .brand-card {
        padding: 20px 12px;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .warehouse-info {
        padding: 20px 15px;
    }

    .footer {
        padding: 40px 15px 15px;
    }

    .footer-section h4 {
        font-size: 1rem;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===========================
   ACCESSIBILITY
   =========================== */

:focus-visible {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}

/* ===========================
   ONE-PAGE STYLES
   =========================== */

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.brand-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.brand-header {
    padding: 40px 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.brand-header h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.brand-content {
    padding: 30px;
}

.brand-content p {
    margin-bottom: 20px;
    color: #666;
}

.product-list {
    list-style: none;
    margin: 0;
}

.product-list li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.product-list li i {
    color: #1a73e8;
    margin-right: 10px;
    font-size: 0.9rem;
}

.product-list li:last-child {
    border-bottom: none;
}

/* Section: Products */
.products {
    padding: 80px 20px;
    background: white;
}

.products h2 {
    color: #1a1a2e;
}

/* Warehouse Content */
.warehouse-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.warehouse-info {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #1a73e8;
}

.warehouse-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.warehouse-image img {
    width: 100%;
    height: auto;
    display: block;
}

.certifications {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
}

.certifications h2 {
    color: #1a1a2e;
}

.cert-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.cert-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.cert-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.cert-badge {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 15px;
    display: block;
}

.cert-item h4 {
    color: #1a1a2e;
    margin: 15px 0;
    font-size: 1.2rem;
}

.cert-item p {
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 20px;
}

.cert-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.partners h2 {
    color: white;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 40px;
}

.partners-banner {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    background: white;
}

.partners-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.partners-text-container {
    padding: 50px 20px;
}

.partners-text {
    text-align: center;
}

.partners-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.partners-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.partners-text p:last-child {
    margin-bottom: 0;
}

.partners-clients-image {
    margin-top: 50px;
    background: white;
    padding: 30px;
    border-radius: 12px;
}

.partners-clients-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: white;
}

.contact-section h2 {
    color: #1a1a2e;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form-wrapper,
.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper h3,
.contact-info h3 {
    margin-bottom: 30px;
    color: #1a1a2e;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group label i {
    color: #1a73e8;
    margin-right: 8px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.recaptcha-group {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.75);
        transform-origin: 0 0;
    }
}

.contact-info {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
    padding: 40px;
    border-radius: 12px;
}

.contact-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(26, 115, 232, 0.1);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item h4 {
    color: #1a73e8;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-item h4 i {
    margin-right: 8px;
}

.contact-item p {
    margin-bottom: 5px;
    font-size: 1rem;
    color: #666;
}

.contact-item a {
    color: #1a73e8;
    font-weight: 600;
}

.contact-item a:hover {
    color: #1557b0;
}

.time {
    color: #999;
    font-size: 0.9rem !important;
}

/* ===========================
   RESPONSIVE FOR ONE PAGE
   =========================== */

@media (max-width: 768px) {
    .warehouse-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .partners {
        padding: 60px 0;
    }

    .partners h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .partners-banner {
        max-height: 300px;
    }

    .partners-text-container {
        padding: 30px 15px;
    }

    .brand-header {
        padding: 30px 20px;
    }

    .brand-header h3 {
        font-size: 1.3rem;
    }

    .brand-content {
        padding: 20px;
    }

    .warehouse-info,
    .contact-info {
        padding: 25px;
    }

    .certs-grid {
        grid-template-columns: 1fr;
    }

    .cert-item {
        padding: 20px;
    }

    .contact-form {
        gap: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brand-card {
        margin: 0;
    }

    .brand-header {
        padding: 25px 15px;
    }

    .brand-content {
        padding: 15px;
    }

    .products,
    .warehouse,
    .certifications,
    .partners,
    .contact-section {
        padding: 50px 0;
    }

    .partners h2 {
        padding: 50px 15px 0 15px;
    }

    .partners-banner {
        max-height: 250px;
    }

    .partners-text-container {
        padding: 20px 15px;
    }

    .warehouse-info,
    .contact-info {
        padding: 20px 15px;
    }

    .contact-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}
