﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #222;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    height: 76px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none !important;
    color: inherit;
}

    .logo:hover {
        text-decoration: none !important;
    }

    .logo img {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        border: 2px solid #e63946;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

.brand-name {
    font-size: 18px;
    font-weight: 600;
    color: black;
    white-space: nowrap;
    text-decoration: none !important;
}


/* MENU */

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

    .nav-links a {
        text-decoration: none;
        color: #394150;
        font-size: 15px;
        font-weight: 600;
        transition: 0.2s;
    }

        .nav-links a:hover,
        .nav-links a.active {
            color: #e63946;
        }


    /* LOGIN */

    .nav-links .login-btn {
        background: #e63946;
        color: white !important;
        padding: 11px 21px;
        border-radius: 8px;
        transition: 0.3s;
    }

        .nav-links .login-btn:hover {
            background: #c92835;
            transform: translateY(-1px);
        }


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    position: relative;
    height: 430px;
    overflow: hidden;
    background-image: linear-gradient( 90deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.28) 100% ), url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
}


/* HERO OVERLAY */

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.12), transparent );
}


/* HERO CONTENT */

.hero-content {
    width: min(1150px, 90%);
    margin: 0 auto;
    color: #fff;
    padding-top: 10px;
}


    /* HERO LABEL */

    .hero-content span {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 4px;
        color: #e63946;
        margin-bottom: 12px;
    }


    /* HERO TITLE */

    .hero-content h1 {
        margin: 0 0 16px;
        font-size: clamp(42px, 5vw, 64px);
        line-height: 1.08;
        font-weight: 800;
        letter-spacing: -1px;
        color: #fff;
    }


    /* HERO DESCRIPTION */

    .hero-content p {
        max-width: 620px;
        margin: 0;
        font-size: 17px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.88);
    }


    /* RED DECORATIVE LINE */

    .hero-content::after {
        content: "";
        display: block;
        width: 65px;
        height: 4px;
        margin-top: 25px;
        background: #e63946;
        border-radius: 10px;
    }


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.section-label {
    color: #e63946;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
}

.contact-info h2 {
    font-size: 36px;
    line-height: 1.25;
    margin: 15px 0 20px;
}

.contact-description {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}


/* =========================================================
   CONTACT ITEM
========================================================= */

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 22px 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: #fff0f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item h3 {
    margin: 0 0 5px;
    font-size: 15px;
}

.contact-item p {
    margin: 0;
    color: #777;
    font-size: 14px;
}


/* =========================================================
   FORM
========================================================= */

.contact-form-box {
    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.form-heading h2 {
    margin: 0 0 8px;
    font-size: 25px;
}

.form-heading p {
    margin: 0 0 28px;
    color: #777;
    font-size: 14px;
}


/* FORM ROW */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


/* FORM GROUP */

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 13px;
        font-weight: 600;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 7px;
        padding: 12px 13px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        outline: none;
        transition: 0.2s;
    }

    .form-group input {
        height: 45px;
    }

    .form-group textarea {
        resize: vertical;
    }


        /* INPUT FOCUS */

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #e63946;
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08);
        }


        /* PLACEHOLDER */

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #aaa;
        }


/* =========================================================
   SEND BUTTON
========================================================= */

.btn-send {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 7px;
    background: #e63946;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-send span {
        margin-left: 8px;
        font-size: 18px;
    }

    .btn-send:hover {
        background: #c92835;
        transform: translateY(-1px);
        box-shadow: 0 6px 15px rgba(230, 57, 70, 0.25);
    }


/* =========================================================
   QUICK CONTACT
========================================================= */

.quick-contact {
    background: #222;
    padding: 45px 20px;
}

.quick-container {
    max-width: 1150px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.quick-content span {
    color: #e63946;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
}

.quick-content h2 {
    color: white;
    font-size: 27px;
    margin: 8px 0;
}

.quick-content p {
    color: #aaa;
    margin: 0;
    font-size: 14px;
}


/* CALL BUTTON */

.call-btn {
    text-decoration: none;
    background: #e63946;
    color: white;
    padding: 14px 25px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    transition: 0.3s;
}

    .call-btn:hover {
        background: #c92835;
        color: white;
        transform: translateY(-1px);
    }


/* =========================================================
   LOCATION
========================================================= */

.location-section {
    padding: 80px 20px;
}


/* LOCATION HEADING */

.location-heading {
    text-align: center;
    max-width: 650px;
    margin: auto;
}

    .location-heading span {
        color: #e63946;
        font-size: 13px;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .location-heading h2 {
        font-size: 32px;
        margin: 12px 0 8px;
    }

    .location-heading p {
        color: #777;
        font-size: 14px;
    }


/* =========================================================
   LOCATION CARD
========================================================= */

.location-box {
    max-width: 1150px;
    height: 280px;
    margin: 35px auto 0;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient( rgba(245, 247, 250, 0.94), rgba(245, 247, 250, 0.94) ), url("https://images.unsplash.com/photo-1524666041070-9c876415b7f5?auto=format&fit=crop&w=1400&q=80");
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* LOCATION CONTENT */

.location-content {
    background: white;
    padding: 28px 55px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.location-icon {
    font-size: 28px;
}

.location-content h3 {
    margin: 10px 0 5px;
    font-size: 20px;
}

.location-content p {
    margin: 0 0 18px;
    color: #777;
    font-size: 14px;
}


/* MAP BUTTON */

.map-btn {
    display: inline-block;
    text-decoration: none;
    background: #222;
    color: white;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    transition: 0.3s;
}

    .map-btn:hover {
        background: #e63946;
        color: white;
    }


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #171717;
    color: white;
}


/* FOOTER CONTENT */

.footer-content {
    max-width: 1150px;
    margin: auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
}


/* FOOTER BRAND */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-brand img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #e63946;
    }

    .footer-brand span {
        font-size: 16px;
        font-weight: 600;
    }


/* FOOTER COLUMN */

.footer-column h4 {
    color: #e63946;
    margin-top: 0;
    margin-bottom: 18px;
}

.footer-column p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin: 12px 0;
    font-size: 14px;
    transition: 0.2s;
}

    .footer-column a:hover {
        color: #e63946;
    }


/* COPYRIGHT */

.copyright {
    border-top: 1px solid #333;
    text-align: center;
    padding: 20px;
    color: #777;
    font-size: 13px;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 900px) {

    .navbar {
        padding: 0 4%;
    }

    .nav-links {
        gap: 15px;
    }

    .contact-hero {
        height: 390px;
        background-position: center;
    }

    .hero-content {
        width: 88%;
    }

        .hero-content h1 {
            font-size: 48px;
        }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quick-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 600px) {

    /* NAVBAR */

    .navbar {
        height: 70px;
        padding: 0 20px;
    }

    .logo img {
        width: 55px;
        height: 55px;
    }

    .brand-name {
        font-size: 16px;
    }

    .nav-links {
        gap: 8px;
    }

        .nav-links a:not(.login-btn) {
            display: none;
        }

        .nav-links .login-btn {
            padding: 9px 15px;
            border-radius: 7px;
            font-size: 13px;
        }


    /* HERO */

    .contact-hero {
        height: 330px;
        background-position: center;
    }

    .hero-content {
        width: calc(100% - 40px);
        padding: 0;
    }

        .hero-content span {
            font-size: 11px;
            letter-spacing: 3px;
            margin-bottom: 10px;
        }

        .hero-content h1 {
            font-size: 38px;
            line-height: 1.1;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
        }

        .hero-content p {
            max-width: 100%;
            font-size: 14px;
            line-height: 1.6;
        }

        .hero-content::after {
            width: 50px;
            height: 3px;
            margin-top: 20px;
        }


    /* CONTACT */

    .contact-section {
        padding: 55px 20px;
    }

    .contact-info h2 {
        font-size: 30px;
    }

    .contact-description {
        font-size: 14px;
    }


    /* FORM */

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-box {
        padding: 25px;
    }


    /* QUICK CONTACT */

    .quick-contact {
        padding: 40px 20px;
    }

    .quick-content h2 {
        font-size: 24px;
    }

    .call-btn {
        padding: 12px 22px;
    }


    /* LOCATION */

    .location-section {
        padding: 55px 20px;
    }

    .location-heading h2 {
        font-size: 28px;
    }

    .location-box {
        height: 300px;
        margin-top: 25px;
    }

    .location-content {
        width: calc(100% - 30px);
        padding: 25px 20px;
    }


    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .copyright {
        padding: 18px 15px;
    }
}
