:root {
    --primary: #082471;
    --primary-light: #1a3c8e;
    --secondary: #f96156;
    --secondary-hover: #e04a3f;
    --accent: #fcb900;
    --text-main: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f8faff;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Sen', sans-serif;
}

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

/* Header & Navbar */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 90px;
    background: var(--white);
    border-bottom: 2px solid #eee;
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-transform: uppercase;
}

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

.nav-links a.nav-faq {
    color: var(--secondary);
}

.nav-links a.nav-faq:hover {
    color: var(--secondary-hover);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

/* Page Hero */
.page-hero {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.8;
}

/* Hero Section (Home) */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(8, 36, 113, 0.8), rgba(8, 36, 113, 0.9)), url('https://images.unsplash.com/photo-1454165833772-d996d4ce5eef?auto=format&fit=crop&q=80&w=2000') center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: left;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.hero h1 em {
    font-style: italic;
    color: var(--secondary);
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 650px;
    margin-bottom: 40px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-footer-phone {
    display: inline-block;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 97, 86, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-footer-phone {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 15px;
    margin-right: 10px;
    animation: slideUp 0.8s ease-out;
    transition: var(--transition);
}

.btn-footer-phone:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-footer-phone:last-child {
    margin-right: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Sections */
section {
    padding: 100px 0;
}

.services-summary {
    background: var(--white);
}

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

.card {
    padding: 40px;
    border-radius: 12px;
    background: var(--bg-light);
    border: 1px solid #eee;
    transition: var(--transition);
}

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

.icon-box i {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 25px;
    display: block;
}

.card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.card p {
    color: var(--text-light);
}

.trust-content {
    max-width: 800px;
}

.trust-content h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* About Content */
.about-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 42px;
    color: var(--primary);
    margin: 20px 0;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h4 {
    font-size: 36px;
    color: var(--secondary);
}

.about-image {
    flex: 1;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&q=80&w=1000') center/cover;
    border-radius: 12px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-list {
    list-style: none;
    margin-top: 30px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 18px;
}

.info-list i {
    color: var(--secondary);
    font-size: 20px;
}

.glass-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.faq-item h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-info p {
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-bottom {
    margin-top: 40px;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    opacity: 0.6;
    text-align: left;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    margin-left: 20px;
}

/* Mobile */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 42px;
    }

    .about-flex,
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }
}