:root {
    --primary: #1a252f;
    --accent: #ff6b00;
    --text-light: #f4f4f4;
    --text-dark: #333;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Top Bar --- */
.top-bar {
    background: var(--primary);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    color: var(--accent);
    margin-right: 5px;
}

.top-social a {
    color: white;
    margin-left: 15px;
    transition: var(--transition);
}

.top-social a:hover {
    color: var(--accent);
}

/* --- Main Header --- */
.main-header {
    background: #fff;
    padding: 20px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-text {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -1px;
}

.brand-text span {
    color: var(--accent);
}

.header-action-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 1px solid #eee;
}

.text-content small {
    display: block;
    font-size: 0.75rem;
    color: #777;
}

.btn-quote {
    background: var(--accent);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

/* --- Navigation --- */
.navbar {
    background: #2c3e50;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    display: block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links li a:hover, .nav-links li a.active {
    background: var(--accent);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    background: url('/header3.png') no-repeat center center/cover;
    padding: 120px 0;
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 37, 47, 0.9), rgba(26, 37, 47, 0.4));
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge {
    background: var(--accent);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.accent-text {
    color: var(--accent);
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary { background: var(--accent); color: white; }
.btn-secondary { background: white; color: var(--primary); }

/* --- Emergency Card --- */
.emergency-card {
    background: white;
    color: var(--primary);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-bottom: 5px solid var(--accent);
}

.emergency-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.card-divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

.card-list {
    list-style: none;
}

.card-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Mobile Toggle (Hidden on Desktop) */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
    .top-bar, .header-action-group .contact-box { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
    .mobile-toggle { display: block; }
}