/* ===========================================
   کالا صنعتي - Static Export Styles
   Complete CSS for DirectAdmin Deployment
   =========================================== */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --background: hsl(0, 0%, 98%);
    --foreground: hsl(213, 50%, 20%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(213, 50%, 20%);
    --primary: hsl(28, 90%, 50%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(213, 54%, 24%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(210, 20%, 96%);
    --muted-foreground: hsl(213, 20%, 45%);
    --accent: hsl(145, 63%, 42%);
    --accent-foreground: hsl(0, 0%, 100%);
    --border: hsl(214, 20%, 90%);
    --whatsapp: hsl(145, 63%, 42%);

    /* Shadows */
    --shadow-card: 0 4px 24px -4px hsla(213, 54%, 24%, 0.1);
    --shadow-elevated: 0 12px 40px -12px hsla(213, 54%, 24%, 0.2);
    --shadow-glow-orange: 0 0 30px hsla(28, 90%, 50%, 0.35);
    --shadow-glow-green: 0 0 20px hsla(145, 63%, 42%, 0.4);

    /* Radius */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Utilities ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Intersection Observer animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-card);
}

.btn-primary:hover {
    background-color: hsla(28, 90%, 50%, 0.9);
    box-shadow: var(--shadow-elevated);
}

.btn-hero {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-glow-orange);
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-elevated);
}

.btn-hero-outline {
    border: 2px solid hsla(0, 0%, 100%, 0.3);
    background-color: hsla(0, 0%, 100%, 0.1);
    color: var(--primary-foreground);
    backdrop-filter: blur(4px);
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-hero-outline:hover {
    background-color: hsla(0, 0%, 100%, 0.2);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--accent-foreground);
    box-shadow: var(--shadow-glow-green);
}

.btn-whatsapp:hover {
    background-color: hsl(145, 63%, 38%);
    box-shadow: 0 0 30px hsla(145, 63%, 42%, 0.5);
}

.btn-navy {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.btn-navy:hover {
    background-color: hsl(213, 60%, 20%);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--card);
    box-shadow: var(--shadow-card);
    padding: 0.75rem 0;
}

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

.logo-img {
    height: 2.5rem;
    width: auto;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .logo-img {
        height: 3rem;
    }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-foreground);
    transition: color 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--foreground);
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .nav-cta {
        display: flex;
    }
}

.nav-cta .btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--secondary-foreground);
    transition: color 0.3s ease;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--foreground);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary);
    z-index: 40;
    padding: 5rem 1.5rem 2rem;
    flex-direction: column;
}

.mobile-menu.open {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-menu-links a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--secondary-foreground);
    padding: 0.75rem 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--primary);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            hsla(213, 54%, 24%, 0.8) 0%,
            hsla(213, 54%, 24%, 0.7) 50%,
            hsla(213, 54%, 24%, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-foreground);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary);
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 42rem;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--primary-foreground);
}

.hero-stat svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: hsla(0, 0%, 100%, 0.6);
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
}

.scroll-indicator svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== Product Categories Section ===== */
.categories {
    padding: 5rem 0;
    background-color: var(--background);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.5rem;
    }
}

.category-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.category-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: hsla(28, 90%, 50%, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background-color: var(--primary);
    transform: scale(1.1);
}

.category-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.category-card:hover .category-icon svg {
    color: var(--primary-foreground);
}

.category-card h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.category-card p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ===== Trust Section ===== */
.trust {
    padding: 5rem 0;
    background-color: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: hsla(28, 90%, 50%, 0.5);
    box-shadow: var(--shadow-card);
}

.trust-icon {
    width: 3rem;
    height: 3rem;
    background-color: hsla(28, 90%, 50%, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.trust-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.trust-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ===== Process Steps Section ===== */
.process {
    padding: 5rem 0;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.process .section-header h2 {
    color: var(--secondary-foreground);
}

.process .section-header h2 span {
    color: var(--primary);
}

.process .section-header p {
    color: hsla(0, 0%, 100%, 0.7);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: hsla(0, 0%, 100%, 0.05);
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.process-step:hover {
    background-color: hsla(0, 0%, 100%, 0.1);
    border-color: hsla(28, 90%, 50%, 0.5);
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), hsl(28, 85%, 45%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

.process-step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
}

/* ===== Stats Section ===== */
.stats {
    padding: 4rem 0;
    background-color: var(--background);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    background-color: hsla(28, 90%, 50%, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background-color: var(--primary);
}

.stat-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.stat-card:hover .stat-icon svg {
    color: var(--primary-foreground);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===== Projects Section ===== */
.projects {
    padding: 5rem 0;
    background-color: var(--card);
    border-top: 1px solid var(--border);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: hsla(28, 90%, 50%, 0.5);
    box-shadow: var(--shadow-card);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-icon {
    width: 3rem;
    height: 3rem;
    background-color: hsla(28, 90%, 50%, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.project-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
}

.project-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background-color: hsla(28, 90%, 50%, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
}

.project-tag svg {
    width: 0.75rem;
    height: 0.75rem;
}

/* ===== Products Section ===== */
.products {
    padding: 5rem 0;
    background-color: var(--background);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: hsla(28, 90%, 50%, 0.5);
    box-shadow: var(--shadow-elevated);
    transform: translateY(-4px);
}

.product-image {
    height: 12rem;
    background-color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image svg {
    width: 4rem;
    height: 4rem;
    color: var(--muted-foreground);
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.product-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.product-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-brand {
    padding: 0.25rem 0.5rem;
    background-color: var(--muted);
    border-radius: var(--radius);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--muted-foreground);
}

.product-footer .btn {
    flex-shrink: 0;
}

/* ===== Coverage Section ===== */
.coverage {
    padding: 5rem 0;
    background-color: var(--card);
    border-top: 1px solid var(--border);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .coverage-content {
        grid-template-columns: 1fr 1fr;
    }
}

.coverage-text h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.coverage-text h2 span {
    color: var(--primary);
}

@media (min-width: 768px) {
    .coverage-text h2 {
        font-size: 2.25rem;
    }
}

.coverage-text>p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.coverage-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.coverage-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coverage-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
    flex-shrink: 0;
}

.coverage-feature span {
    font-size: 1rem;
    color: var(--foreground);
}

.coverage-cities {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.coverage-cities h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .cities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.city-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.city-item:hover {
    border-color: var(--primary);
    background-color: hsla(28, 90%, 50%, 0.05);
}

.city-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.city-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

/* ===== Export Services Section ===== */
.export-services {
    padding: 5rem 0;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.export-services .section-header h2 {
    color: var(--secondary-foreground);
}

.export-services .section-header h2 span {
    color: var(--primary);
}

.export-services .section-header p {
    color: hsla(0, 0%, 100%, 0.7);
}

.export-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .export-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.export-card {
    text-align: center;
    padding: 1.5rem;
    background-color: hsla(0, 0%, 100%, 0.05);
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.export-card:hover {
    border-color: hsla(28, 90%, 50%, 0.5);
}

.export-icon {
    width: 4rem;
    height: 4rem;
    background-color: hsla(28, 90%, 50%, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.export-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.export-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.export-card p {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
}

/* ===== Brands Section ===== */
.brands {
    padding: 3rem 0;
    background-color: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brands-header {
    text-align: center;
    margin-bottom: 2rem;
}

.brands-header p {
    font-size: 1rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

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

@media (min-width: 640px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
    }
}

.brand-item {
    padding: 0.75rem;
    background-color: hsla(210, 20%, 96%, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.brand-item:hover {
    border-color: hsla(28, 90%, 50%, 0.5);
}

.brand-item span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.brand-item:hover span {
    color: var(--primary);
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 5rem 0;
    background-color: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: hsla(28, 90%, 50%, 0.5);
    box-shadow: var(--shadow-card);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-foreground);
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
}

.testimonial-info p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    fill: var(--primary);
}

.testimonial-card>p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    font-style: italic;
}

/* ===== FAQ Section ===== */
.faq {
    padding: 5rem 0;
    background-color: var(--card);
    border-top: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: hsla(28, 90%, 50%, 0.5);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    text-align: right;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    background: transparent;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.8;
}

/* ===== Contact Form Section ===== */
.contact {
    padding: 5rem 0;
    background-color: var(--background);
}

.contact-wrapper {
    max-width: 42rem;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

@media (min-width: 768px) {
    .contact-form {
        padding: 3rem;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(28, 90%, 50%, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    display: flex;
    justify-content: center;
}

.form-submit .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .form-submit .btn {
        width: auto;
        min-width: 200px;
    }
}

/* ===== Certificates Section ===== */
.certificates {
    padding: 4rem 0;
    background-color: var(--card);
    border-top: 1px solid var(--border);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .certificates-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.certificate-card {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.certificate-card:hover {
    border-color: hsla(28, 90%, 50%, 0.5);
    box-shadow: var(--shadow-card);
}

.certificate-icon {
    width: 4rem;
    height: 4rem;
    background-color: hsla(28, 90%, 50%, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.certificate-card:hover .certificate-icon {
    background-color: var(--primary);
    transform: scale(1.1);
}

.certificate-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.certificate-card:hover .certificate-icon svg {
    color: var(--primary-foreground);
}

.certificate-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.certificate-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    padding: 4rem 0 8rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 0;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-section:first-child {
        text-align: right;
    }

    .footer-section:last-child {
        text-align: left;
    }
}

.footer-logo {
    height: 3rem;
    margin: 0 auto 1rem;
}

@media (min-width: 768px) {
    .footer-section:first-child .footer-logo {
        margin: 0 0 1rem;
    }
}

.footer-section>p {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
}

@media (min-width: 768px) {
    .footer-contact-item {
        justify-content: flex-start;
    }
}

.footer-contact-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: hsla(0, 0%, 100%, 0.5);
}

/* ===== Sticky Footer (Mobile) ===== */
.sticky-footer {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background-color: var(--card);
    border-top: 1px solid var(--border);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    box-shadow: 0 -4px 20px hsla(0, 0%, 0%, 0.1);
}

@media (min-width: 768px) {
    .sticky-footer {
        display: none;
    }
}

.sticky-footer .btn {
    flex: 1;
    justify-content: center;
    padding: 0.875rem;
    font-size: 0.875rem;
}

.sticky-footer .btn-whatsapp {
    flex: 1.5;
}

/* ===== Floating WhatsApp Button ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 7rem;
    left: 1rem;
    z-index: 40;
}

@media (min-width: 768px) {
    .floating-whatsapp {
        bottom: 2rem;
        left: 1.5rem;
    }
}

.floating-whatsapp-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--whatsapp);
    border-radius: 50%;
    box-shadow: var(--shadow-glow-green);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .floating-whatsapp-btn {
        width: 4rem;
        height: 4rem;
    }
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
}

.floating-whatsapp-btn svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--accent-foreground);
}

@media (min-width: 768px) {
    .floating-whatsapp-btn svg {
        width: 2rem;
        height: 2rem;
    }
}

.floating-whatsapp-ping {
    position: absolute;
    inset: 0;
    background-color: var(--whatsapp);
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.3;
}

.floating-whatsapp-tooltip {
    display: none;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 0.75rem;
    background-color: var(--card);
    color: var(--foreground);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-elevated);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .floating-whatsapp:hover .floating-whatsapp-tooltip {
        display: block;
    }
}

/* ===== Back to Top Button ===== */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 7rem;
    right: 1rem;
    z-index: 40;
    width: 3rem;
    height: 3rem;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-elevated);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    display: flex;
}

@media (min-width: 768px) {
    .back-to-top {
        bottom: 2rem;
        right: 1.5rem;
    }
}

.back-to-top:hover {
    background-color: var(--primary);
    transform: scale(1.1);
}

.back-to-top svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 640px) {
    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

/* ===== Print Styles ===== */
@media print {

    .navbar,
    .sticky-footer,
    .floating-whatsapp,
    .back-to-top {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    body {
        font-size: 12pt;
    }
}

/* ===== Missing Utility Classes ===== */

/* Hidden */
.hidden {
    display: none !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary);
}

.text-white {
    color: var(--secondary-foreground);
}

.text-white-muted {
    color: hsla(0, 0%, 100%, 0.7);
}

/* Section Base */
.section {
    padding: 5rem 0;
}

/* Background Colors */
.bg-background {
    background-color: var(--background);
}

.bg-muted {
    background-color: var(--muted);
}

.bg-card {
    background-color: var(--card);
}

/* Section Dark (for Coverage) */
.section-dark {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

/* Section Header */
.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-dark .section-title {
    color: var(--secondary-foreground);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: hsla(0, 0%, 100%, 0.7);
}

/* Button Full Width */
.btn-full {
    width: 100%;
}

/* Navbar Content (match HTML) */
.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Nav CTAs (match HTML) */
.nav-ctas {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .nav-ctas {
        display: flex;
    }
}

/* ===== Product Card Fixes ===== */
.product-accent {
    height: 4px;
    background: linear-gradient(to left, var(--primary), hsl(28, 85%, 45%));
}

.product-icon {
    width: 4rem;
    height: 4rem;
    background-color: hsla(28, 90%, 50%, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1rem;
}

.product-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.product-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.product-subtitle {
    font-size: 0.75rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.75rem;
}

.product-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    line-height: 1.7;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.product-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}

.product-brands span {
    padding: 0.25rem 0.75rem;
    background-color: var(--muted);
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--muted-foreground);
}

.product-card .btn {
    margin: 0 1rem 1.5rem;
}

/* ===== City Card for Coverage ===== */
.city-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem;
    background-color: hsla(0, 0%, 100%, 0.05);
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.city-card:hover {
    border-color: hsla(28, 90%, 50%, 0.5);
    background-color: hsla(0, 0%, 100%, 0.1);
}

.city-card svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.city-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.city-delay {
    font-size: 0.75rem;
    color: hsla(0, 0%, 100%, 0.6);
}

/* ===== Coverage Info Grid ===== */
.coverage-info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .coverage-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.coverage-info-card {
    text-align: center;
    padding: 1.5rem;
    background-color: hsla(0, 0%, 100%, 0.05);
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: var(--radius-xl);
}

.coverage-info-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.coverage-info-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary-foreground);
}

.coverage-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.coverage-info-card p {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
}

/* ===== Steps Section ===== */
.steps-container {
    position: relative;
}

.steps-line {
    display: none;
}

@media (min-width: 1024px) {
    .steps-line {
        display: block;
        position: absolute;
        top: 4rem;
        left: 10%;
        right: 10%;
        height: 2px;
        background-color: hsla(28, 90%, 50%, 0.3);
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-item {
    text-align: center;
    position: relative;
}

.step-circle {
    position: relative;
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1.5rem;
}

.step-icon-wrapper {
    width: 100%;
    height: 100%;
    background-color: hsla(28, 90%, 50%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-wrapper svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary);
}

.step-number-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary), hsl(28, 85%, 45%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-foreground);
    box-shadow: var(--shadow-card);
}

.step-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===== Mobile Menu Fixes ===== */
.mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}

/* Hide mobile class */
.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: inline;
    }
}

/* ===== Scroll Mouse Animation ===== */
.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid hsla(0, 0%, 100%, 0.4);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: hsla(0, 0%, 100%, 0.6);
    border-radius: 9999px;
    animation: pulse 2s infinite;
}

/* ===== Cities Grid for Dark Section ===== */
.cities-grid-dark {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .cities-grid-dark {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .cities-grid-dark {
        grid-template-columns: repeat(8, 1fr);
    }
}

/* ===== SVG Icon Fixes ===== */
svg {
    display: inline-block;
    vertical-align: middle;
}

/* Ensure SVGs render properly */
svg path,
svg circle,
svg rect,
svg line,
svg polyline {
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===== Hero Logo ===== */
.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo img {
    height: 5rem;
    width: auto;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-logo img {
        height: 6rem;
    }
}

/* ===== Hero Title & Subtitle ===== */
.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-foreground);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* ===== Hero Badges ===== */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(8px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid hsla(0, 0%, 100%, 0.15);
}

.badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: hsla(28, 90%, 50%, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-foreground);
}

.badge-label {
    font-size: 0.75rem;
    color: hsla(0, 0%, 100%, 0.7);
}

/* ===== Hero CTAs ===== */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
    }
}

/* ===== Animation Delays ===== */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* ===== Project Cards ===== */
.project-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.project-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(0, 0%, 0%, 0.6), transparent);
}

.project-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-badge svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-foreground);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.project-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* ===== Export Services Grid ===== */
.export-services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .export-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.export-service-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: hsla(0, 0%, 100%, 0.05);
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.export-service-card:hover {
    background-color: hsla(0, 0%, 100%, 0.1);
    border-color: hsla(28, 90%, 50%, 0.5);
}

.export-service-icon {
    width: 4rem;
    height: 4rem;
    background-color: hsla(28, 90%, 50%, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.export-service-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.export-service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-foreground);
    margin-bottom: 0.5rem;
}

.export-service-card p {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
    line-height: 1.6;
}

/* ===== Stat Cards ===== */
.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 2.5rem;
    }
}

.stat-desc {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* ===== Testimonials ===== */
.testimonial-card {
    position: relative;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-quote {
    position: absolute;
    top: -0.75rem;
    right: 1.5rem;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-orange);
}

.testimonial-quote svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary-foreground);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    fill: var(--primary);
}

.testimonial-content {
    font-size: 0.875rem;
    color: var(--foreground);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.testimonial-author h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--foreground);
}

.testimonial-author p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.testimonial-author .location {
    color: var(--primary);
    margin-top: 0.25rem;
}

.testimonial-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--card);
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    margin-top: 2.5rem;
}

.testimonial-avatars {
    display: flex;
}

.testimonial-avatars>div {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: hsla(28, 90%, 50%, 0.2);
    border: 2px solid var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: -0.5rem;
}

.testimonial-avatars>div:first-child {
    margin-left: 0;
}

/* ===== Missing Utility Classes ===== */
.hidden {
    display: none !important;
}

.text-primary {
    color: var(--primary);
}

.text-white {
    color: var(--secondary-foreground);
}

.text-white-muted {
    color: hsla(0, 0%, 100%, 0.7);
}

.section {
    padding: 5rem 0;
}

.bg-background {
    background-color: var(--background);
}

.bg-muted {
    background-color: var(--muted);
}

.bg-card {
    background-color: var(--card);
}

.section-dark {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-dark .section-title {
    color: var(--secondary-foreground);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: hsla(0, 0%, 100%, 0.7);
}

.btn-full {
    width: 100%;
}

/* ===== Navbar Content (match HTML) ===== */
.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== Nav CTAs (match HTML) ===== */
.nav-ctas {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .nav-ctas {
        display: flex;
    }
}

.nav-ctas .btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

/* ===== Process Steps - Fix for HTML structure ===== */
.step-circle {
    position: relative;
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1.5rem;
}

.step-icon-wrapper {
    width: 100%;
    height: 100%;
    background-color: hsla(28, 90%, 50%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-wrapper svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary);
}

.step-item .step-number {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary), hsl(28, 85%, 45%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-foreground);
    box-shadow: var(--shadow-card);
}

.step-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.steps-container {
    position: relative;
}

.steps-line {
    display: none;
}

@media (min-width: 1024px) {
    .steps-line {
        display: block;
        position: absolute;
        top: 4rem;
        left: 10%;
        right: 10%;
        height: 2px;
        background-color: hsla(28, 90%, 50%, 0.3);
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-item {
    text-align: center;
    position: relative;
}

/* ===== Product Card Fixes ===== */
.product-accent {
    height: 4px;
    background: linear-gradient(to left, var(--primary), hsl(28, 85%, 45%));
}

.product-icon {
    width: 4rem;
    height: 4rem;
    background-color: hsla(28, 90%, 50%, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1rem;
}

.product-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.product-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.product-subtitle {
    font-size: 0.75rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.75rem;
}

.product-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    line-height: 1.7;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.product-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}

.product-brands span {
    padding: 0.25rem 0.75rem;
    background-color: var(--muted);
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--muted-foreground);
}

.product-card .btn {
    margin: 0 1rem 1.5rem;
}

/* ===== Testimonials Badge ===== */
.testimonials-badge {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.testimonials-badge .badge-avatars {
    display: flex;
    margin-left: 0.75rem;
}

.testimonials-badge .badge-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: hsla(28, 90%, 50%, 0.2);
    border: 2px solid var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: -0.5rem;
}

.testimonials-badge .badge-avatar:first-child {
    margin-right: 0;
}

.testimonials-badge .badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.testimonial-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

/* ===== FAQ on Dark Background ===== */
.section-dark .faq-item {
    background-color: hsla(0, 0%, 100%, 0.05);
    border-color: hsla(0, 0%, 100%, 0.1);
}

.section-dark .faq-item:hover {
    border-color: hsla(28, 90%, 50%, 0.5);
}

.section-dark .faq-question {
    color: var(--secondary-foreground);
}

.section-dark .faq-question:hover {
    color: var(--primary);
}

.section-dark .faq-answer p {
    color: hsla(0, 0%, 100%, 0.7);
}

.section-dark .faq-icon {
    color: var(--primary);
}

/* ===== Cities Grid in Dark Section ===== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .cities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .cities-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

.city-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem;
    background-color: hsla(0, 0%, 100%, 0.05);
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.city-card:hover {
    border-color: hsla(28, 90%, 50%, 0.5);
    background-color: hsla(0, 0%, 100%, 0.1);
}

.city-card svg {
    color: var(--primary);
}

.city-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--secondary-foreground);
}

.city-delay {
    font-size: 0.75rem;
    color: hsla(0, 0%, 100%, 0.6);
}

/* ===== Coverage Info Grid ===== */
.coverage-info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .coverage-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.coverage-info-card {
    text-align: center;
    padding: 1.5rem;
    background-color: hsla(0, 0%, 100%, 0.05);
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: var(--radius-xl);
}

.coverage-info-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.coverage-info-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-foreground);
}

.coverage-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-foreground);
    margin-bottom: 0.5rem;
}

.coverage-info-card p {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
}

/* ===== Contact Grid ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-wrapper {
    order: 2;
}

@media (min-width: 1024px) {
    .contact-form-wrapper {
        order: 1;
    }
}

.contact-form-box {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.contact-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info {
    order: 1;
}

@media (min-width: 1024px) {
    .contact-info {
        order: 2;
    }
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.contact-info-desc {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 3rem;
    height: 3rem;
    background-color: hsla(28, 90%, 50%, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-item a:hover {
    color: var(--primary);
}

/* ===== Footer Grid ===== */
.footer-about {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-about {
        text-align: right;
    }
}

.footer-about .footer-logo {
    height: 3rem;
    margin: 0 auto 1rem;
}

@media (min-width: 768px) {
    .footer-about .footer-logo {
        margin: 0 0 1rem;
    }
}

.footer-desc {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-foreground);
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links ul li a {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary);
}