/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #004080;
    --secondary-color: #f0a500;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --dark-hover: #2a2a2a;
    --white: #ffffff;
    --text-light: #f5f5f5;
    --text-muted: #b0b0b0;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(240, 165, 0, 0.2);
    --shadow-glow: rgba(240, 165, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    background-image: 
        linear-gradient(rgba(240, 165, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240, 165, 0, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 20% 50%, rgba(240, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 165, 0, 0.1) 0%, transparent 50%);
    background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
    background-position: 0 0, 0 0, 0 0, 0 0;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(18, 18, 18, 0.7) 0%, rgba(30, 30, 30, 0.7) 100%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid rgba(240, 165, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 6px 30px var(--shadow-hover);
    background: rgba(30, 30, 30, 0.98);
    border-color: rgba(240, 165, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.nav-logo i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(5px);
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(240, 165, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 1;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.animate-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    animation: float 3s ease-in-out infinite;
    opacity: 0;
    animation-fill-mode: forwards;
    filter: drop-shadow(0 0 10px rgba(240, 165, 0, 0.5));
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-glow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-glow);
    background: #ffb300;
}

/* Section Styles */
.section {
    padding: 100px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    z-index: 1;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--shadow-glow);
}

/* About Section */
#about {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(5px);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    color: var(--text-muted);
}

.about-paragraph {
    position: relative;
}

.about-paragraph::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--secondary-color), transparent);
    border-radius: 2px;
}

.about-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    text-align: left;
    color: var(--text-light);
}

.about-highlights-wrapper {
    position: relative;
}

/* About Highlights - Desktop: Regular List */
.about-highlight-item {
    margin-bottom: 20px;
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid rgba(240, 165, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-highlight-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--secondary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.about-highlight-item:hover {
    background: var(--dark-hover);
    transform: translateX(8px);
    border-color: rgba(240, 165, 0, 0.3);
    box-shadow: 0 4px 15px rgba(240, 165, 0, 0.1);
}

.about-highlight-item:hover::before {
    transform: scaleY(1);
}

.about-highlight-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    cursor: pointer;
}

.about-highlight-question i:first-child {
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    z-index: 1;
}

.about-highlight-question strong {
    color: var(--text-light);
    flex: 1;
}

.about-highlight-arrow {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    display: none;
}

/* Show arrow on mobile only */
@media (max-width: 768px) {
    .about-highlight-arrow {
        display: block;
    }
}

/* Desktop: Always show content */
.about-highlight-answer {
    padding: 0 20px 20px;
    max-height: none;
    overflow: visible;
}

/* Mobile: Dropdown behavior - start collapsed */
@media (max-width: 768px) {
    .about-highlight-answer {
        padding: 0 20px;
        max-height: 0 !important;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .about-highlight-item.active .about-highlight-answer {
        max-height: 200px !important;
        padding: 0 20px 20px !important;
    }
}

.about-highlight-item.active .about-highlight-arrow {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.about-highlight-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Products Section */
.products-section {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-category {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(240, 165, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.product-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px var(--shadow-hover);
    border-color: rgba(240, 165, 0, 0.3);
}

.product-category-header {
    text-align: center;
    margin-bottom: 25px;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--dark-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    border: 2px solid rgba(240, 165, 0, 0.2);
}

.product-category:hover .product-icon {
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: rotate(360deg);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px var(--shadow-glow);
}

.product-category h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--dark-card);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.product-item:hover {
    background: var(--dark-hover);
    border-color: rgba(240, 165, 0, 0.3);
    transform: translateX(5px);
}

.product-item i {
    font-size: 1.3rem;
    color: var(--secondary-color);
    min-width: 25px;
}

.product-item span {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Order Section */
.order-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.order-step {
    text-align: center;
    position: relative;
    padding: 25px 15px;
    background: var(--dark-card);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 165, 0, 0.1);
}

.order-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px var(--shadow-hover);
    border-color: rgba(240, 165, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px var(--shadow-glow);
}

.step-icon {
    margin: 20px auto 15px;
    width: 50px;
    height: 50px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    border: 2px solid rgba(240, 165, 0, 0.2);
}

.order-step:hover .step-icon {
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px var(--shadow-glow);
}

.order-step h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.order-step p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-bg);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 165, 0, 0.1);
}

.faq-item:hover {
    box-shadow: 0 4px 20px var(--shadow-hover);
    border-color: rgba(240, 165, 0, 0.3);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--text-light);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--dark-card);
}

.faq-question i:first-child {
    font-size: 1.3rem;
    color: var(--secondary-color);
    min-width: 25px;
}

.faq-question span {
    flex: 1;
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Core Values Section */
.values-section {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--dark-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
    border: 1px solid rgba(240, 165, 0, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px var(--shadow-hover);
    border-color: rgba(240, 165, 0, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--dark-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    border: 2px solid rgba(240, 165, 0, 0.2);
}

.value-card:hover .value-icon {
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: rotate(360deg);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px var(--shadow-glow);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Services Section */
.services-section {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(5px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: var(--dark-card);
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
    border: 1px solid rgba(240, 165, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px var(--shadow-hover);
    border-color: rgba(240, 165, 0, 0.3);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    border: 2px solid rgba(240, 165, 0, 0.2);
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: rotate(360deg);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px var(--shadow-glow);
}

.service-card h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.85rem;
}

/* Contact Section */
.contact-section {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 400px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(240, 165, 0, 0.2);
    flex-shrink: 0;
}

.contact-item:hover i {
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px var(--shadow-glow);
}

.contact-item span {
    word-break: break-word;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(240, 165, 0, 0.2);
}

.social-icon:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px var(--shadow-glow);
    border-color: var(--secondary-color);
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: var(--text-light);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(240, 165, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        width: 95%;
        top: 10px;
        padding: 12px 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(30, 30, 30, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        border-radius: 20px;
        padding: 20px 0;
        gap: 0;
        border: 1px solid rgba(240, 165, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-icons {
        gap: 20px;
    }

    .animate-icon {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* About Section Mobile */
    .about-text-content {
        display: block;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-paragraph {
        margin-bottom: 40px;
        padding: 25px;
        background: var(--dark-card);
        border-radius: 15px;
        border-left: 4px solid var(--secondary-color);
        position: relative;
        overflow: hidden;
    }

    .about-paragraph::before {
        display: none;
    }

    .about-paragraph::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(240, 165, 0, 0.05) 0%, transparent 70%);
        pointer-events: none;
    }

    .about-intro {
        font-size: 1rem;
        text-align: left;
        position: relative;
        z-index: 1;
    }

    /* About Highlights Mobile - Dropdown Style */
    .about-highlight-arrow {
        display: block;
    }

    .about-highlight-item {
        margin-bottom: 15px;
    }

    .about-highlight-item:hover {
        transform: none;
    }

    .about-highlight-question {
        padding: 18px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .about-highlight-question:hover {
        background: var(--dark-hover);
    }

    .about-highlight-item.active .about-highlight-question {
        border-bottom: 1px solid rgba(240, 165, 0, 0.2);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .order-steps {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .contact-item {
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-logo i {
        font-size: 1.5rem;
    }

    .about-text-content h3 {
        font-size: 1.5rem;
    }

    .product-category {
        padding: 20px;
    }
}
