*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a2e4a;
    --navy-dark: #0f1e33;
    --accent: #ffc72c;
    --accent-hover: #e6b000;
    --gray-light: #f5f6f8;
    --gray: #6b7280;
    --gray-dark: #374151;
    --white: #ffffff;
    --text: #1f2937;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.top-bar {
    background: var(--navy-dark);
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact a,
.top-bar-social a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    margin-right: 20px;
    transition: color var(--transition);
}

.top-bar-contact a:hover,
.top-bar-social a:hover {
    color: var(--white);
}

.top-bar-social a {
    margin-right: 0;
    margin-left: 16px;
    font-weight: 600;
    font-size: 12px;
}

/* Navigation */
.main-nav {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 42px;
    font-weight: 500;
    color: #425563;
    text-decoration: none;
    letter-spacing: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo small {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #425563;
    opacity: 0.7;
    margin-top: 3px;
    text-align: center;
}

.nav-logo-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-brands {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-brands img {
    height: 30px;
    opacity: 0.7;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -16px;
    background: var(--white);
    list-style: none;
    min-width: 200px;
    padding: 12px 0;
    box-shadow: var(--shadow-hover);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
}

.dropdown li a:hover {
    background: var(--gray-light);
}

/* Hero */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 46, 74, 0.6);
}

.hero-overlay {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 199, 44, 0.2) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    max-width: 650px;
    padding: 80px 0;
}

.hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--navy-dark);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 199, 44, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--accent-hover);
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.feature-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray);
}

/* Products */
.products {
    padding: 80px 0;
}

.products-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
}

.products-grid .product-card {
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
}

.products-grid--row {
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: center;
}

.products-grid--row .product-card {
    flex: 1 1 280px;
    max-width: 350px;
}

.product-brand-label {
    padding: 16px 20px 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    border-bottom: 3px solid var(--accent);
    display: inline-block;
    margin: 0 20px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    aspect-ratio: 1;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image--logo img {
    width: 60%;
    height: auto;
    object-fit: contain;
}

.product-placeholder {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.product-specs {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
}

/* Brands */
.brands {
    padding: 80px 0;
    background: var(--gray-light);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.brand-card {
    background: var(--white);
    padding: 32px 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.brand-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.brand-logo {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.6;
    transition: var(--transition);
}

.brand-card:hover .brand-logo {
    opacity: 1;
    color: var(--navy);
}

/* Stats */
.stats {
    padding: 80px 0;
    background: var(--navy);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* About */
.about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--gray-light) 0%, #dfe3e8 100%);
    border-radius: var(--radius);
}

.about-content--centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    margin-top: 24px;
}

.about-list li {
    padding: 8px 0;
    color: var(--gray-dark);
}

.about-list li::before {
    content: '\2713';
    color: var(--accent);
    font-weight: 700;
    margin-right: 8px;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: var(--gray-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.contact-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.contact-item p {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.7;
}

.contact-item a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 400;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--navy-dark);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-logo small {
    color: rgba(255, 255, 255, 0.6);
}

.footer-brands {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.footer-brands img {
    height: 40px;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.footer-brands img:hover {
    opacity: 1;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    margin-left: 24px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Page Hero (subpages) */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* Products Page Sections */
.products-section {
    padding: 60px 0;
}

.products-section.alt-bg {
    background: var(--gray-light);
}

.category-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.product-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-light);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 8px 0 0 16px;
        display: none;
    }

    .has-dropdown:hover .dropdown {
        display: block;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-placeholder {
        height: 250px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-legal a {
        margin-left: 12px;
        margin-right: 12px;
    }
}

/* Legal Page */
.legal-content {
    padding: 60px 0 80px;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-text h3 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-text p {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-text ul {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-text ul li {
    margin-bottom: 8px;
}

.cookie-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-table tr:hover td {
    background: var(--gray-light);
}
