/**
 * Matek Grup - Homepage Design
 * Professional, Corporate, Minimal
 */

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.home-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 60px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.98);
    padding: 18px 60px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.site-header .logo {
    position: relative;
    z-index: 10;
}

.site-header .logo img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.site-header.scrolled .logo img {
    filter: none;
}

/* Main Navigation */
.main-nav ul {
    display: flex;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover {
    color: #fff;
}

.site-header.scrolled .main-nav a {
    color: #666;
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active {
    color: #000;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switch a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-switch a.active,
.lang-switch a:hover {
    color: #fff;
}

.lang-switch span {
    color: rgba(255,255,255,0.3);
    font-size: 11px;
}

.site-header.scrolled .lang-switch a {
    color: #999;
}

.site-header.scrolled .lang-switch a.active,
.site-header.scrolled .lang-switch a:hover {
    color: #000;
}

.site-header.scrolled .lang-switch span {
    color: #ddd;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #fff;
    transition: background 0.3s ease;
}

.site-header.scrolled .mobile-menu-toggle span {
    background: #222;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 35px 40px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.mobile-logo img {
    height: 28px;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.mobile-menu-close span {
    position: absolute;
    width: 20px;
    height: 1.5px;
    background: #222;
    top: 50%;
    left: 50%;
}

.mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
    flex: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a {
    display: block;
    padding: 22px 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: #05809f;
}

.mobile-menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 35px;
    border-top: 1px solid #f0f0f0;
}

.mobile-lang {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-lang a {
    font-size: 13px;
    font-weight: 600;
    color: #bbb;
    text-decoration: none;
}

.mobile-lang a.active {
    color: #222;
}

.mobile-lang span {
    color: #ddd;
}

.mobile-social {
    display: flex;
    gap: 25px;
}

.mobile-social a {
    color: #666;
    font-size: 18px;
    transition: color 0.3s ease;
}

.mobile-social a:hover {
    color: #05809f;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative !important;
    height: 100vh !important;
    min-height: 750px !important;
    overflow: hidden !important;
    background: #000 !important;
}

.hero-slider {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 100%);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-section .hero-slide .hero-content,
.hero-section .hero-slide .hero-content h2,
.hero-section .hero-slide .hero-content p,
.hero-section .hero-slide .hero-content a {
    text-align: center !important;
}

.hero-section .hero-slide .hero-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-width: 600px !important;
    width: 90% !important;
    height: auto !important;
    z-index: 100 !important;
    display: block !important;
    table-layout: auto !important;
    border: none !important;
    background: transparent !important;
}

/* Dark slide - light text (for dark backgrounds) */
.hero-slide.dark .hero-content,
.hero-slide.dark .hero-content h2,
.hero-slide.dark .hero-content h2 strong {
    color: #fff !important;
}

.hero-slide.dark .hero-content p {
    color: rgba(255,255,255,0.75) !important;
}

.hero-slide.dark .hero-btn {
    color: #fff !important;
    border-color: rgba(255,255,255,0.6) !important;
    background: transparent !important;
}

.hero-slide.dark .hero-btn:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

/* Light slide - dark text (for light backgrounds) */
.hero-slide.light .hero-content,
.hero-slide.light .hero-content h2,
.hero-slide.light .hero-content h2 strong {
    color: #222 !important;
}

.hero-slide.light .hero-content p {
    color: rgba(0,0,0,0.65) !important;
}

.hero-slide.light .hero-btn {
    color: #222 !important;
    border-color: rgba(0,0,0,0.4) !important;
    background: transparent !important;
}

.hero-slide.light .hero-btn:hover {
    background: #222 !important;
    color: #fff !important;
    border-color: #222 !important;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.15;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
}

.hero-content h2 strong {
    font-weight: 600;
    display: block;
}

.hero-section .hero-slide .hero-content p {
    font-size: 1.05rem;
    font-weight: 400;
    margin: 0 auto 40px auto;
    line-height: 1.7;
    max-width: 450px;
    text-align: center !important;
}

.hero-btn {
    display: inline-block;
    padding: 16px 45px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    right: 60px;
    bottom: 60px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-nav-btn {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-nav-btn:hover,
.hero-nav-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    left: 60px;
    bottom: 60px;
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 10;
}

.hero-scroll span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.scroll-line {
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 100%;
    background: rgba(255,255,255,0.8);
    animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 140px 0;
    background: #fafafa;
}

.about-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 35px;
}

.about-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.9;
    color: #444;
    margin: 0 0 45px 0;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #222;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.text-link span {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.text-link:hover {
    gap: 18px;
}

.text-link:hover span {
    transform: translateX(3px);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: 120px 0 140px;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #222;
    margin: 0;
    letter-spacing: -0.3px;
}

/* Product Filters */
.product-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 55px;
}

.filter-btn {
    padding: 13px 26px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    background: transparent;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: #222;
    color: #222;
}

.filter-btn.active {
    background: #222;
    border-color: #222;
    color: #fff;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card.show {
    opacity: 1;
    transform: translateY(0);
}

.product-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-info {
    padding: 22px 5px 5px;
    text-align: center;
}

.product-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #222;
    letter-spacing: 0.3px;
}

.product-info span {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Products CTA */
.products-cta {
    text-align: center;
    margin-top: 65px;
}

.btn-primary {
    display: inline-block;
    padding: 17px 55px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    background: #222;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: inherit;
}

.btn-primary:hover {
    background: #000;
}

/* ============================================
   BLOG PREVIEW SECTION
   ============================================ */
.blog-preview-section {
    padding: 120px 0 140px;
    background: #fafafa;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-preview-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-preview-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #e5e5e5;
    margin-bottom: 25px;
}

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.05);
}

.blog-preview-content {
    padding: 0 5px;
}

.blog-preview-date {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #999;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.blog-preview-content h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: #222;
    margin: 0 0 12px 0;
    line-height: 1.45;
    transition: color 0.3s ease;
}

.blog-preview-card:hover h3 {
    color: #05809f;
}

.blog-preview-content p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

.blog-preview-cta {
    text-align: center;
    margin-top: 60px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section-wrapper {
    padding: 50px 0 50px 0;
    background: #fff;
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #0d0d0d;
    overflow: hidden;
}

.cta-box-content {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #05809f;
    margin-bottom: 25px;
}

.cta-box-content h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    margin: 0 0 20px 0;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.cta-box-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin: 0 0 35px 0;
    max-width: 400px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-btn:hover {
    border-color: #fff;
    gap: 18px;
}

.cta-btn span {
    transition: transform 0.3s ease;
}

.cta-btn:hover span {
    transform: translateX(3px);
}

.cta-box-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.cta-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-box:hover .cta-box-image img {
    transform: scale(1.03);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0d0d0d;
    color: #fff;
}

.footer-main {
    padding: 90px 0 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand p {
    font-size: 13px;
    color: #777;
    line-height: 1.85;
    margin: 22px 0 0 0;
    max-width: 280px;
}

.footer-logo img {
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 28px;
}

.footer-social a {
    color: #555;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
}

.footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 25px 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 14px;
}

.footer-col a {
    font-size: 13px;
    color: #777;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    font-size: 12px;
    color: #555;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

/* ============================================
   SOCIAL SIDEBAR
   ============================================ */
.social-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #fff;
    padding: 18px 14px;
    box-shadow: 0 0 40px rgba(0,0,0,0.06);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-left: 1px solid #f0f0f0;
}

.social-sidebar a {
    display: block;
    color: #aaa;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-sidebar a:hover {
    color: #05809f;
    transform: translateX(-2px);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    background: #222;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #05809f;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

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

    .blog-preview-grid {
        gap: 25px;
    }

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

    .hero-content h2 {
        font-size: 3rem;
    }
}

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

    .site-header {
        padding: 22px 30px;
    }

    .site-header.scrolled {
        padding: 16px 30px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section .hero-slide .hero-content {
        width: calc(100% - 60px) !important;
        max-width: none !important;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        max-width: none;
    }

    .hero-nav {
        right: 30px;
        bottom: 50px;
    }

    .hero-scroll {
        left: 30px;
        bottom: 50px;
    }

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

    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .blog-preview-section {
        padding: 100px 0;
    }

    .social-sidebar {
        display: none;
    }

    .about-section {
        padding: 100px 0;
    }

    .about-text {
        font-size: 1.3rem;
    }

    .products-section {
        padding: 100px 0;
    }

    .cta-section-wrapper {
        padding: 0 0 100px 0;
    }

    .cta-box {
        grid-template-columns: 1fr;
    }

    .cta-box-content {
        padding: 60px 40px;
        order: 2;
    }

    .cta-box-image {
        order: 1;
        min-height: 300px;
    }

    .cta-box-content h2 {
        font-size: 1.8rem;
    }

    .cta-section {
        padding: 120px 0;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-nav {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-text {
        font-size: 1.15rem;
    }

    .products-section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .filter-btn {
        padding: 11px 18px;
        font-size: 9px;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-preview-section {
        padding: 80px 0;
    }

    .blog-preview-content h3 {
        font-size: 1.1rem;
    }

    .cta-section-wrapper {
        padding: 0 0 80px 0;
    }

    .cta-box-content {
        padding: 50px 30px;
    }

    .cta-box-content h2 {
        font-size: 1.5rem;
    }

    .cta-box-content p {
        font-size: 0.95rem;
    }

    .cta-box-image {
        min-height: 250px;
    }

    .footer-main {
        padding: 70px 0 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        max-width: none;
    }

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

    .cta-section {
        padding: 100px 0;
    }

    .cta-bg {
        background-attachment: scroll;
    }

    .cta-content h2 {
        font-size: 1.7rem;
    }
}

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

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

    .product-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 10px 14px;
        font-size: 9px;
        letter-spacing: 1px;
    }

    .hero-section .hero-slide .hero-content {
        width: calc(100% - 40px) !important;
    }

    .hero-content h2 {
        font-size: 1.7rem;
    }

    .hero-btn {
        padding: 14px 35px;
        font-size: 10px;
    }

    .mobile-menu-inner {
        padding: 25px 20px;
    }
}
