@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap');

:root {
    --primary: #FF6B35; /* Action Orange */
    --primary-dark: #E85A2A;
    --secondary: #0A192F; /* Midnight Navy */
    --accent: #64FFDA; /* Teal tint for contrast */
    --bg-dark: #0A192F;
    --bg-light: #112240;
    --text-main: #E6F1FF;
    --text-dim: #8892B0;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.grid {
    display: grid;
    gap: 30px;
}

.flex {
    display: flex;
    align-items: center;
}

/* Sticky Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

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

.btn-outline:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), url('../assets/images/hero-home.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

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

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

/* Floating CTA / Sticky Mobile Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-call {
    background: #25D366; /* Green for call/whatsapp vibes */
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Emergency Banner */
.emergency-banner {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Outfit';
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-weight: 600;
}

.badge i {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Grids & Cards */
.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
     background: var(--bg-light);
     padding: 40px;
     border-radius: 8px;
     border: 1px solid var(--border);
     transition: var(--transition);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1001;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: var(--bg-dark);
        padding: 80px 40px;
        gap: 30px;
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
        border-left: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        font-size: 1.5rem;
    }

    .header-cta {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    /* Fix image/text grid alignment on mobile */
    .grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .section {
        padding: 60px 0;
    }

    /* Reverse order for specific grids if needed */
    .mobile-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}
