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

:root {
    --primary: #0A1C36;
    --secondary: #D22630;
    --bg-light: #F8F9FA;
    --text-dark: #111827;
    --white: #FFFFFF;
    --gray-light: #E5E7EB;
    --gray-medium: #9CA3AF;
    --gray-dark: #374151;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --border-rugged: 4px solid var(--primary);
    --border-accent: 4px solid var(--secondary);
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.25rem;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--secondary);
    display: inline-block;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--secondary);
}

/* Helper Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-light { color: var(--white); }
.bg-primary { background-color: var(--primary); color: var(--white); }
.bg-dark { background-color: #050E1B; color: var(--white); }
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--white); }

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    border-bottom: 4px solid #B01E24;
}

.btn-primary:hover {
    background-color: #E62B2B;
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--white);
    border-bottom: 4px solid #061122;
}

.btn-secondary:hover {
    background-color: #112d54;
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: var(--shadow);
}

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

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

/* Header & Navigation */
header {
    background-color: var(--white);
    border-bottom: 5px solid var(--secondary);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

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

.header-top a {
    color: var(--white);
}

.header-top a:hover {
    color: var(--secondary);
}

.header-main {
    padding: 15px 0;
}

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

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

nav a:hover, nav a.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

/* Breadcrumbs */
.breadcrumb-container {
    background-color: var(--gray-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-medium);
}

.breadcrumbs {
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumbs a {
    color: var(--gray-dark);
}

.breadcrumbs a:hover {
    color: var(--secondary);
}

.breadcrumbs span {
    color: var(--gray-medium);
    margin: 0 8px;
}

.breadcrumbs .current {
    color: var(--primary);
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 28, 54, 0.85), rgba(10, 28, 54, 0.85)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Crect width='100' height='100' fill='%23111827'/%3E%3Cpath d='M0 0h100v100H0z' fill='%231f2937' fill-opacity='.15'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    border-bottom: 8px solid var(--secondary);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 35px auto;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Section Styling */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--white);
}

.section-title {
    margin-bottom: 50px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 10px auto 0 auto;
}

/* Grids & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    align-items: center;
}

.card {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    border-top: 5px solid var(--primary);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.card.money-card {
    border-top: 5px solid var(--secondary);
    background: linear-gradient(to bottom, #FFF, var(--bg-light));
}

.card.money-card::after {
    content: "POPULAR";
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 3px 8px;
    letter-spacing: 1px;
}

.card h3 {
    color: var(--primary);
}

.card-link {
    display: inline-block;
    margin-top: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
}

.card-link:hover {
    color: var(--primary);
}

/* Feature/Why Choose Us */
.feature-list {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 900;
}

/* Lead Form Section */
.lead-section {
    background-color: var(--primary);
    color: var(--white);
    border-top: 5px solid var(--secondary);
    border-bottom: 5px solid var(--secondary);
}

.lead-section h2 {
    color: var(--white);
    border-bottom-color: var(--secondary);
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.lead-info h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.lead-info p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--gray-light);
}

.lead-phone {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: inline-block;
    margin-top: 10px;
}

.lead-form-container {
    background-color: var(--white);
    padding: 40px;
    border-top: 6px solid var(--secondary);
    box-shadow: var(--shadow-heavy);
}

.lead-form-container h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 0;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(10, 28, 54, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Reviews/Testimonials */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--bg-light);
    border: 1px solid var(--gray-light);
    padding: 30px;
    position: relative;
}

.review-stars {
    color: #FBBF24;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* FAQs */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-left: 5px solid var(--primary);
    padding: 25px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 10px;
    border: none;
    padding: 0;
    text-transform: none;
}

.faq-item.p2-faq {
    border-left: 5px solid var(--secondary);
}

/* Footer Section */
footer {
    background-color: #050E1B;
    color: var(--white);
    padding: 60px 0 20px 0;
    border-top: 6px solid var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p {
    color: var(--gray-light);
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-map-container {
    width: 100%;
    height: 200px;
    border: 3px solid var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--gray-dark);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* Pillar Content Styles */
.pillar-intro {
    padding: 60px 0;
}

.pillar-services-list {
    margin-top: 40px;
}

.service-item-block {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    padding: 40px;
    margin-bottom: 40px;
    border-left: 6px solid var(--primary);
}

.service-item-block.p2-service {
    border-left-color: var(--secondary);
}

.service-item-block h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

/* Service Detail Page Styles */
.service-intro {
    padding: 60px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.step-card {
    background-color: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card h4 {
    margin-bottom: 10px;
}

/* Success Banner */
.success-banner {
    background-color: #10B981;
    color: var(--white);
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    .lead-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-main .container {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .hero {
        padding: 80px 0;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    section {
        padding: 50px 0;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
}
