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

:root {
    --primary: #0099b8;
    --primary-dark: #006d85;
    --primary-light: #e0f7fc;
    --accent: #1565C0;
    --navy: #0d2d4a;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-50: #f0f4f8;
    --gray-100: #e2eaf0;
    --gray-200: #c8d8e4;
    --gray-400: #7a9ab0;
    --gray-600: #4a6478;
    --text-body: #3d5a6e;
    --text-muted: #6b8a9c;
    --shadow-sm: 0 1px 4px rgba(0,120,160,0.06);
    --shadow-md: 0 4px 20px rgba(0,120,160,0.10);
    --shadow-lg: 0 12px 48px rgba(0,120,160,0.14);
    --shadow-xl: 0 24px 80px rgba(0,120,160,0.18);
    --radius: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 14px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 72px;
}

/* Logo styling */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
}

.logo-text span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

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

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-outline {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 8px;
    border: 1.5px solid var(--primary);
    transition: all 0.2s;
}

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

.btn-primary-nav {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 2px 12px rgba(0,153,184,0.3);
    transition: all 0.2s;
}

.btn-primary-nav:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
}

/* Hero Section */
#hero {
    padding-top: 72px;
}

.hero-topband {
    background: linear-gradient(90deg, var(--primary-dark), var(--accent));
    color: #fff;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    text-transform: uppercase;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 60px 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Mobile fix */
@media (max-width: 768px) {
    .btn-icon {
        width: 14px;
        height: 14px;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,153,184,0.35);
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,153,184,0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid var(--gray-200);
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.trust-badges {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

/* If SVG supports fill */
.trust-icon {
    fill: #0099b8;
}

/* Dashboard Preview */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 20px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }

.dashboard-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
}

.map-simulation {
    height: 160px;
    background: var(--gray-50);
    border-radius: 10px;
    margin-bottom: 16px;
    position: relative;
    border: 1px solid var(--gray-100);
    background-image: linear-gradient(var(--gray-100) 1px, transparent 1px), linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
    background-size: 20px 20px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.map-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255,255,255,0.95);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid var(--gray-100);
    z-index: 2;
}

/* Mining Vehicle 3D Marker Container */
.vehicle-3d-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 3;
    pointer-events: none;
}

.vehicle-img {
    width: 19px;
    height: 40px;
    object-fit: contain;
    transform: rotate(0deg); /* change based on direction */
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.4));
    animation: vehicle-float 3s ease-in-out infinite;
}

/* GPS Pulse Rings */
.gps-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 153, 184, 0.15);   /* primary */
    border: 2px solid rgba(0, 153, 184, 0.4);
    animation: gps-pulse 2s ease-out infinite;
    z-index: 1;
}

.gps-pulse-ring:nth-child(2) {
    animation-delay: 0.4s;
}

.gps-pulse-ring:nth-child(3) {
    animation-delay: 0.8s;
}

.gps-pulse-ring:nth-child(4) {
    animation-delay: 1.2s;
}

@keyframes gps-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-width: 3px;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
        border-width: 1px;
    }
}

/* Mining Vehicle 3D Icon */
.vehicle-icon-3d {
    position: relative;
    z-index: 2;
    background: none;   /* REMOVE circle */
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
    transform: none;
}

.vehicle-icon-3d:hover {
    transform: perspective(200px) rotateX(0deg) rotateY(0deg) scale(1.1);
}

.vehicle-icon-3d .vehicle-emoji {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    animation: vehicle-float 3s ease-in-out infinite;
}

@keyframes vehicle-float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-4px); 
    }
}

/* GPS Signal Orbit Ring */
.gps-signal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    border: 2px dashed rgba(3, 117, 140, 0.641);
    border-radius: 50%;
    animation: signal-spin 8s linear infinite;
    z-index: 0;
}

.gps-signal::before {
    content: '📡';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    animation: satellite-orbit 8s linear infinite;
}

@keyframes signal-spin {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg); 
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg); 
    }
}

@keyframes satellite-orbit {
    0% { 
        transform: translateX(-50%) rotate(0deg); 
    }
    100% { 
        transform: translateX(-50%) rotate(-360deg); 
    }
}

/* GPS Accuracy Rings */
.gps-accuracy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 1px solid rgba(0, 153, 184, 0.25);
    border-radius: 50%;
    z-index: 0;
    animation: accuracy-pulse 3s ease-in-out infinite;
}

.gps-accuracy::before {
    content: 'GPS';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(230, 81, 0, 0.7);
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
}

@keyframes accuracy-pulse {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Vehicle Shadow on Map */
.vehicle-shadow {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    filter: blur(6px);
    animation: shadow-pulse 2s ease-in-out infinite;
    z-index: 0;
}

@keyframes shadow-pulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(-50%) scale(1.4);
        opacity: 0.15;
    }
}

/* Glow Effect */
.vehicle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.3;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.stat-card {
    background: var(--off-white);
    border-radius: 8px;
    padding: 12px 10px;
    text-align: center;
    border: 1px solid var(--gray-100);
}

.stat-card.highlight {
    background: var(--primary-light);
    border-color: rgba(0,153,184,0.2);
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alert-bar {
    background: #fff8e1;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.75rem;
    color: #7c5d00;
}

/* Trust Bar */
.trust-bar {
    background: var(--off-white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: 20px 32px;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-text strong {
    color: var(--navy);
}

/* Sections */
.section {
    padding: 80px 0;
}

.alt-bg {
    background: var(--off-white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.section-header p {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    border: 1px solid var(--primary);
    transition: 0.3s;
}

.product-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.product-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.product-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.cat-icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    vertical-align: middle;
}

.product-category.car {
    background: #e8f5e9;
    color: #2e7d32;
}

.product-category.vltd {
    background: #e3f2fd;
    color: #1565c0;
}

.product-category.mining {
    background: #fff3e0;
    color: #e65100;
}

.product-category.bike {
    background: #fce4ec;
    color: #c62828;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    line-height: 1;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--navy);
}

.product-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.feature-list li {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 10px;
    padding-left: 4px;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    border: 1.5px solid var(--primary);
    transition: all 0.2s;
    text-align: center;
}

.btn-card:hover {
    background: var(--primary);
    color: #fff;
}

/* Features Section */
.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    transition: all 0.2s;
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.feature-icon {
    font-size: 1.5rem;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 10px;
}

.feature-text h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--navy);
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.dashboard-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.live-fleet-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
}

.fleet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #22c55e;
    text-transform: uppercase;
}

.live-dot-small {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 1.5s infinite;
}

.vehicle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-50);
    font-size: 0.82rem;
}

.vehicle-row:last-child {
    border-bottom: none;
}

.status {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 100px;
}

.status.moving {
    background: #e8f5e9;
    color: #2e7d32;
}

.status.idle {
    background: #fff3e0;
    color: #e65100;
}

.status.stopped {
    background: #fce4ec;
    color: #c62828;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.metric {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    border: 1px solid var(--gray-100);
}

.metric.blue {
    background: var(--primary-light);
    border-color: rgba(0,153,184,0.2);
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Use Cases Grid */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.case-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    cursor: pointer;
}

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

.case-emoji {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.case-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.case-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.case-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 12px;
}

.contact-info > p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
}

.contact-item strong {
    color: var(--navy);
    display: block;
    margin-bottom: 2px;
}

.sub-text {
    margin-left: 20px;   /* controls indent */
    font-size: 0.9rem;
    color: #555;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.contact-form > p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--navy);
    transition: all 0.2s;
    background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0,153,184,0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,153,184,0.35);
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* SEO Location Section */
/* SEO Location Section - Light Theme (match products/features) */
.seo-location {
    padding: 70px 20px;
    background: #f8fafc; /* same light bg as sections */
    text-align: center;
}

.seo-location .container {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05); /* softer border */
}

.seo-location .container:hover {
    transform: translateY(-3px);
    transition: 0.3s ease;
    border: 1px solid var(--primary);
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
}

/* Heading */
.seo-location h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy);
}

/* Description */
.seo-location p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Highlight cities */
.seo-location strong {
    color: var(--primary);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--navy);
    color: #fff;
    padding: 60px 0 30px;
}

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

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

.footer-brand .logo-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info-footer{
    margin-bottom: 20px;
}

.contact-info-footer a {
    color: inherit;          /* same as parent text */
    text-decoration: none;   /* remove underline */
    margin-right: 15px;      /* spacing between numbers */
}

.contact-info-footer a:hover {
    text-decoration: underline; /* optional */
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-col h5 {
    font-size: 0.85rem;
    margin-bottom: 16px;
    color: #fff;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.keywords {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-container {
        padding: 40px 20px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .trust-container {
        gap: 24px;
    }
    
    .trust-badges {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }
    
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .seo-location {
        padding: 40px 15px;
    }

    .seo-location h3 {
        font-size: 1.4rem;
    }

    .seo-location p {
        font-size: 0.95rem;
    }
}

/* Menu styles when mobile menu is active */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
}

.nav-actions.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 300px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 0 20px 20px;
}