@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a365d;
    --secondary: #2c5282;
    --accent: #ed8936;
    --light: #f7fafc;
    --dark: #1a202c;
    --gray: #718096;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: #dd6b20;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.747);
}

.header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), #dd6b20);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.header.scrolled .logo-text {
    color: var(--primary);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 60px 20px 30px;
    transition: right 0.4s ease;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
    background: none;
    border: none;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    transform: rotate(15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.hero-text h1 span {
    color: var(--accent);
}

.hero-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
    font-size: 28px;
    color: var(--accent);
}

.stat-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.hero-badge i {
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 5px;
}

.hero-badge p {
    font-size: 11px;
    color: var(--gray);
}

.hero-badge span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(237, 137, 54, 0.1);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
    font-size: 14px;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), #dd6b20);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
}

.service-link {
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    gap: 8px;
}

.about-section {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-experience {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--accent);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
}

.about-experience h3 {
    font-size: 32px;
}

.about-experience p {
    font-size: 11px;
    opacity: 0.9;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
}

.about-content>p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-feature i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 2px;
}

.about-feature span {
    font-size: 13px;
    color: var(--dark);
}

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark);
}

.product-content p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.product-price span {
    font-size: 12px;
    color: var(--gray);
    font-weight: 400;
}

.why-us {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.why-us .section-header h2 {
    color: var(--white);
}

.why-us .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.why-card i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 12px;
    opacity: 0.85;
}

.testimonials {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 12px;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 13px;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.testimonial-info h4 {
    font-size: 13px;
    color: var(--dark);
}

.testimonial-info span {
    font-size: 11px;
    color: var(--gray);
}

.cta-section {
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 15px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-content h2 {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.cta-box .btn-primary {
    background: var(--accent);
    padding: 14px 30px;
    font-size: 14px;
}

.contact-section {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 30px;
    border-radius: var(--radius);
    color: var(--white);
}

.contact-info-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-info-box>p {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    font-size: 18px;
    color: var(--accent);
    margin-top: 2px;
}

.contact-item div h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
}

.contact-item div p {
    font-size: 12px;
    opacity: 0.85;
}

.contact-form-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(237, 137, 54, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--accent);
}

.checkbox-group label {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--accent);
}

.map-container {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    max-width: 250px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 14px;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--accent);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero h1 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    position: relative;
}

.breadcrumb a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    font-size: 12px;
    color: var(--accent);
}

.content-section {
    padding: 50px 0;
    background: var(--white);
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
}

.content-box h2 {
    font-size: 20px;
    color: var(--dark);
    margin: 25px 0 12px;
}

.content-box h3 {
    font-size: 16px;
    color: var(--dark);
    margin: 20px 0 10px;
}

.content-box p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.7;
}

.content-box ul {
    margin: 12px 0;
    padding-left: 20px;
}

.content-box ul li {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 6px;
    list-style: disc;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light);
    padding: 40px 20px;
}

.error-content h1 {
    font-size: 100px;
    color: var(--accent);
    line-height: 1;
}

.error-content h2 {
    font-size: 24px;
    color: var(--dark);
    margin: 15px 0 10px;
}

.error-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light);
    padding: 40px 20px;
}

.thankyou-content i {
    font-size: 60px;
    color: #d3782c;
    margin-bottom: 20px;
}

.thankyou-content h1 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
}

.thankyou-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
    max-width: 450px;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

.privacy-popup.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-popup h4 {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 8px;
}

.privacy-popup p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 15px;
}

.privacy-popup a {
    color: var(--accent);
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
}

.privacy-popup-buttons .btn {
    flex: 1;
    justify-content: center;
    padding: 8px 15px;
    font-size: 12px;
}

.shipping-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.shipping-feature {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.shipping-feature i {
    font-size: 28px;
    color: var(--accent);
}

.shipping-feature h3 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--dark);
}

.shipping-feature p {
    font-size: 12px;
    color: var(--gray);
}

.company-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.value-card i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark);
}

.value-card p {
    font-size: 12px;
    color: var(--gray);
}

.timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
}

.timeline-item {
    position: relative;
    padding-bottom: 25px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.timeline-item h4 {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 5px;
}

.timeline-item span {
    font-size: 11px;
    color: var(--accent);
    font-weight: 500;
}

.timeline-item p {
    font-size: 13px;
    color: var(--gray);
    margin-top: 5px;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-cards {
    display: grid;
    gap: 15px;
}

.contact-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(5px);
    border-left: 3px solid var(--accent);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), #dd6b20);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.contact-card h4 {
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 3px;
}

.contact-card p {
    font-size: 12px;
    color: var(--gray);
}

.process-section {
    background: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--accent);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step h3 {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 5px;
}

.process-step p {
    font-size: 12px;
    color: var(--gray);
}

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    margin-bottom: 10px;
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    color: var(--dark);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 15px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 12px;
    color: var(--gray);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 25px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .services-grid,
    .products-grid,
    .testimonials-grid,
    .company-values {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .contact-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-brand p {
        margin: 0 auto 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .shipping-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 50px;
    }

    .about-experience {
        display: none;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-badge {
        bottom: -10px;
        left: 10px;
        padding: 10px 15px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .privacy-popup {
        left: 10px;
        right: 10px;
        padding: 15px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }

    .container {
        padding: 0 10px;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .logo-text {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
}