/* =====================================
   ROOT COLORS
===================================== */

:root {
    --primary-blue: #0b203f;
    --primary-gold: #b38b59;
    --cream: #f4f3ef;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --light-gray: #f7f7f7;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-container img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

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

.brand-name {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-service {
    margin-top: 4px;
    color: #d01818;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* Mobile */

@media (max-width: 768px) {
    .logo-container img {
        width: 52px;
        height: 52px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-service {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* =====================================
   BASIC RESET
===================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
}

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


/* =====================================
   HEADER
===================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav {
    width: 90%;
    max-width: 1200px;
    height: 90px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================
   LOGO
===================================== */

.logo-container img {
    width: auto;
    max-height: 70px;
}


/* =====================================
   NAVIGATION
===================================== */

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

    list-style: none;
}

.nav-links a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

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


/* =====================================
   MOBILE MENU BUTTON
===================================== */

.menu-button {
    display: none;

    background: none;
    border: none;

    color: var(--primary-blue);

    font-size: 30px;
    cursor: pointer;
}


/* =====================================
   HERO VIDEO SECTION
===================================== */

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    padding: 130px 7% 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    text-align: center;
    color: var(--white);
}


/* =====================================
   HERO BACKGROUND VIDEO
===================================== */

.video-background {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -3;
}


/* =====================================
   VIDEO OVERLAY
===================================== */

.video-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(5, 20, 40, 0.93),
        rgba(5, 20, 40, 0.73),
        rgba(5, 20, 40, 0.55)
    );

    z-index: -2;
}


/* =====================================
   HERO CONTENT
===================================== */

.hero-content {
    position: relative;

    width: 100%;
    max-width: 950px;

    z-index: 1;
}

.welcome-text {
    margin-bottom: 15px;

    color: #d6b26c;

    font-size: 16px;
    font-weight: bold;

    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 15px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(45px, 7vw, 90px);

    line-height: 1;

    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    margin-bottom: 15px;

    color: #d6b26c;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(24px, 4vw, 42px);

    font-weight: normal;
}

.hero h3 {
    margin-bottom: 25px;

    color: #eeeeee;

    font-size: clamp(17px, 2vw, 23px);

    font-weight: 400;
}

.hero-description {
    max-width: 800px;

    margin: 0 auto 25px;

    color: #eeeeee;

    font-size: 18px;
    line-height: 1.8;
}

.trust-badges {
    margin-bottom: 35px;

    color: #d6b26c;

    font-size: 16px;
    font-weight: bold;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =====================================
   BUTTONS
===================================== */

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 18px;
}

.btn {
    display: inline-block;

    padding: 14px 32px;

    background: var(--primary-gold);

    border: 2px solid var(--primary-gold);
    border-radius: 4px;

    color: var(--white);

    text-decoration: none;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.btn:hover {
    background: #997344;
    border-color: #997344;

    transform: translateY(-3px);
}

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

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

    border-color: var(--white);

    color: var(--primary-blue);
}


/* =====================================
   GENERAL SECTIONS
===================================== */

section:not(.hero) {
    padding: 90px 7%;
}

.section-container {
    width: 100%;
    max-width: 1200px;

    margin: auto;
}

.section-title {
    color: var(--primary-blue);

    text-align: center;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(30px, 4vw, 45px);

    text-transform: uppercase;
}

.section-title::after {
    content: "";

    display: block;

    width: 80px;
    height: 3px;

    margin: 15px auto 20px;

    background: var(--primary-gold);
}

.section-subtitle {
    max-width: 700px;

    margin: 0 auto 50px;

    color: var(--text-light);

    text-align: center;

    font-size: 18px;
}


/* =====================================
   ABOUT SECTION
===================================== */

.about {
    background: var(--cream);
}

.text-content {
    max-width: 850px;

    margin: auto;

    text-align: center;

    color: #555555;

    font-size: 18px;
    line-height: 1.9;
}

.text-content p {
    margin-bottom: 20px;
}


/* =====================================
   WHY CHOOSE US
===================================== */

.why-us {
    background: var(--primary-blue);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .text-content {
    color: #dddddd;
}

.highlight-text {
    color: #d6b26c;

    font-size: 25px;
    font-weight: bold;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.features {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-top: 50px;
}

.feature-box {
    padding: 30px 20px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 8px;

    text-align: center;

    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);

    background: rgba(255, 255, 255, 0.05);
}

.feature-box h3 {
    margin-bottom: 10px;

    color: #d6b26c;
}

.feature-box p {
    color: #dddddd;
}


/* =====================================
   SERVICES
===================================== */

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

.grid-container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.card {
    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: var(--white);

    border-radius: 8px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 230px;

    object-fit: cover;

    border-bottom: 4px solid var(--primary-gold);
}

.card-content {
    flex: 1;

    padding: 25px;

    text-align: center;
}

.card-content h3 {
    margin-bottom: 12px;

    color: var(--primary-blue);

    font-size: 20px;

    text-transform: uppercase;
}

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


/* =====================================
   REVIEWS
===================================== */

.reviews {
    background: var(--cream);
}

.reviews-container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.review-card {
    padding: 30px;

    background: var(--white);

    border-left: 4px solid var(--primary-gold);
    border-radius: 7px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.reviewer-name {
    color: var(--primary-blue);

    font-size: 18px;
    font-weight: bold;
}

.stars {
    margin: 7px 0 12px;

    color: #ffc107;

    font-size: 20px;
}

.review-card p {
    color: #666666;
}


/* =====================================
   CONTACT
===================================== */

.contact {
    background: var(--white);
}

.contact-layout {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    margin-top: 40px;
}

.contact-info {
    font-size: 17px;
}

.contact-info h3 {
    margin-bottom: 20px;

    color: var(--primary-blue);

    font-size: 28px;
}

.contact-info p {
    margin-bottom: 17px;
}

.contact-info strong {
    color: var(--primary-blue);
}


/* =====================================
   CONTACT FORM
===================================== */

.contact-form {
    padding: 35px;

    background: var(--cream);

    border-radius: 8px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--primary-blue);

    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px;

    background: var(--white);

    border: 1px solid #cccccc;
    border-radius: 4px;

    font-family: inherit;
    font-size: 16px;

    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
}

.form-group textarea {
    min-height: 130px;

    resize: vertical;
}

.submit-btn {
    width: 100%;
}


/* =====================================
   FOOTER
===================================== */

footer {
    padding: 50px 7% 25px;

    background: var(--primary-blue);

    color: var(--white);
}

.footer-content {
    width: 100%;
    max-width: 1200px;

    margin: auto;
    padding-bottom: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo img {
    max-height: 70px;

    width: auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;

    gap: 20px;

    list-style: none;
}

.footer-links a {
    color: #dddddd;

    text-decoration: none;
}

.footer-links a:hover {
    color: #d6b26c;
}

.footer-bottom {
    padding-top: 25px;

    text-align: center;

    color: #aaaaaa;

    font-size: 14px;
}


/* =====================================
   FLOATING CALL & WHATSAPP BUTTONS
===================================== */

.wa-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.wa-tooltip {
    background: #fff;
    border-radius: 12px 12px 0 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    font-size: 13px;
    font-weight: 600;
    color: #111;
    max-width: 200px;
    line-height: 1.5;
    display: none;
    border: 1px solid #e0e0e0;
}
.wa-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    transition: all .3s;
    position: relative;
    text-decoration: none;
}
.wa-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: waPulse 2s ease-in-out infinite;
}



/* =====================================
   TABLET RESPONSIVE
===================================== */

@media (max-width: 900px) {

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

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

    .reviews-container {
        grid-template-columns: 1fr;
    }

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

}


/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 768px) {

    nav {
        height: 75px;
    }

    .logo-container img {
        max-height: 55px;
    }

    .menu-button {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        padding: 25px;

        display: none;
        flex-direction: column;

        gap: 20px;

        background: var(--white);

        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

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

    .hero {
        padding: 120px 6% 60px;
    }

    .hero-description {
        font-size: 16px;
    }

    .trust-badges {
        font-size: 13px;
        line-height: 2;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

    .footer-content {
        flex-direction: column;

        text-align: center;
    }

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

}


/* =====================================
   SMALL MOBILE RESPONSIVE
===================================== */

@media (max-width: 450px) {

    section:not(.hero) {
        padding: 70px 5%;
    }

    .contact-form {
        padding: 22px;
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .floating-button {
        width: 50px;
        height: 50px;
    }

}
