/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red: #8B0000;
    --red-dark: #6B0000;
    --yellow: #FFD700;
    --yellow-dark: #DAA520;
    --dark: #111;
    --grey-dark: #1f1f1f;
    --grey: #333;
    --grey-light: #666;
    --grey-lighter: #999;
    --white: #fff;
    --off-white: #f7f7f7;
    --border: #ddd;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    font-size: 16px;
}

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

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--dark);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--grey-lighter);
    margin-top: 2px;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--grey-lighter);
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--yellow);
    color: var(--dark) !important;
    padding: 10px 20px;
    font-weight: 700;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--yellow-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--yellow);
    color: var(--dark);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--yellow-dark);
}

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

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

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

.btn-dark:hover {
    background: var(--grey);
}

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

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?w=1920&q=80') center/cover;
    padding: 100px 20px 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 650px;
}

.hero-subtitle {
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--red);
    padding: 30px 20px;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.trust-item {
    text-align: center;
    color: var(--white);
}

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
}

.trust-label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

/* === SECTION HEADER === */
.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.hero-subtitle {
    color: var(--yellow) !important;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
}

/* === SERVICES === */
.services {
    padding: 80px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-image {
    height: 180px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1rem;
    padding: 16px 16px 6px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--grey-light);
    padding: 0 16px 16px;
    line-height: 1.5;
}

/* === SERVICES LIST === */
.services-list {
    background: var(--off-white);
    padding: 30px;
}

.services-list-header h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.services-list-grid ul {
    list-style: none;
}

.services-list-grid li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--grey);
    padding-left: 16px;
    position: relative;
}

.services-list-grid li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
    font-size: 0.8rem;
}

/* === ABOUT === */
.about {
    padding: 80px 20px;
    background: var(--off-white);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.about-img-small {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content > p {
    color: var(--grey-light);
    margin-bottom: 14px;
    font-size: 1rem;
}

.about-features {
    margin-top: 28px;
}

.about-feature {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    color: var(--white);
    width: 20px;
    height: 20px;
}

.about-feature strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--grey-light);
    margin: 0;
}

/* === CTA SECTION === */
.cta-section {
    padding: 60px 20px;
    background: var(--dark);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.cta-content p {
    color: var(--grey-lighter);
    margin-bottom: 28px;
    font-size: 1rem;
}

/* === CONTACT === */
.contact {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--dark);
    width: 20px;
    height: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--grey-lighter);
}

.contact-item p,
.contact-item a {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--yellow-dark);
}

.contact-map {
    min-height: 350px;
    background: var(--off-white);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

/* === FOOTER === */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .logo-sub {
    color: var(--grey-lighter);
}

.footer-brand > p {
    margin-top: 10px;
    color: var(--grey-lighter);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--grey-lighter);
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-contact {
    text-align: right;
}

.footer-contact a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 6px;
}

.footer-contact p {
    color: var(--grey-lighter);
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid var(--grey);
    padding-top: 20px;
    text-align: center;
    color: var(--grey-light);
    font-size: 0.8rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        order: -1;
    }

    .about-img-small {
        bottom: -15px;
        right: 15px;
        width: 140px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .trust-items {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-top: 1px solid var(--grey);
    }

    .nav-links.active {
        display: flex;
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .trust-items {
        flex-direction: column;
        gap: 20px;
    }

    .trust-divider {
        width: 50px;
        height: 1px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .about-content h2,
    .contact-info h2 {
        font-size: 1.5rem;
    }

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

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

    .footer-links {
        justify-content: center;
    }
}
