/* ============================
   GLOBAL
=============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;
}

body {
    background: #fff;
    color: #1a1a1a;
    line-height: 1.7;
    overflow-x: hidden;
}

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

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: #111;
}

p {
    color: #444;
}


/* COLORS */

:root {
    --primary: #005eff;
    --primary-hover: #0042b8;
    --dark: #0c0f14;
    --light: #ffffff;
    --gray: #e5e5e5;
    --soft-gray: #f6f6f6;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* ============================
   HEADER
=============================== */

.header {
    background: #ffffff;
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo img {
    width: 55px;
}

.nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.25s;
}

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

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

.cta-nav {
    padding: 8px 16px;
    background: var(--primary);
    color: white !important;
    border-radius: 6px;
}


/* ============================
   MOBILE MENU
=============================== */

.mobile-menu {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--primary);
    font-weight: bold;
}


/* Mobile Navigation Panel */

@media (max-width: 900px) {
    .mobile-menu {
        display: block;
    }
    .nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 25px 0;
        box-shadow: var(--shadow);
        animation: fadeIn 0.3s ease;
        z-index: 1000;
    }
    .nav.show ul {
        display: flex;
    }
    .nav ul li {
        text-align: center;
        margin: 12px 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================
   HERO
=============================== */

.hero {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
}


/* BUTTONS */

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

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

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

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


/* ============================
   SECTION HEADERS
=============================== */

section h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 40px;
    max-width: 650px;
    margin: auto;
    color: #555;
}


/* ============================
   SERVICE CARDS
=============================== */

.service-grid {
    display: grid;
    gap: 35px;
    margin-top: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
}

.service-card h3 {
    padding: 20px;
}

.service-card p {
    padding: 0 20px 20px;
}

.learn-more {
    padding: 10px 20px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}


/* ============================
   PRICING
=============================== */

.pricing-grid {
    display: grid;
    gap: 35px;
    margin-top: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.price-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.price-card.popular {
    border: 3px solid var(--primary);
}

.price {
    font-size: 2rem;
    margin: 20px 0;
}

.price-card ul {
    list-style: none;
}

.price-card li {
    margin-bottom: 10px;
}


/* ============================
   FOOTER
=============================== */

footer {
    background: var(--dark);
    color: white;
    padding: 60px 0;
}

.footer {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer-logo {
    width: 70px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    color: #ccc;
    text-decoration: none;
}

.footer-col a:hover {
    color: white;
}

.footer p {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 40px;
}


/* ============================
   RESPONSIVE HERO
=============================== */

@media (max-width: 850px) {
    .hero {
        height: auto;
        padding: 100px 0;
        text-align: center;
    }
    .hero-bg {
        display: none;
    }
}