:root {
    --bg-dark: #0f141e;
    --bg-card: #161e2b;
    --bg-elevated: #1e2838;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.05);
    --border-light: rgba(255, 255, 255, 0.1);
    --primary: #06b6d4;
    --primary-glow: rgba(6, 182, 212, 0.2);
    --primary-green: #22c55e;
    --primary-green-hover: #16a34a;
    --font: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

p {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-green);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-green-hover);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Utilities */
.mt-10 {
    margin-top: 10px;
}

.w-full {
    width: 100%;
}

.highlight {
    color: var(--primary-green);
    font-weight: 600;
}

/* ======== Header Section ======== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1.5rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 70px;
    object-fit: contain;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.2s;
}

.header-phone:hover {
    color: var(--primary);
}

.header-phone i {
    color: var(--primary);
    font-size: 1.3rem;
}

/* ======== Hero Section ======== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 20, 30, 0.95) 0%, rgba(15, 20, 30, 0.7) 50%, rgba(15, 20, 30, 0.2) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
}

.hero-content {
    max-width: 600px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    backdrop-filter: blur(4px);
}

.hero-graphic {
    position: relative;
    display: none;
    /* Hide on small, show on large */
}

@media (min-width: 900px) {
    .hero-graphic {
        display: block;
    }
}

.glow-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    border: 2px solid rgba(6, 182, 212, 0.3);
    position: relative;
    overflow: hidden;
    /* Added to keep large images from spilling */
}

.hero-emblem {
    width: 60%;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

/* ======== Services Section ======== */
.services {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(6, 182, 212, 0.3);
}

.service-card .icon-wrapper {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.3));
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
}

/* ======== How It Works Section ======== */
.how-it-works {
    position: relative;
    padding: 6rem 0;
    background-image: url('assets/map_bg.png');
    background-size: cover;
    background-position: center center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 20, 30, 0.95) 0%, rgba(15, 20, 30, 0.8) 50%, rgba(15, 20, 30, 0.6) 100%);
    z-index: 1;
}

.how-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.how-content {
    max-width: 650px;
}

.how-content h2 {
    margin-bottom: 1.5rem;
}

.how-desc p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.how-desc {
    margin-bottom: 2.5rem;
}

.locations {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.loc-row {
    color: var(--text-muted);
}

.map-graphic-pin {
    display: none;
}

.map-emblem {
    width: 60%;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

@media (min-width: 900px) {
    .map-graphic-pin {
        display: block;
        margin-right: 15%;
    }
}

/* ======== Info Cards Section ======== */
.info-cards-section {
    padding: 6rem 0 3rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.circle-teal {
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.info-text p {
    font-size: 0.95rem;
}

.support-line {
    font-size: 0.95rem;
}

/* ======== Footer Section ======== */
.footer {
    padding: 3rem 0 6rem 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 2rem;
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-left h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-right {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
}

.form-group input {
    width: 100%;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1rem 1rem 1rem 3rem;
    /* padded for icon */
    color: var(--text-main);
    font-family: var(--font);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group:not(:first-child) input {
    padding-left: 1rem;
    /* no icon for 2nd and 3rd */
}

.form-group input:focus {
    border-color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .header-logo {
        height: 50px;
    }

    .header-phone {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}