:root {
    --primary-color: #002d5b;
    --secondary-color: #004a99;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-grey: #666666;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e1e1e1;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

.top-bar span i {
    margin-right: 8px;
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 1.2rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.accent {
    color: var(--secondary-color);
    font-weight: 400;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    background-color: var(--light-bg);
    padding: 100px 0;
}

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

.badge {
    background-color: rgba(0, 74, 153, 0.1);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-grey);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat span {
    font-size: 0.9rem;
    color: var(--text-grey);
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 20px 20px 0 var(--secondary-color);
}

/* Services */
.services-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.header-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 0 auto 1.5rem;
}

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

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--secondary-color);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.card-list {
    list-style: none;
    margin: 1.5rem 0;
    color: var(--text-grey);
    font-size: 0.9rem;
}

.card-list li {
    margin-bottom: 0.5rem;
}

.starting-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Sales Section */
.sales-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.sales-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.sales-image img {
    width: 100%;
    border-radius: 12px;
}

.sales-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.sales-features {
    margin: 2rem 0 3rem;
}

.f-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.f-item i {
    color: var(--accent-color);
}

/* Trust Bar */
.trust-bar {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.trust-item h4 {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #f1f1f1;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--text-grey);
    margin: 1.5rem 0 2rem;
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.socials a {
    background: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    margin-top: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-grey);
    transition: var(--transition);
}

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

.footer-contact h4 {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-grey);
}

.footer-contact i {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-grey);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-grid, .sales-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .navbar .nav-links { display: none; }
    .hero-image { order: -1; }
}
