/* Professional Design with Logo Colors - Complete Website CSS - Perfect Balance */
:root {
    --primary-navy: #1e2d5f;
    --accent-red: #dc3545;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-navy: #0f1629;
    --pure-white: #ffffff;
    --gradient-navy: linear-gradient(135deg, #1e2d5f, #2c3e50);
    --gradient-red: linear-gradient(135deg, #dc3545, #e74c3c);
    --subtle-shadow: 0 2px 25px rgba(30, 45, 95, 0.08);
    --card-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-navy);
    background: var(--pure-white);
    overflow-x: hidden;
}

.container {
    margin: 0 auto;
    padding: 0 18px;
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 2.5rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(30, 45, 95, 0.05);
    box-shadow: 0 2px 20px rgba(30, 45, 95, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.cta-btn-nav {
    background: var(--accent-red);
    color: var(--pure-white);
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-btn-nav:hover {
    background: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.25);
}


/* Button Styles */
.btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--pure-white);
}

.btn-primary:hover {
    background: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 53, 69, 0.3);
}

.btn-secondary {
    background: var(--pure-white);
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 45, 95, 0.25);
}

.btn-outline {
    background: var(--pure-white);
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--primary-navy);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-label {
    display: inline-block;
    background: var(--accent-red);
    color: var(--pure-white);
    padding: 7px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

/* HOME PAGE STYLES */
body.home {
    margin-top: 70px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--pure-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url(ToteBags.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 180px 0 0 180px;
    margin-top: 80px;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
    margin-top: 80px;
}

.hero-number {
    font-size: 7rem;
    font-weight: 900;
    color: rgba(30, 45, 95, 0.1);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--accent-red);
    margin-bottom: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.gradient-text {
    color: var(--accent-red);
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--medium-gray);
    margin-bottom: 1.8rem;
    font-style: italic;
    font-weight: 300;
}

.hero-description {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 2.2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1.3rem;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(30, 45, 95, 0.15);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 1.8rem;
    color: rgba(30, 45, 95, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.floating-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }

/* Trust Bar */
.trust-bar {
    background: var(--primary-navy);
    color: var(--pure-white);
    padding: 2.2rem 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.8rem;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.trust-item i {
    font-size: 1.3rem;
    color: var(--accent-red);
}

/* Product Categories Section */
.product-categories-section {
    padding: 5.5rem 0;
    background: var(--light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
}

.category-card {
    background: var(--pure-white);
    padding: 1.8rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 45, 95, 0.03);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(30, 45, 95, 0.15);
}

.head-icon {
    display: flex;
    gap: 18px;
    align-items: center;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-navy);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon i {
    font-size: 2rem;
    color: var(--pure-white);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.8rem;
}

.category-card p {
    color: var(--medium-gray);
    margin-bottom: 1.3rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.category-features {
    list-style: none;
    margin-bottom: 2.2rem;
}

.category-features li {
    color: var(--medium-gray);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
}

.category-features li::before {
    content: '✓';
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1rem;
}

/* Tote Types Showcase */
.tote-types-showcase {
    padding: 5.5rem 0;
    background: var(--pure-white);
}

.tote-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.tote-type-card {
    text-align: center;
    padding: 2rem;
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 45, 95, 0.08);
    background: var(--pure-white);
}

.tote-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: var(--accent-red);
}

.tote-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-navy);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: transform 0.3s ease;
}

.tote-type-card:hover .tote-icon {
    transform: scale(1.1) rotate(5deg);
}

.tote-icon i {
    font-size: 1.2rem;
    color: var(--pure-white);
}

.tote-type-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.7rem;
}

.tote-type-card p {
    color: var(--medium-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

.customization-note {
    background: var(--light-gray);
    padding: 1.8rem;
    border-radius: 18px;
    text-align: center;
    margin-bottom: 2.2rem;
    border-left: 4px solid var(--accent-red);
    color: var(--primary-navy);
}

/* Industries Section */
.industries-section {
    padding: 5.5rem 0;
    background: var(--light-gray);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.8rem;
}

.industry-card {
    background: var(--pure-white);
    padding: 2.4rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-navy);
    border: 1px solid rgba(30, 45, 95, 0.03);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(30, 45, 95, 0.15);
}

.industry-icon {
    width: 55px;
    height: 55px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.industry-icon i {
    font-size: 1.4rem;
    color: var(--pure-white);
}

.industry-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.8rem;
}

.industry-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.85rem;
}

/* ABOUT PAGE STYLES */
body.about {
    margin-top: 75px;
}

/* Company Introduction */
.company-introduction {
    padding: 5.5rem 0;
    background: var(--pure-white);
    position: relative;
}

.company-introduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(248, 249, 250, 0.3) 100%);
    border-radius: 0 0 120px 120px;
    z-index: 1;
}

.row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    position: relative;
    z-index: 2;
}

.col-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 60px;
}

.company-introduction .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.company-introduction .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: 2px;
}

.company-introduction .section-header p {
    text-align: left;
}

.company-introduction .section-header p:first-of-type {
    font-size: 1rem;
    color: var(--primary-navy);
    font-weight: 500;
    margin-bottom: 2rem;
}

.company-introduction .section-header p strong {
    color: var(--accent-red);
    font-weight: 600;
}

/* Mission & Vision */
.mission-vision {
    padding: 5.5rem 0;
    background: var(--light-gray);
    position: relative;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.mv-card {
    background: var(--pure-white);
    padding: 3.2rem 2.4rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 45, 95, 0.03);
    text-align: center;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-red);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(30, 45, 95, 0.15);
}

.mission-card:hover {
    background: linear-gradient(135deg, rgba(30, 45, 95, 0.02), rgba(30, 45, 95, 0.01));
}

.vision-card:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.02), rgba(220, 53, 69, 0.01));
}

.mission-card::before {
    background: var(--gradient-navy);
}

.vision-card::before {
    background: var(--gradient-red);
}

.mv-content {
    position: relative;
}

.mv-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.mv-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-red);
    border-radius: 1px;
}

.mv-description {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
}

.mv-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-red), var(--primary-navy));
    border-radius: 50%;
    opacity: 0.05;
    transition: all 0.3s ease;
}

.mv-card:hover::after {
    transform: scale(1.2);
    opacity: 0.08;
}

/* PRODUCTS PAGE STYLES - FIXED FOR 4 PRODUCTS PER ROW */
body.products {
    margin-top: 85px;
}

/* Product Categories Filter */
.product-categories {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 68px;
    z-index: 100;
    border-bottom: 1px solid rgba(30, 45, 95, 0.05);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(30, 45, 95, 0.05);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 15px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid rgba(30, 45, 95, 0.1);
    background: var(--pure-white);
    border-radius: 50px;
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 45, 95, 0.12);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.filter-btn.active {
    background: var(--accent-red);
    color: var(--pure-white);
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.25);
}

/* Products Section - FIXED TO SHOW 4 PRODUCTS PER ROW */
.products-section {
    padding: 3.5rem 0 5rem;
    background: var(--light-gray);
    min-height: 60vh;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* FIXED: Always show 4 columns */
    gap: 1.8rem; /* Reduced gap to fit 4 products */
    margin-top: 1.8rem;
}

/* Product Card - FIXED SIZE FOR 4 PER ROW */
.product-card {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(30, 45, 95, 0.03);
    opacity: 1;
    transform: scale(1);
    min-width: 0; /* Allow shrinking */
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px rgba(30, 45, 95, 0.15);
}

.product-image {
    position: relative;
    height: 200px; /* Reduced height to fit better */
    overflow: hidden;
    background: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--pure-white);
    z-index: 2;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

/* Product Badge Colors - Keep all as they are */
.product-badge.premium { background: var(--gradient-red); }
.product-badge.luxury { background: var(--gradient-navy); }
.product-badge.spa { background: linear-gradient(135deg, #28a745, #20c997); }
.product-badge.eco { background: linear-gradient(135deg, #28a745, #20c997); }
.product-badge.everyday { background: linear-gradient(135deg, #6c757d, #495057); }
.product-badge.organic { background: linear-gradient(135deg, #28a745, #155724); }
.product-badge.natural { background: linear-gradient(135deg, #8b4513, #a0522d); }
.product-badge.shopping { background: linear-gradient(135deg, #17a2b8, #138496); }
.product-badge.laminated { background: linear-gradient(135deg, #6f42c1, #5a2d91); }
.product-badge.durable { background: linear-gradient(135deg, #343a40, #495057); }
.product-badge.beauty { background: linear-gradient(135deg, #e83e8c, #d91a72); }
.product-badge.professional { background: var(--gradient-navy); }
.product-badge.compact { background: linear-gradient(135deg, #fd7e14, #e8650e); }
.product-badge.versatile { background: linear-gradient(135deg, #6610f2, #520dc2); }
.product-badge.travel { background: linear-gradient(135deg, #20c997, #17a2b8); }
.product-badge.summer { background: linear-gradient(135deg, #ffc107, #e0a800); }
.product-badge.sports { background: linear-gradient(135deg, #dc3545, #c82333); }
.product-badge.retail { background: linear-gradient(135deg, #007bff, #0056b3); }
.product-badge.industrial { background: linear-gradient(135deg, #6c757d, #495057); }
.product-badge.promotional { background: linear-gradient(135deg, #28a745, #1e7e34); }
.product-badge.conference { background: linear-gradient(135deg, #17a2b8, #117a8b); }

/* Product Info - ADJUSTED FOR SMALLER CARDS */
.product-info {
    padding: 1.8rem;
}

.product-category {
    font-size: 0.7rem;
    color: var(--accent-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
    position: relative;
}

.product-category::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent-red);
    border-radius: 1px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

.product-features span {
    font-size: 0.75rem;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-features span {
    color: var(--primary-navy);
}

.product-features i {
    color: var(--accent-red);
    font-size: 0.7rem;
    width: 14px;
    height: 14px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-actions {
    margin-top: auto;
}

/* Customization Section */
.customization-section {
    padding: 5.5rem 0;
    background: var(--pure-white);
    position: relative;
}

.customization-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 240px;
    height: 240px;
    background: linear-gradient(45deg, var(--accent-red), #ff6b7a);
    border-radius: 50%;
    opacity: 0.03;
    z-index: 1;
}

.customization-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3.2rem;
    position: relative;
    z-index: 2;
}

.custom-option {
    text-align: center;
    padding: 2.4rem 1.8rem;
    background: var(--light-gray);
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 45, 95, 0.03);
}

.custom-option:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow);
    background: var(--pure-white);
}

.custom-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-red);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.custom-option:hover .custom-icon {
    transform: scale(1.1) rotate(5deg);
}

.custom-icon i {
    font-size: 1.8rem;
    color: var(--pure-white);
}

.custom-option h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.8rem;
}

.custom-option p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* WHY CHOOSE US PAGE STYLES */
body.why-choose-us {
    margin-top: 75px;
}

/* Main Advantages */
.main-advantages {
    padding: 5.5rem 0;
    background: var(--light-gray);
    position: relative;
    margin-top: 60px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: var(--pure-white);
    padding: 2.4rem;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(30, 45, 95, 0.03);
    position: relative;
    overflow: hidden;
}


.advantage-card.featured {
    transform: scale(1.02);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(30, 45, 95, 0.15);
}

.advantage-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-navy);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-card.featured .advantage-icon {
    background: var(--gradient-red);
}

.advantage-icon i {
    font-size: 1.8rem;
    color: var(--pure-white);
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.2rem;
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.advantage-features {
    list-style: none;
    text-align: left;
}

.advantage-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.advantage-features i {
    color: var(--accent-red);
    font-size: 0.7rem;
    width: 14px;
    height: 14px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Key Differentiators */
.key-differentiators {
    padding: 5.5rem 0;
    background: var(--pure-white);
    position: relative;
}

.key-differentiators::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-navy), #34495e);
    border-radius: 50%;
    opacity: 0.03;
    z-index: 1;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.diff-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.2rem;
    background: var(--light-gray);
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 45, 95, 0.03);
}

.diff-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    background: var(--pure-white);
}

.diff-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-red);
    line-height: 1;
    min-width: 55px;
    opacity: 0.8;
}

.diff-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.diff-content p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.diff-content p strong {
    color: var(--accent-red);
    font-weight: 600;
}

/* Quality Process */
.quality-process {
    padding: 5.5rem 0;
    background: var(--light-gray);
    position: relative;
}

.process-timeline {
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    align-items: flex-start;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1.8rem;
    width: 2px;
    height: 1.8rem;
    background: var(--accent-red);
    transform: translateX(-50%);
    opacity: 0.3;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--pure-white);
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.step-content {
    flex: 1;
    background: var(--pure-white);
    padding: 2.2rem;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--accent-red);
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.step-features {
    list-style: none;
}

.step-features li {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.step-features li::before {
    content: '•';
    color: var(--accent-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CONTACT PAGE STYLES */
body.contact {
    margin-top: 75px;
}

/* Contact Section */
.contact-section {
    padding: 5.5rem 0;
    background: var(--light-gray);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.8rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

/* Contact Form Container */
.contact-form-container {
    background: var(--pure-white);
    padding: 2.4rem;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(30, 45, 95, 0.03);
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.form-group label i {
    color: var(--accent-red);
    font-size: 0.8rem;
    width: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 2px solid rgba(30, 45, 95, 0.1);
    border-radius: 10px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    background: var(--pure-white);
    color: var(--primary-navy);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-gray);
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group:last-child {
    grid-column: 1 / -1;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%236c757d' viewBox='0 0 16 16'%3e%3cpath d='m7.247 4.86-4.796 5.481c-.566.647-.106 1.659.753 1.659h9.592a1 1 0 0 0 .753-1.659l-4.796-5.48a1 1 0 0 0-1.506 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px 10px;
    padding-right: 40px;
}

/* Contact Info Container */
.contact-info-container {
    position: sticky;
    top: 90px;
}

.contact-info-card {
    background: var(--pure-white);
    padding: 2.4rem;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(30, 45, 95, 0.03);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-red);
}

.contact-info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-info-card h3 i {
    color: var(--accent-red);
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--pure-white);
    font-size: 1rem;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.7rem;
}

.contact-details p {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.contact-details em {
    font-size: 0.75rem;
    color: var(--accent-red);
    font-style: italic;
}

/* WhatsApp Link */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #25d366;
    color: var(--pure-white);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 0.8rem;
}

.whatsapp-link:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-link i {
    font-size: 0.9rem;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--pure-white);
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: linear-gradient(45deg, var(--primary-navy), #34495e);
    border-radius: 50%;
    opacity: 0.03;
    z-index: 1;
}

.map-container {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 2;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Form Validation Styles */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group select:valid:not(:focus),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.1);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-primary:disabled:hover {
    transform: none;
    box-shadow: none;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.2rem;
    border: 1px solid #c3e6cb;
    display: none;
}

.form-success.show {
    display: block;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.2rem;
    border: 1px solid #f5c6cb;
    display: none;
}

.form-error.show {
    display: block;
}

/* Filter Animation Effects */
.product-card.fade-in {
    animation: fadeInUp 0.4s ease-in-out;
}

/* FOOTER STYLES */
.footer {
    background: var(--primary-navy);
    color: var(--pure-white);
    padding: 4.5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.footer-logo img {
    height: 45px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pure-white);
}

.footer-section h3 {
    color: var(--accent-red);
    margin-bottom: 1.8rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--pure-white);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}
.social-links a img {
    height: 25px;
    filter: brightness(0) invert(1);
}

.footer-section .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section .contact-item i {
    color: var(--accent-red);
    width: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.8rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* ANIMATIONS */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.section-header,
.mv-card,
.advantage-card,
.diff-item,
.process-step,
.contact-form-container,
.contact-info-card {
    animation: fadeInUp 0.8s ease-out;
}

.mv-card:nth-child(2),
.advantage-card:nth-child(2),
.diff-item:nth-child(2) { 
    animation-delay: 0.1s; 
}

.advantage-card:nth-child(3),
.diff-item:nth-child(3) { 
    animation-delay: 0.2s; 
}

.advantage-card:nth-child(4),
.diff-item:nth-child(4) { 
    animation-delay: 0.3s; 
}

.diff-item:nth-child(5) { animation-delay: 0.4s; }
.diff-item:nth-child(6) { animation-delay: 0.5s; }

.contact-info-card {
    animation-delay: 0.2s;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 products per row on medium screens */
        gap: 1.5rem;
    }
    
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }


    body.home,
    body.products,
    body.about,
    body.why-choose-us,
    body.contact {
        margin-top: 65px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.75rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-number {
        font-size: 4.5rem;
    }
    /* .hero::before{
        background: white;
    } */

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 products per row on tablets */
        gap: 1.2rem;
    }

    .product-categories {
        top: 58px;
        padding: 1.2rem 0;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.75rem;
    }

    .product-image {
        height: 180px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .diff-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.8rem;
    }

    .process-step {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .process-step:nth-child(even) {
        flex-direction: column;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info-container {
        position: static;
        top: auto;
    }

    .form-row {
        display: flex;
        flex-direction: column;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company-introduction,
    .mission-vision {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.7rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }
    .hero::before{
        background: white;
    }

    .filter-btn {
        padding: 7px 15px;
        font-size: 0.7rem;
    }

    .products-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1.5rem;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .contact-form-container,
    .contact-info-card {
        padding: 1.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 0.85rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .map-container iframe {
        height: 280px;
    }
}

/* ACCESSIBILITY & PERFORMANCE */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .category-card,
    .product-card,
    .advantage-card,
    .diff-item,
    .step-content,
    .contact-form-container,
    .contact-info-card {
        border: 2px solid var(--primary-navy);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        border-width: 2px;
    }
}


/* Selection styles */
::selection {
    background: var(--accent-red);
    color: var(--pure-white);
}

::-moz-selection {
    background: var(--accent-red);
    color: var(--pure-white);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for textarea */
.form-group textarea::-webkit-scrollbar {
    width: 6px;
}

.form-group textarea::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

.form-group textarea::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 3px;
}

.form-group textarea::-webkit-scrollbar-thumb:hover {
    background: var(--primary-navy);
}
/* ---------------------------------- */
/* Mobile Navigation Styles - Based on your example */

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-desktop .nav-link {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-desktop .nav-link:hover,
.nav-desktop .nav-link.active {
    color: var(--accent-red);
    background-color: rgba(220, 53, 69, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: var(--primary-navy);
}

.mobile-menu-button:hover {
    background-color: rgba(30, 45, 95, 0.1);
}

.mobile-menu-button svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(30, 45, 95, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
}
.mobile-menu.active{
    display: block;
}
.mobile-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(30, 45, 95, 0.05);
}

.mobile-menu a:hover {
    background-color: rgba(220, 53, 69, 0.05);
    color: var(--accent-red);
    padding-left: 2.5rem;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    /* Hide desktop navigation */
    .nav-desktop {
        display: none;
    }
    
    /* Show mobile menu button */
    .mobile-menu-button {
        display: block;
    }
    
    /* Navbar adjustments */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        position: relative;
    }
    
    /* Header container adjustments */
    .header .container {
        position: relative;
    }
    
    /* Logo adjustments for mobile */
    .logo img {
        height: 40px;
    }
}

/* Tablet adjustments */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .nav-desktop {
        gap: 1.5rem;
    }
    
    .nav-desktop .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
    .logo img {
        height: 35px;
    }
    
    .mobile-menu a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu-button {
        padding: 0.4rem;
    }
    
    .mobile-menu-button svg {
        width: 20px;
        height: 20px;
    }
}
