/* =================================================
| MILLIGANS FEEDS - GLOBAL STYLES                  |
================================================== */
:root {
    /* --- COLOR PALETTE --- */
    --primary-red: #cb082b;
    --dark-red: #7d2323;
    --text-dark: #1a1a1a;
    --text-light: #5a6a7b;
    --background-light: #FFFFFF;
    --background-card: #efeeec;
    --border-color: #DEE2E6;
    --white: #FFFFFF;
    --taupe: #a89594;

    /* --- TYPOGRAPHY --- */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* --- Base & Typography --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 10px 0;
    font-weight: 700;
    color: var(--dark-red);
    line-height: 1.2;
    font-family: var(--font-primary);
}
h1 { font-size: clamp(40px, 8vw, 70px); font-weight: 900; }
h2 { font-size: clamp(32px, 5vw, 50px); }
h3 { font-size: clamp(24px, 4vw, 32px); }
p { margin: 0 0 15px 0; max-width: 650px; color: var(--text-light); }
a { text-decoration: none; color: var(--primary-red); transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1); }
a:hover { color: var(--dark-red); }
.accent-text { color: var(--primary-red); }

/* --- Layout & Structure --- */
.section { padding: 100px 0; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; box-sizing: border-box; }

/* --- Reusable Components --- */
.container-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.label-txt { font-size: 14px; font-weight: 600; color: var(--primary-red); text-transform: uppercase; letter-spacing: 1.5px; font-family: var(--font-primary); }
.label-indicator { width: 30px; height: 2px; background-color: var(--primary-red); }
.container-btn-main {
    display: inline-block; position: relative; padding: 12px 28px; border: 2px solid var(--primary-red);
    color: var(--primary-red); background-color: transparent; border-radius: 50px;
    font-weight: 600; font-size: 14px; transition: all 0.25s ease; white-space: nowrap; font-family: var(--font-primary);
}
.container-btn-main:hover { background-color: var(--primary-red); color: var(--white); transform: translateY(-3px); }

/* =================================================
| NAVIGATION                                        |
================================================== */
.section-nav-top {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background-color: transparent; box-shadow: none;
}
.section-nav-top.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.container-nav-desktop { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; width: 100%; max-width: 1200px; margin: 0 auto; box-sizing: border-box; }
.container-nav-d-logo img { height: 50px; transition: height 0.4s ease; }
.section-nav-top.scrolled .container-nav-d-logo img { height: 40px; }
.container-nav-d-links { display: flex; align-items: center; gap: 1.5rem; }
.container-nav-d-links .nav-link {
    color: var(--text-dark); font-size: 16px; white-space: nowrap; transition: color 0.3s ease;
    font-family: var(--font-primary); font-weight: 600;
}
.section-nav-top:not(.scrolled) .container-nav-d-links .nav-link { color: var(--white); text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.container-nav-d-links .nav-link:hover, .container-nav-d-links .nav-link.active { color: var(--primary-red); }
.nav-cta-btn { padding: 8px 16px; border-color: var(--white); color: var(--white); }
.section-nav-top.scrolled .nav-cta-btn { border-color: var(--primary-red); color: var(--primary-red); }
.section-nav-top.scrolled .nav-cta-btn:hover { color: var(--white); }
.nav-cta-btn i { margin-right: 8px; }
.menu_tablet {
    display: none; width: 52px; height: 52px; padding: 0; border: none; border-radius: 50%;
    background: transparent; color: var(--dark-red); cursor: pointer; z-index: 1001;
    position: relative; align-items: center; justify-content: center;
    transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.menu_tablet-bar {
    position: absolute; width: 28px; height: 3px; border-radius: 999px;
    background: currentColor; transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu_tablet-bar-1 { transform: translateY(-8px); }
.menu_tablet-bar-2 { transform: translateY(0); }
.menu_tablet-bar-3 { transform: translateY(8px); }
.menu_tablet.is-open .menu_tablet-bar-1 { transform: rotate(45deg); }
.menu_tablet.is-open .menu_tablet-bar-2 { opacity: 0; }
.menu_tablet.is-open .menu_tablet-bar-3 { transform: rotate(-45deg); }
.menu_tablet:focus-visible,
.mobile-submenu-toggle:focus-visible {
    outline: 2px solid rgba(203, 8, 43, 0.35);
    outline-offset: 3px;
}
.section-nav-top:not(.scrolled) .menu_tablet {
    color: var(--white);
    background: rgba(26, 26, 26, 0.24);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}
.section-nav-top.scrolled .menu_tablet,
.section-nav-top.menu-open .menu_tablet {
    color: var(--primary-red);
    background: rgba(203, 8, 43, 0.08);
    border: 1px solid rgba(203, 8, 43, 0.16);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* --- Mobile Navigation --- */
body.mobile-menu-open { overflow: hidden; }
.mobile-menu-backdrop {
    display: none; position: fixed; inset: 0; background: rgba(26, 26, 26, 0.38);
    opacity: 0; visibility: hidden; pointer-events: none; z-index: 997;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-menu-backdrop.is-visible {
    opacity: 1; visibility: visible; pointer-events: auto;
}
.container-menu-devices {
    display: none; position: fixed; top: 0; right: 0; width: min(86vw, 420px); height: 100vh;
    padding: 6.5rem 1.5rem 2rem; background: linear-gradient(180deg, #f6f1eb 0%, #ffffff 100%);
    box-shadow: -24px 0 50px rgba(0,0,0,0.16); flex-direction: column; align-items: stretch;
    justify-content: flex-start; gap: 1.5rem; z-index: 998; overflow-y: auto;
    transform: translateX(100%); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, visibility 0.2s ease;
}
.container-menu-devices.menu-open {
    transform: translateX(0); opacity: 1; visibility: visible; pointer-events: auto;
}
.mobile-menu-inner {
    display: flex; flex-direction: column; min-height: 100%; width: 100%;
}
.menu-d-links-list {
    list-style: none; padding: 0; margin: 0; width: 100%;
}
.menu-d-links-list li { margin-bottom: 0; }
.mobile-nav-item {
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
.mobile-nav-row {
    display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
    padding: 0.2rem 0.25rem; cursor: pointer;
}
.mobile-nav-link {
    display: flex; align-items: center; width: 100%; padding: 1rem 0.25rem;
    font-size: clamp(1.05rem, 3vw, 1.28rem); color: var(--text-dark);
    font-family: var(--font-primary); font-weight: 700;
}
.mobile-nav-row .mobile-nav-link { flex: 0 0 auto; width: auto; min-width: 0; padding: 0.8rem 0; }
.mobile-nav-link.active,
.mobile-nav-link:hover,
.mobile-submenu a.active,
.mobile-submenu a:hover { color: var(--primary-red); }
.mobile-submenu-toggle {
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 52px; height: 52px; padding: 0; border: none; border-radius: 50%;
    background: transparent; color: var(--text-dark); cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}
.mobile-nav-row:hover .mobile-submenu-toggle,
.mobile-nav-row:hover .mobile-submenu-toggle-icon {
    color: var(--primary-red);
}
.mobile-submenu-toggle:hover {
    background: rgba(203, 8, 43, 0.08); color: var(--primary-red);
}
.mobile-submenu-toggle-icon {
    width: 10px; height: 10px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px); transition: transform 0.25s ease;
}
.mobile-submenu-toggle[aria-expanded="true"] .mobile-submenu-toggle-icon {
    transform: rotate(-135deg) translateY(2px);
}
.mobile-submenu {
    list-style: none; margin: 0; padding: 0 0 0 1rem; max-height: 0; overflow: hidden;
    opacity: 0; transition: max-height 0.3s ease, opacity 0.2s ease, padding-bottom 0.2s ease;
}
.mobile-nav-item.submenu-open .mobile-submenu {
    opacity: 1; padding-bottom: 0.75rem;
}
.mobile-submenu a {
    display: block; padding: 0.75rem 0.25rem; font-size: 0.96rem; color: var(--text-light);
    font-family: var(--font-primary); font-weight: 600;
}
.mobile-menu-cta {
    margin-top: auto; align-self: flex-start;
}

/* =================================================
| HERO SECTION                                      |
================================================== */
.section-hero { min-height: 100vh; display: flex; align-items: center; padding: 0; position: relative; }
.hero-background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; z-index: -1;
}
.hero-background video {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-bg::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 26, 26, 0.65);
}
.container-hero-main { padding: 0 2rem; max-width: 1200px; margin: 0 auto; text-align: center; }
.hero-title { color: var(--white); }
.hero-subtitle { font-size: 1.2rem; color: var(--primary-red); margin-top: 1rem; margin-bottom: 1rem; font-family: var(--font-primary); font-weight: 600; letter-spacing: 1px; }
.hero-text { color: rgba(255, 255, 255, 0.9); margin: 20px auto 30px; font-size: 1.1rem; max-width: 800px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 3rem; justify-content: center; }
.hero-buttons .container-btn-main { border-color: var(--primary-red); color: var(--primary-red); background-color: transparent; }
.hero-buttons .container-btn-main:hover { background-color: var(--primary-red); color: var(--white); }
.hero-buttons .container-btn-main:nth-child(1) { background-color: var(--primary-red); color: var(--white); }
.hero-buttons .container-btn-main:nth-child(1):hover { background-color: var(--dark-red); border-color: var(--dark-red); }

/* =================================================
| COMMITMENT / SERVICES SECTION                     |
================================================== */
#commitment {
    background-color: var(--background-light);
}
#commitment h2, #commitment .label-txt { color: var(--dark-red); }
#commitment .label-indicator { background-color: var(--primary-red); }
#commitment > .container > p { color: var(--text-light); }
.services-sticky-section { padding-bottom: 0; }
.services-wrapper { display: flex; gap: 5rem; margin-top: 3rem; }
.services-nav { flex: 1; }
.services-nav ul { list-style: none; position: sticky; top: 120px; }
.services-nav li { margin-bottom: 1.5rem; }
.services-nav a {
    display: block; font-family: var(--font-primary); font-size: 1.5rem; font-weight: 600;
    color: var(--taupe); transition: all 0.3s ease; border-left: 3px solid var(--border-color); padding-left: 20px;
}
.services-nav a.active { color: var(--primary-red); border-left-color: var(--primary-red); }
.services-content { flex: 2; }
.service-panel { min-height: 80vh; padding-bottom: 5rem; }
.service-panel h3 { font-size: 2.5rem; margin-bottom: 2rem; color: var(--dark-red); }
.service-panel p { max-width: 100%; color: var(--text-light); }
.service-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.service-feature {
    background: var(--background-card); padding: 1.5rem; border-radius: 8px; display: flex;
    align-items: flex-start; gap: 1rem; border: 1px solid var(--border-color);
}
.service-feature i { font-size: 1.2rem; color: var(--primary-red); margin-top: 5px; }
.service-feature div { color: var(--text-light); }
.service-feature strong { color: var(--dark-red); display: block; margin-bottom: 0.25rem; }

/* =================================================
| WHY CHOOSE US SECTION                             |
================================================== */
.why-choose-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: flex-start; margin-top: 3rem; }
.why-choose-sticky { position: sticky; top: 120px; height: 70vh; }
.why-choose-image-wrap { width: 100%; height: 100%; border-radius: 4px; overflow: hidden; box-shadow: 0 10px 30px -15px rgba(44, 62, 80, 0.2); }
.why-choose-image { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.advantages-list { display: flex; flex-direction: column; gap: 2rem; padding: 1vh 0; }
.advantage-item { background-color: var(--white); padding: 2rem; border-radius: 4px; box-shadow: 0 10px 30px -15px rgba(44, 62, 80, 0.1); border: 1px solid var(--border-color); opacity: 0.6; transform: translateY(10px); transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1); will-change: opacity, transform, border-color; }
.advantage-item.is-active { opacity: 1; transform: translateY(0); border-color: var(--primary-red); }
.advantage-icon { font-size: 2.5rem; color: var(--primary-red); margin-bottom: 1rem; display: block; }
.advantage-item h4 { font-size: 1.3rem; color: var(--dark-red); margin-bottom: 0.5rem; }
.advantage-item p { font-size: 16px; color: var(--text-light); margin: 0; max-width: 100%; }

/* =================================================
| ABOUT / OUR STORY SECTION                         |
================================================== */
.about-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; margin-bottom: 100px; }
.about-content p { max-width: 100%; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.value-item { display: flex; align-items: center; gap: 1rem; background: var(--background-card); padding: 1rem; border-radius: 4px; }
.value-item i { font-size: 1.2rem; color: var(--primary-red); }
.value-item span { font-weight: 600; font-size: 1rem; color: var(--text-dark); }

.about-image-wrapper { position: relative; max-width: 450px; }
.about-image-box { position: relative; width: 100%; border-radius: 4px; background-color: var(--primary-red); }
.about-image-box::after { content: ''; display: block; position: absolute; width: 100%; height: 100%; border-radius: 4px; transition: all 0.25s ease; border: 2px solid var(--primary-red); top: 15px; left: 15px; z-index: -1; }
.about-image-box:hover::after { top: 10px; left: 10px; }
.about-image-box img { width: 100%; display: block; position: relative; border-radius: 4px; transition: all 0.25s ease; }
.about-video-wrapper { width: 100%; max-width: 560px; }
.about-video-box { aspect-ratio: 16 / 9; overflow: hidden; }
.about-video-box iframe {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    border: 0;
    border-radius: 4px;
}

/* =================================================
| SUCCESS METRICS SECTION                           |
================================================== */
.success-metrics {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem; margin-top: 4rem; text-align: center;
}
.metric-item {
    padding: 1.5rem; background: var(--background-card); border-radius: 8px;
    border: 1px solid var(--border-color); box-shadow: 0 4px 15px rgba(44, 62, 80, 0.05);
}
.metric-number {
    font-family: var(--font-primary); font-size: 3rem; font-weight: 700; color: var(--primary-red);
}
.metric-label { font-size: 1rem; color: var(--text-light); }

/* =================================================
| CATEGORIES SECTION                                |
================================================== */
#categories { background-color: var(--background-card); }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.category-card {
    background: var(--white); border-radius: 8px; overflow: hidden; text-align: center;
    display: flex; flex-direction: column; height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease;
}
.category-card:hover { transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }
.category-image img { width: 100%; height: 220px; object-fit: cover; }
.category-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.category-content h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.category-content p { margin-bottom: 1.5rem; max-width: 100%; flex-grow: 1; }
.category-content .container-btn-main { margin-top: auto; align-self: center; }

/* =================================================
| TESTIMONIALS SECTION                              |
================================================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { display: flex; flex-direction: column; height: 100%; background-color: var(--background-card); padding: 2rem; border-radius: 4px; border-left: 5px solid var(--primary-red); }
.testimonial-content { font-style: italic; color: var(--text-dark); }
.testimonial-author { display: flex; align-items: center; gap: 1rem; margin-top: auto; padding-top: 1.5rem; }
.testimonial-author i { font-size: 2.5rem; color: var(--taupe); }
.testimonial-author h4 { color: var(--dark-red); font-size: 1rem; margin-bottom: 0; }
.testimonial-author p { color: var(--text-light); font-size: 0.9rem; margin: 0; }
.author-info { line-height: 1.2; }

/* =================================================
| SHOP SECTION                                      |
================================================== */
#shop {
    background-color: var(--primary-red);
}
#shop .container { position: relative; z-index: 2; }
#shop h2, #shop .section-subtitle { color: var(--white); }
#shop .section-subtitle { color: var(--background-card); }
.product-filters {
    text-align: center;
    margin-bottom: 50px;
}
.filter-btn {
    background: transparent; border: 2px solid var(--taupe); color: var(--white);
    padding: 10px 20px; margin: 5px; border-radius: 50px; cursor: pointer;
    font-family: var(--font-primary); font-weight: 600; transition: all 0.3s ease;
}
.filter-btn:hover { background: var(--dark-red); color: var(--white); border-color: var(--dark-red); }
.filter-btn.active { background: var(--white); color: var(--primary-red); border-color: var(--white); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.product-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background-color: #f7f7f7;
    padding: 1rem;
}
.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--dark-red);
}
.product-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 15px;
    max-width: 100%;
}
.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
}
.product-content .container-btn-main {
    width: 100%;
    text-align: center;
    background-color: var(--primary-red);
    color: var(--white);
}
.product-content .container-btn-main:hover {
     background-color: var(--dark-red);
     border-color: var(--dark-red);
}

/* =================================================
| CONTACT SECTION                                   |
================================================== */
.contact-upper-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 5rem; }
.contact-info h3 { margin-bottom: 1.5rem; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.info-icon { font-size: 1.2rem; color: var(--primary-red); margin-top: 5px; width: 20px; text-align: center; }
.info-text h4 { color: var(--dark-red); margin-bottom: 0.3rem; }
.info-text p, .info-text p a { color: var(--text-light); margin: 0; }
.map-container { height: 100%; min-height: 420px; border-radius: 4px; overflow: hidden; }
.contact-form-wrapper { max-width: 800px; margin: 0 auto; background-color: var(--background-card); padding: 2.5rem; border-radius: 4px; border: 1px solid var(--border-color); }
.contact-form-wrapper h3 { text-align: center; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; color: var(--text-dark); font-weight: 500; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 1rem; border: 1px solid var(--border-color); border-radius: 4px; background: var(--white); color: var(--text-dark); transition: all 0.3s; font-family: inherit; font-size: 1rem; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-red); box-shadow: 0 0 0 2px rgba(203, 8, 43, 0.2); }

/* =================================================
| FOOTER                                            |
================================================== */
.section-footer { padding-top: 100px; position: relative; background-color: var(--text-dark); }
.footer-content { padding-top: 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 3rem; padding-bottom: 4rem; }
.footer-section h3 { color: var(--primary-red); font-size: 1.1rem; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-section-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1.2rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-red);
    border-radius: 999px;
    color: var(--primary-red);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-primary);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.footer-section-button:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-section p, .footer-section ul { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.footer-section p, .footer-section ul li, .footer-section ul a { color: rgba(255,255,255,0.7); }
.footer-section ul a:hover { color: var(--primary-red); }
.footer-section ul li { margin-bottom: 0.8rem; }
.copyright { border-top: 1px solid rgba(255,255,255,0.2); padding: 2rem 0; text-align: center; }
.copyright > p { max-width: none; margin: 0.5rem auto; color: rgba(255,255,255,0.7);}
.footer-partner-logo { display: flex; justify-content: center; align-items: center; margin-bottom: 1.5rem; }
.footer-partner-logo img { height: 7rem; width: auto; background: transparent; padding: 0; border-radius: 0; display: block; }
.footer-partner-logo a:hover img { opacity: 0.9; }

/* =================================================
| ANIMATIONS                                        |
================================================== */
.fade-in-section { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; will-change: opacity, transform; }
.fade-in-section.is-visible { opacity: 1; transform: translateY(0); }

/* =================================================
| RESPONSIVE DESIGN                                 |
================================================== */
@media (max-width: 1024px) {
    .container-nav-d-links { display: none; }
    .menu_tablet { display: inline-flex; }
    .container-menu-devices { display: flex; }
    .mobile-menu-backdrop { display: block; }
    .services-wrapper { flex-direction: column; gap: 2rem; }
    .services-nav ul {
        position: static; display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem;
        border-bottom: 1px solid var(--border-color); padding-bottom: 2rem; justify-content: center;
    }
    .services-nav a { font-size: 1.1rem; padding: 10px 15px; border-left: none; border-bottom: 3px solid transparent; }
    .services-nav a.active { border-bottom-color: var(--primary-red); }
    .service-panel { min-height: auto; padding-bottom: 3rem; }
}
@media (max-width: 991px) {
    .why-choose-layout { grid-template-columns: 1fr; }
    .why-choose-sticky { position: relative; top: 0; height: 50vh; max-height: 400px; margin-bottom: 3rem; }
    .success-metrics { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .categories-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .section-hero .hero-title { display: none; }
    .about-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .about-text .container-label { justify-content: center; }
    .about-text p { margin-left: auto; margin-right: auto; }
    .about-image-wrapper { margin: 0 auto; order: -1; }
    .hero-buttons .container-btn-main { width: fit-content; }
    .service-panel-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-upper-layout { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .container { padding: 0 1.5rem; }
    .container-nav-desktop { padding: 1rem 1.5rem; }
    .contact-form-wrapper { padding: 2rem 1.5rem; }
    .categories-grid { grid-template-columns: 1fr; }
}
