:root {
    --primary-color: #0E4D92;
    --secondary-color: #093465;
    --accent-color: #e6f0fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* Top Bar */
.top-bar {
    background-color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    margin-right: 20px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

.social-links a {
    margin-left: 15px;
    color: var(--text-light);
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

.logo img {
    height: 90px;
    /* Adjust based on actual logo */
}

.main-nav .nav-list {
    display: flex;
}

.main-nav .nav-list li {
    margin-left: 30px;
}

.main-nav .nav-list a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
    color: var(--primary-color);
}

.hamburger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    /* roughly 600px */
    background: url('https://images.unsplash.com/photo-1516574187841-69301905a8d9?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    /* Primary Blue overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.hero h1 span {
    font-weight: 800;
    display: block;
    letter-spacing: 0.03em;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.8;
    opacity: 0.92;
    letter-spacing: 0.01em;
}

.btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    /* display: flex; if we had a video/image side by side */
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.about-text h2 span {
    color: var(--primary-color);
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 30px;
}

.about-text h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #444;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.section-title h2 span {
    color: var(--primary-color);
}

.divider-center {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.read-more:hover {
    text-decoration: underline;
}

/* CTA Strip */
.cta-strip {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.phone-btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: var(--transition);
}

.phone-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.main-footer {
    background-color: #222;
    color: #ccc;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-widget h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-left: 3px solid var(--primary-color);
    padding-left: 10px;
}

.footer-widget p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-phone {
    display: block;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.footer-email {
    display: block;
    color: var(--primary-color);
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.emergency-btn {
    display: inline-block;
    background-color: #cf2e2e;
    /* Red for emergency in footer */
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    margin-top: 10px;
}

.emergency-btn:hover {
    background-color: #a01c1c;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        display: none;
        /* Hide top bar on mobile to save space */
    }

    .main-header {
        position: relative;
    }

    .hamburger-menu {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        /* JS will toggle this */
    }

    .main-nav.active {
        display: block;
    }

    .main-nav .nav-list {
        flex-direction: column;
        padding: 20px 0;
    }

    .main-nav .nav-list li {
        margin: 0;
        text-align: center;
    }

    .main-nav .nav-list a {
        display: block;
        padding: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: #FFF;
}

.my-float {
    margin-top: 16px;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2940;
    color: #e0e8f5;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    min-width: 200px;
    margin: 0;
    color: #c8d8ee;
}

.cookie-banner p a {
    color: #7fb3f5;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner p a:hover {
    color: #fff;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-btn-accept:hover {
    background-color: #0a5fbb;
}

.cookie-btn-decline {
    background-color: transparent;
    color: #8aa5c8;
    border: 1px solid #4a6380;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-decline:hover {
    border-color: #8aa5c8;
    color: #c8d8ee;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 18px;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-btn-accept,
    .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}