* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #D32F2F;
    --primary-blue: #1976D2;
    --accent-gold: #FFB300;
    --text-dark: #212121;
    --text-gray: #616161;
    --text-light: #757575;
    --bg-light: #F5F5F5;
    --white: #FFFFFF;
    --border-light: #E0E0E0;
    --gradient-primary: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    --gradient-accent: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
    --gradient-blue: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Header - Enhanced with Glass Morphism */
header {
    background: #FFFFFF;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    border-bottom: 3px solid var(--primary-red);
    transition: box-shadow 0.3s ease;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-header {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-img {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-gray);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 25px;
}

.phone-link:hover {
    color: var(--primary-red);
}

.cta-button {
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

/* Mobile Menu - Enhanced */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: rgba(211, 47, 47, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(211, 47, 47, 0.15);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-red);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 25px 5%;
    z-index: 999;
    border-bottom: 3px solid var(--primary-red);
    max-height: calc(100vh - 92px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    animation: slideDownMobile 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideDownMobile {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 25px;
}

.mobile-nav-links li {
    margin-bottom: 5px;
    animation: fadeInUp 0.5s ease-out both;
}

.mobile-nav-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-links li:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-links li:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-links li:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav-links li:nth-child(6) { animation-delay: 0.35s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: block;
    padding: 15px 20px;
    transition: all 0.3s ease;
    border-radius: 12px;
    background: transparent;
}

.mobile-nav-links a:hover {
    color: var(--primary-red);
    background: rgba(211, 47, 47, 0.05);
    transform: translateX(10px);
}

.mobile-header-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-header-cta .phone-link,
.mobile-header-cta .cta-button {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* Hero Section - Modernized with Gradient Background */
.hero {
    background: linear-gradient(135deg, 
        rgba(211, 47, 47, 0.03) 0%, 
        rgba(25, 118, 210, 0.03) 50%,
        rgba(255, 179, 0, 0.03) 100%
    );
    padding: 120px 5% 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 179, 0, 0.12);
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: bounceIn 1s ease-out;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.2);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.45rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.highlight {
    color: var(--primary-red);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto 45px;
    line-height: 1.9;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary {
    padding: 18px 45px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

.btn-secondary {
    padding: 18px 45px;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.2);
}

.btn-secondary:hover {
    background: var(--gradient-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
}

/* Mission Statement - Enhanced with Cards */
.mission {
    padding: 100px 5%;
    background: var(--white);
    position: relative;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.mission-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 25px;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.05) 0%, rgba(25, 118, 210, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 6px 15px rgba(211, 47, 47, 0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
}

.mission-image {
    position: relative;
}

.mission-img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Services Section - Modern Card Design */
.services {
    padding: 120px 5%;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 25px;
    padding: 45px 40px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    border-color: rgba(211, 47, 47, 0.2);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.12) 0%, rgba(25, 118, 210, 0.12) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.03);
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.15) 0%, rgba(25, 118, 210, 0.15) 100%);
}

.service-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.service-description {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-light);
    font-size: 0.98rem;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
}

.service-features li:hover {
    color: var(--text-dark);
    transform: translateX(5px);
}

/* Why Choose Section - Enhanced Icons */
.why-choose {
    padding: 120px 5%;
    background: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 70px;
}

.feature-item {
    text-align: center;
    padding: 50px 35px;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(255, 179, 0, 0.12);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.12) 0%, rgba(25, 118, 210, 0.12) 100%);
    border-radius: 50%;
    font-size: 3rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.18) 0%, rgba(25, 118, 210, 0.18) 100%);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.feature-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Shop Section - Premium Design */
.shop-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, 
        rgba(255, 179, 0, 0.03) 0%, 
        rgba(255, 143, 0, 0.02) 100%
    );
}

.shop-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.shop-box {
    background: var(--white);
    border: 3px solid var(--accent-gold);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 10px 30px rgba(255, 179, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shop-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 179, 0, 0.25);
}

.shop-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 35px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 179, 0, 0.3);
}

.shop-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.9;
}

.shop-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--gradient-accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 179, 0, 0.3);
}

.shop-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(255, 179, 0, 0.4);
}

/* Contact Section - Modern Design */
.contact {
    padding: 120px 5%;
    background: linear-gradient(135deg, 
        rgba(211, 47, 47, 0.06) 0%, 
        rgba(25, 118, 210, 0.06) 100%
    );
}

.contact-content {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.contact-box {
    background: var(--white);
    border: 3px solid var(--primary-red);
    border-radius: 30px;
    padding: 70px 50px;
    box-shadow: 0 15px 50px rgba(211, 47, 47, 0.15);
}

.contact-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.9;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.3);
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(211, 47, 47, 0.4);
}

/* Footer - Modern Design */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 80px 5% 40px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-about h3 {
    font-size: 1.7rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 800;
}

.footer-about p {
    color: #c0c0c0;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 800;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #c0c0c0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-links li i {
    margin-right: 10px;
    color: var(--primary-red);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    color: #c0c0c0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Menu Display */
    .nav-menu,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-main {
        font-size: 1.3rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }

    .logo-img {
        height: 50px;
    }

    .contact-box {
        padding: 50px 30px;
    }

    .shop-box {
        padding: 50px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 80px 5% 70px;
    }

    .services {
        padding: 80px 5%;
    }

    .why-choose {
        padding: 80px 5%;
    }

    .mission {
        padding: 80px 5%;
    }

    .contact {
        padding: 80px 5%;
    }

    .shop-section {
        padding: 80px 5%;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.3rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 18px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .contact-title,
    .shop-title {
        font-size: 2.2rem;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Print Styles */
@media print {
    header {
        position: static;
    }
    
    .mobile-menu-toggle,
    .mobile-menu,
    .hero-buttons,
    .social-links {
        display: none;
    }
}