/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a2332;
    --primary-light: #2a3a4e;
    --accent: #c8a45c;
    --accent-hover: #d4b36a;
    --accent-dark: #a8873d;
    --text: #2d3748;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --bg: #ffffff;
    --bg-alt: #f7f8fa;
    --bg-dark: #0f1923;
    --bg-dark-alt: #162030;
    --border: #e2e8f0;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover), #e8d5a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 164, 92, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--bg);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--primary) !important;
    font-weight: 500 !important;
    padding: 10px 24px !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(165deg, #0a1628 0%, #1a2d45 40%, #0f1f33 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 164, 92, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8), transparent);
}

.hero-overlay {
    position: absolute;
    inset: 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='%23c8a45c' 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");
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
}

.hero-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1px solid rgba(200, 164, 92, 0.25);
    border-radius: 50px;
}

.hero h1 {
    color: #fff;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero-desc {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: 700px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-top: 16px;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-img-inner {
    text-align: center;
    color: rgba(255,255,255,0.4);
}

.about-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 12px;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--primary);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
}

.feature-icon {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 164, 92, 0.3);
}

@media (hover: none) {
    .service-card:hover,
    .product-card:hover,
    .why-card:hover {
        transform: none;
    }
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(200, 164, 92, 0.1), rgba(200, 164, 92, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 24px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-visual {
    height: 160px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, var(--accent, rgba(200,164,92,0.15)), transparent 60%);
    opacity: 0.2;
}

.product-symbol {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.15);
    position: relative;
    z-index: 1;
}

.product-info {
    padding: 28px;
}

.product-info h3 {
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.product-specs {
    list-style: none;
    padding: 0;
}

.product-specs li {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 4px 0;
    border-top: 1px solid var(--border);
}

/* ===== WHY US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.why-card:hover {
    border-color: rgba(200, 164, 92, 0.3);
    box-shadow: var(--shadow);
}

.why-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(200, 164, 92, 0.2);
    margin-bottom: 16px;
    line-height: 1;
}

.why-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 48px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.marquee-track {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 24px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-item {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.marquee-sep {
    color: rgba(200, 164, 92, 0.3);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e3350 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 164, 92, 0.1), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(200, 164, 92, 0.1), rgba(200, 164, 92, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    color: var(--text-light);
    font-size: 0.92rem;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-form {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23718096' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-links h4 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-links li {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.25);
    font-size: 0.82rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Prevent horizontal overflow on mobile */
html, body {
    overflow-x: hidden;
}

@media (max-width: 1024px) {
    .about-grid { gap: 48px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Mobile nav toggle */
    .menu-toggle {
        display: flex;
        z-index: 1100;
        position: relative;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile nav drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: rgba(15, 25, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 24px rgba(0,0,0,0.4);
        z-index: 1050;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    /* Overlay behind mobile nav */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 8px;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: rgba(200, 164, 92, 0.1);
    }

    .nav-cta {
        margin-top: 12px;
        text-align: center !important;
    }

    /* Hero mobile */
    .hero {
        min-height: auto;
        padding-top: 0;
    }

    .hero-content {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
    }

    .hero h1 br {
        display: none;
    }

    .hero-tag {
        font-size: 0.72rem;
        padding: 6px 14px;
        letter-spacing: 0.1em;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 48px;
        gap: 12px;
    }

    .hero-actions .btn {
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
        max-width: 100%;
    }

    .stat-number, .stat-suffix {
        font-size: 1.9rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Sections mobile */
    .section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .container {
        padding: 0 20px;
    }

    /* About mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-badge {
        bottom: -12px;
        right: 12px;
        padding: 14px 20px;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    /* Products mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-visual {
        height: 120px;
    }

    .product-info {
        padding: 20px;
    }

    /* Why us mobile */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 28px 24px;
    }

    .why-number {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    /* CTA mobile */
    .cta-section {
        padding: 64px 0;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cta-actions .btn {
        text-align: center;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.92rem;
    }

    /* Contact mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-item {
        padding: 16px 0;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
    }

    .contact-item a,
    .contact-item p {
        font-size: 0.85rem;
        word-break: break-word;
    }

    /* Footer mobile */
    .footer {
        padding: 48px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    /* Marquee mobile */
    .marquee-section {
        padding: 32px 0;
    }

    .marquee-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 110px 0 48px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .stat-number, .stat-suffix {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 36px;
    }

    .logo-icon {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 20px 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 14px;
        font-size: 16px; /* prevents iOS zoom on focus */
    }
}
