/* =====================================================
   GLOBAL
===================================================== */

body {
    font-family: 'Merriweather', serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   HEADER
===================================================== */

.top-header {
    background: #0b2344;
}

.logo-img {
    height: 58px;
    width: auto;
}

.company-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
}

.contact-info {
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.contact-info a:hover {
    color: #d4af37;
}

.header-divider {
    height: 2px;
    background: #d4af37;
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 650px;
    height: 85vh;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 1200px;
    text-shadow: 0 3px 12px rgba(0,0,0,.5);
}

.hero-content p {
    color: #fff;
    font-size: clamp(1rem, 1.5vw, 1.7rem);
    max-width: 1000px;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section {
    background: #ffffff;
    padding: 100px 0;
    border-bottom: 15px solid #f3eee5;
}

.about-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #0b2344;
}

.about-text {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.35rem;
    line-height: 1.8;
    color: #222;
    font-weight: 400;
}

/* =====================================================
   SERVICES SECTION
===================================================== */

.services-section {
    background: #f4efe4;
    padding: 80px 0;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.section-heading span {
    width: 280px;
    height: 2px;
    background: #c8a43a;
}

.section-heading h2 {
    margin: 0;
    color: #0b2344;
    font-size: 3rem;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 6px;
    min-height: 380px;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.65rem;
    color: #0b2344;
    margin-bottom: 15px;
    font-weight: 400;
}

.service-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #0b2344;
    padding: 30px 0 25px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
}

.footer-tagline {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    margin-bottom: 18px;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    font-size: 1.75rem;
    transition: .3s ease;
}

.footer-social a:hover {
    color: #d4af37;
}

.footer-copyright {
    color: #fff;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .navbar-collapse {
        padding-bottom: 20px;
    }

    .company-title {
        font-size: 2.3rem;
        margin: 15px 0;
    }

    .contact-info {
        margin-top: 15px;
    }

    .hero-section {
        height: 75vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-text {
        font-size: 1.15rem;
        max-width: 90%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading span {
        width: 150px;
    }

    .site-footer {
        padding: 25px 0;
    }

    .footer-logo img {
        max-width: 150px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .logo-img {
        height: 45px;
    }

    .company-title {
        font-size: 1.9rem;
    }

    .contact-info {
        font-size: 14px;
    }

    .hero-section {
        height: 70vh;
        min-height: 450px;
    }

    .hero-content {
        padding: 0 25px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 100%;
        padding: 0 15px;
    }

    .section-heading {
        gap: 15px;
        margin-bottom: 35px;
    }

    .section-heading span {
        width: 60px;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        min-height: auto;
        padding: 25px 20px;
    }

    .service-card img {
        width: 70px;
        height: 70px;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: .95rem;
        line-height: 1.7;
    }

    .site-footer {
        padding: 25px 15px;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-tagline {
        font-size: .95rem;
        line-height: 1.7;
    }

    .footer-social a {
        font-size: 1.6rem;
    }

    .footer-copyright {
        font-size: .85rem;
        line-height: 1.8;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 480px) {

    .hero-section {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: .95rem;
    }

    .section-heading span {
        width: 40px;
    }

    .company-title {
        font-size: 1.6rem;
    }
}