/* ================================
   Reset & General Styles
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

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


/* ================================
   Navbar
================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 15px 50px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.logo-icon {
    background: url('/LogoSmall.svg') no-repeat center;
    background-size: contain;
    width: 100px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.nav-links a.active {
    color: #6a1b9a;
    border-bottom: 2px solid #6a1b9a;
    padding-bottom: 4px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.btn-text {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
}

.btn-primary {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(
        135deg,
        #6b34bc 25%,
        #cd2783 50%,
        #f56921 100%
    );
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
}


/* ================================
   Hero Banner
================================ */
.hero-banner {
    background:
        linear-gradient(#00000080, #00000080),
        url('/img/Section-heroBanner.png') center/cover no-repeat;

    min-height: 420px;
    color: #fff;

    display: flex;
    align-items: center;

    padding: 60px max(20px, calc((100vw - 1100px) / 2));
}

.hero-content {
    width: 100%;
    max-width: 500px;
}

.breadcrumb {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: clamp(30px, 4vw, 38px);
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}


/* ================================
   Contact Details Section
================================ */
.contact-section {
    background-color: #fdf2f2;
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
    align-items: start;
}

.sub-heading {
    font-size: 11px;
    letter-spacing: 1px;
    color: #777;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.contact-info h2 {
    font-size: clamp(24px, 3vw, 28px);
    line-height: 1.25;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.icon-box {
    width: 35px;
    min-width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 6px;

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

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.phone-icon,
.location-icon {
    display: block;
    width: 15px;
    height: 15px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.phone-icon {
    background-image: url('/IconsSVG/phone.svg');
}

.location-icon {
    background-image: url('/IconsSVG/map-pin.svg');
}

.info-content {
    min-width: 0;
}

.info-content h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

.info-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    user-select: text;
    overflow-wrap: anywhere;
}


/* ================================
   Form Styling
================================ */
.contact-form-card {
    width: 100%;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #444;
}

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

    padding: 10px;

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

    font-size: 13px;
    outline: none;

    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #6b34bc;
}

.btn-submit {
    width: 100%;
    background-color: #222;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
}


/* ================================
   Locations Section
================================ */
.locations-section {
    padding: 60px 0;
    text-align: center;
}

.locations-section h2 {
    font-size: clamp(24px, 3vw, 26px);
    line-height: 1.3;
    margin-bottom: 10px;
}

.section-desc {
    width: 100%;
    max-width: 550px;
    margin: 0 auto 40px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.location-card {
    min-height: 220px;
    height: 220px;
    border-radius: 8px;

    background-size: cover;
    background-position: center;

    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    padding: 15px;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.8)
    );

    color: #fff;
    text-align: left;
}

.card-overlay h3 {
    font-size: 18px;
}

.card-overlay p {
    font-size: 12px;
    opacity: 0.8;
}


/* ================================
   Map Section
================================ */
.map-section {
    min-height: 250px;
    height: auto;

    padding: 40px 20px;

    background:
        linear-gradient(#0008, #0008),
        url('/img/map-preview.jpg') center/cover no-repeat;

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

.map-card {
    width: 100%;
    max-width: 300px;

    background-color: #fff;

    padding: 20px 30px;
    border-radius: 6px;

    text-align: center;

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

.map-icon {
    display: block;
    width: 15px;
    height: 15px;

    background: url('/IconsSVG/map-pin.svg') center/cover no-repeat;

    margin: 5px auto 10px;
}

.map-card p {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-dark {
    background-color: #111;
    color: #fff;
    border: none;

    padding: 8px 16px;
    border-radius: 4px;

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


/* ================================
   Footer
================================ */
.footer {
    background-color: #f36c21;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 12px;
    margin-top: 15px;
    line-height: 1.5;
    max-width: 250px;
    opacity: 0.9;
}

.footer-links h4 {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.9;
}

.footer-links a.bold-link {
    font-weight: bold;
    font-size: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.2);

    padding-top: 20px;

    font-size: 11px;
    opacity: 0.8;
}


/* =========================================================
   TABLETS — 1024px and below
========================================================= */
@media (max-width: 1024px) {

    .navbar {
        padding: 15px 30px;
    }

    .nav-links {
        gap: 15px;
    }

    .hero-banner {
        min-height: 380px;
    }

    .contact-grid {
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 3;
    }
}


/* =========================================================
   TABLETS / SMALL LAPTOPS — 768px and below
========================================================= */
@media (max-width: 768px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* Navbar */
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;

        padding-top: 10px;

        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;

        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-actions {
        margin-left: auto;
    }


    /* Hero */
    .hero-banner {
        min-height: 350px;
        padding: 50px 20px;
    }

    .hero-content {
        max-width: 600px;
    }


    /* Contact */
    .contact-section {
        padding: 50px 0;
    }

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

    .contact-form-card {
        padding: 25px;
    }


    /* Locations */
    .locations-section {
        padding: 50px 0;
    }

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


    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 2;
    }

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


/* =========================================================
   MOBILE — 576px and below
========================================================= */
@media (max-width: 576px) {

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }


    /* Navbar */
    .navbar {
        padding: 12px 16px;
        gap: 10px;
    }

    .logo-icon {
        width: 85px;
        height: 35px;
    }

    .nav-actions {
        gap: 8px;
    }

    .btn-text {
        font-size: 13px;
    }

    .btn-primary {
        padding: 9px 11px;
        font-size: 12px;
    }

    .nav-links {
        gap: 18px;
        padding-top: 8px;
    }

    .nav-links a {
        font-size: 13px;
    }


    /* Hero */
    .hero-banner {
        min-height: 320px;
        padding: 45px 16px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 13px;
    }


    /* Contact */
    .contact-section {
        padding: 45px 0;
    }

    .contact-info h2 {
        margin-bottom: 25px;
    }

    .info-card {
        gap: 12px;
        margin-bottom: 20px;
    }

    .contact-form-card {
        padding: 20px;
    }


    /* Locations */
    .locations-section {
        padding: 45px 0;
    }

    .section-desc {
        margin-bottom: 30px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .location-card {
        height: 210px;
        min-height: 210px;
    }


    /* Map */
    .map-section {
        min-height: 220px;
        padding: 30px 16px;
    }

    .map-card {
        max-width: 280px;
        padding: 18px 20px;
    }


    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        gap: 10px;
        line-height: 1.5;
    }
}


/* =========================================================
   VERY SMALL PHONES — 380px and below
========================================================= */
@media (max-width: 380px) {

    .navbar {
        padding: 10px 12px;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .logo-icon {
        width: 75px;
    }

    .btn-text {
        display: none;
    }

    .btn-primary {
        padding: 8px 10px;
        font-size: 11px;
    }

    .hero-banner {
        min-height: 300px;
        padding: 40px 12px;
    }

    .hero-content h1 {
        font-size: 27px;
    }

    .contact-form-card {
        padding: 16px;
    }

    .location-card {
        height: 190px;
        min-height: 190px;
    }

    .map-card {
        max-width: 250px;
    }
}


/* =========================================================
   LANDSCAPE PHONES
========================================================= */
@media (max-height: 500px) and (orientation: landscape) {

    .hero-banner {
        min-height: 300px;
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .map-section {
        min-height: 220px;
    }
}


/* =========================================================
   ACCESSIBILITY / TOUCH DEVICES
========================================================= */
@media (hover: none) and (pointer: coarse) {

    .nav-links a,
    .btn-primary,
    .btn-text,
    .btn-submit,
    .btn-dark {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }
}
