/* Colors & Variables */
:root {
    --primary: #d32f2f; /* Urgent Red */
    --primary-hover: #b71c1c;
    --secondary: #0a192f; /* Deep Navy Blue */
    --secondary-light: #112240;
    --accent: #ff9800; /* Warning Orange */
    --text-dark: #233554;
    --text-light: #8892b0;
    --bg-white: #ffffff;
    --bg-gray: #f8f9fa;
    --border: #e6e8eb;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(10, 25, 47, 0.15);
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
}

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

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

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(211, 47, 47, 0.3);
}

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

.btn-secondary:hover {
    background-color: #f57c00;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--secondary);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-contact a {
    color: white;
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 2.2rem;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary);
    text-transform: uppercase;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--secondary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--secondary);
    position: relative;
    padding: 100px 0 160px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.8) 50%, rgba(10, 25, 47, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    color: white;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Offer Card */
.offer-card {
    background-color: white;
    border-radius: var(--radius);
    width: 380px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--accent);
}

.offer-header {
    background-color: var(--accent);
    color: white;
    padding: 24px;
    text-align: center;
}

.offer-header h3 {
    color: white;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.offer-body {
    padding: 32px;
}

.offer-body h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.offer-body p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.offer-details {
    list-style: none;
    margin-bottom: 32px;
}

.offer-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-gray);
}

.section-header {
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid transparent;
    transition: var(--transition);
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 24px;
    height: 60px;
    display: flex;
    align-items: center;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.highlight-service {
    background-color: var(--secondary);
    color: white;
}

.highlight-service h3 {
    color: white;
}

.highlight-service .service-icon {
    color: var(--primary);
}

.highlight-service p {
    color: #cbd5e1;
}

/* Areas */
.areas {
    padding: 100px 0;
}

.areas-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.areas-image-box {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

.areas-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.areas-content {
    flex: 1;
}

.areas-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.areas-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.area-list h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.area-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.area-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

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

.areas-cta {
    width: 400px;
}

.cta-box {
    background-color: var(--bg-gray);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}

.cta-box i.fa-toolbox {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.cta-box h3 {
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.btn-outline.btn-block {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline.btn-block:hover {
    background-color: var(--secondary);
    color: white;
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: white;
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: white;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #8892b0;
    max-width: 300px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8892b0;
    margin-bottom: 12px;
}

.footer-links i {
    color: var(--accent);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #8892b0;
    font-size: 0.9rem;
}

/* Animations */
.animate-up {
    animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.95) 100%);
    }
    
    .offer-card {
        margin-top: 40px;
    }
    
    .areas-container {
        flex-direction: column;
    }
    
    .areas-image-box {
        width: 100%;
        max-height: 300px;
    }
    
    .areas-cta {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .top-info {
        display: none;
    }
    
    .top-bar-inner {
        justify-content: center;
    }
    
    .main-nav, .header-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero {
        padding: 60px 0 100px;
    }
    
    .offer-card {
        width: 100%;
    }
    
    .area-list ul {
        grid-template-columns: 1fr;
    }
}
