:root {
    /* CCPI Inspired Palette */
    --primary-color: #034053;
    /* Deep Petroleum Blue from Logo */
    --primary-light: #066b8a;
    --accent-color: #d4a373;
    /* Gold/Bronze */
    --danger-color: #e63946;
    --text-dark: #1d1d1d;
    --text-white: #ffffff;
    --bg-light: #f4f6f8;

    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Logo */
.header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none !important;
    /* FIXED: No bullets */
}

.nav-links a {
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.burger {
    display: none;
}

/* Buttons & CTA */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(3, 64, 83, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(3, 64, 83, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(3, 64, 83, 0);
    }
}

/* Hero Section */
.hero {
    height: 85vh;
    /* Direct URL to ensure it works */
    background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 80px;
    /* FIXED: Prevent overlap */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(3, 64, 83, 0.95) 0%, rgba(3, 64, 83, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-risk {
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.2);
    padding: 0 5px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border: none;
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-whatsapp-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-whatsapp-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.hero-footer-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* Problem Section */
.section {
    padding: 80px 0;
}

.problem-section {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #555;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.problem-card h3 {
    padding: 20px 20px 10px;
    color: var(--danger-color);
    font-size: 1.4rem;
}

.problem-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 1rem;
}

.success-card h3 {
    color: var(--primary-color);
}

.success-card {
    border: 2px solid var(--primary-color);
}

/* Reasons Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.rounded-img {
    border-radius: 10px;
}

.shadow-lg {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.text-content h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.check-list {
    margin: 30px 0;
    list-style: none;
}

.check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Locations */
.locations {
    background-color: var(--primary-color);
    color: #fff;
}

.locations .section-header h2 {
    color: #fff;
}

.locations .section-header p {
    color: #ccc;
}

.locations-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.location-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-box h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.address {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.whatsapp-btn-large {
    display: block;
    background-color: #25D366;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-btn-large:hover {
    background-color: #128C7E;
}

.whatsapp-btn-large.outline {
    background: transparent;
    border: 2px solid #25D366;
    color: #25D366;
}

.whatsapp-btn-large.outline:hover {
    background: #25D366;
    color: #fff;
}

/* Footer */
.footer {
    background: #022b3a;
    color: #888;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav {
        width: 100%;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 70px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
        z-index: 999;
        border-top: 1px solid #eee;
        list-style: none !important;
        /* FIXED: No bullets mobile */
        padding-top: 50px;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
        cursor: pointer;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        margin: 5px;
        transition: 0.3s;
    }

    .header-cta {
        display: none;
    }

    .hero {
        height: auto;
        padding: 120px 0 50px;
        text-align: center;
    }

    /* Increased padding for mobile */
    .hero-btns {
        justify-content: center;
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .image-content {
        order: -1;
    }
}

/* Toggle Animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}