/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    --bg-main: #FFFFFF;
    --bg-light: #F8FAFC;
    --primary: #1E3A8A; /* Deep Royal Blue */
    --primary-hover: #1E40AF;
    --accent: #E11D48; /* Emergency Red */
    --accent-hover: #BE123C;
    --warning: #F59E0B; /* Orange/Yellow */
    --text-main: #0F172A;
    --text-muted: #475569;
    --border: #E2E8F0;
    
    --font-main: 'Roboto', sans-serif;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }
.mt-5 { margin-top: 4rem; }
.bg-light { background-color: var(--bg-light); }
.w-100 { width: 100%; }

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.btn-solid {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    text-align: center;
}

.btn-solid:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary);
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-outline-dark {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: transparent;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--text-main);
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background: var(--text-main);
    color: #fff;
}

.btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

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

.btn-emergency-large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-emergency-large:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

/* ==========================================================================
   Top Bar & Navigation
   ========================================================================== */
.top-bar {
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 0;
}

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

.top-info span {
    margin-right: 1.5rem;
}

.top-info i {
    color: var(--warning);
    margin-right: 0.4rem;
}

.top-socials {
    display: flex;
    gap: 1rem;
}

.top-socials a {
    color: #fff;
    opacity: 0.8;
}

.top-socials a:hover {
    opacity: 1;
    color: var(--warning);
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--bg-main);
    padding: 1.2rem 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 6rem 0;
    background: var(--bg-light);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.stat-item h4 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--accent);
}

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

.floating-badge strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
}

.floating-badge span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: 7rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
    position: relative;
}

.icon-box {
    position: absolute;
    top: -25px;
    right: 20px;
    width: 50px; height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.service-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Emergency Banner
   ========================================================================== */
.emergency-banner {
    padding: 5rem 0;
    background: var(--primary);
    color: #fff;
}

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

.e-text h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.e-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: 7rem 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-list i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.feature-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.feature-list span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Contact / Booking Section
   ========================================================================== */
.contact {
    padding: 7rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    width: 40px; height: 40px;
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.info-item span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form-box {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-main);
    background: var(--bg-light);
    transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: var(--text-main);
    color: #fff;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: #94A3B8;
    max-width: 300px;
}

.footer-links h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links ul li a {
    color: #94A3B8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--warning);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94A3B8;
    font-size: 0.85rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1; visibility: visible;
}

@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .hero-container, .about-container, .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .e-container { flex-direction: column; text-align: center; gap: 2rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .menu-toggle { display: block; }
    .desktop-btn { display: none; }
    
    .nav-links {
        position: fixed;
        top: 0; right: -280px;
        width: 280px; height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 2rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: 0.4s ease-in-out;
        z-index: 1001;
    }
    
    .nav-links.active { right: 0; }
    
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-wrap: wrap; justify-content: center; }
    .floating-badge { bottom: 10px; left: 10px; right: 10px; }
    
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-box { padding: 2rem 1.5rem; }
    .footer-content { grid-template-columns: 1fr; gap: 3rem; }
}
