* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #222222;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* ========================================
   TOP CONTACT BAR
======================================== */

.top-contact-bar {
    width: 100%;
    background-color: #d56532;
    color: #ffffff;
    font-size: 12px;
}

.top-contact-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-phones,
.contact-email {
    display: flex;
    align-items: center;
}

.contact-phones a,
.contact-email a {
    color: #ffffff;
    font-weight: 500;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.contact-phones a:hover,
.contact-email a:hover {
    opacity: 0.8;
}

.contact-divider {
    margin: 0 10px;
    opacity: 0.6;
}


/* ========================================
   MAIN NAVBAR
======================================== */

.main-navbar {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 1000;
}

.navbar-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-logo img {
    width: 115px;
    height: auto;
    display: block;
}


/* ========================================
   NAVIGATION MENU
======================================== */

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 38px;
    list-style: none;
}

.navbar-menu li {
    display: flex;
    align-items: center;
}

.navbar-menu a {
    position: relative;
    color: #26396f;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    transition: color 0.25s ease;
}

.navbar-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #d56532;
    transition: width 0.25s ease;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: #d56532;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}


/* ========================================
   MOBILE MENU BUTTON
======================================== */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #26396f;
    border-radius: 2px;
    transition: all 0.3s ease;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    .container {
        width: 92%;
    }

    .navbar-inner {
        min-height: 76px;
    }

    .navbar-logo img {
        width: 140px;
    }

    .navbar-menu {
        gap: 25px;
    }

    .navbar-menu a {
        font-size: 13px;
    }

    .contact-phones,
    .contact-email {
        font-size: 11px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .container {
        width: 90%;
    }


    /* ---------- Top Contact Bar ---------- */

    .top-contact-inner {
        min-height: 34px;
        justify-content: center;
    }

    .contact-phones {
        display: none;
    }

    .contact-email {
        justify-content: center;
        width: 100%;
    }

    .contact-email a {
        font-size: 10px;
    }


    /* ---------- Main Navbar ---------- */

    .navbar-inner {
        min-height: 68px;
    }

    .navbar-logo img {
        width: 125px;
    }


    /* ---------- Mobile Menu ---------- */

    .menu-toggle {
        display: flex;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 10px 5%;
        background-color: #ffffff;
        border-bottom: 1px solid #eeeeee;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .navbar-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-menu li {
        width: 100%;
    }

    .navbar-menu a {
        display: block;
        width: 100%;
        padding: 14px 5px;
        font-size: 13px;
        border-bottom: 1px solid #f1f1f1;
    }

    .navbar-menu li:last-child a {
        border-bottom: none;
    }

    .navbar-menu a::after {
        display: none;
    }


    /* ---------- Hamburger Animation ---------- */

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 380px) {

    .navbar-logo img {
        width: 115px;
    }

    .contact-email a {
        font-size: 9px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .menu-toggle span {
        width: 23px;
    }
}



/* ========================================
   Hero Section
======================================== */

.hero-section {
    width: 100%;
    background-color: #ffffff;
    padding: 28px 0 32px;
}

.hero-container {
    width: min(1200px, 92%);
}

.hero-video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 680px;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
}


/* ========================================
   Hero Responsive
======================================== */

@media (max-width: 1024px) {

    .hero-section {
        padding: 24px 0 28px;
    }

    .hero-container {
        width: 92%;
    }

    .hero-video {
        border-radius: 10px;
        max-height: none;
    }
}


@media (max-width: 767px) {

    .hero-section {
        padding: 18px 0 22px;
    }

    .hero-container {
        width: 90%;
    }

    .hero-video {
        width: 100%;
        border-radius: 9px;
    }
}


 /* ========================================
    About Section
 ======================================== */

.about-section {
    width: 100%;
    padding: 40px 0;
    background-color: #f8f8f6;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}


/* ---------- About Content ---------- */

.about-content {
    max-width: 570px;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #d56532;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.about-content h2 {
    margin-bottom: 22px;
    color: #26396f;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;
}

.about-content p {
    margin-bottom: 16px;
    color: #606060;
    font-size: 15px;
    line-height: 1.8;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 13px 21px;
    background-color: #26396f;
    color: #ffffff;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.about-btn span {
    font-size: 18px;
    line-height: 0;
    transition: transform 0.25s ease;
}

.about-btn:hover {
    background-color: #d56532;
}

.about-btn:hover span {
    transform: translateX(4px);
}


/* ---------- About Visual ---------- */

.about-visual {
    position: relative;
    padding: 10px 10px 35px 35px;
}

.about-image-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 14px;
    background-color: #eeeeee;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* ---------- Floating Badge ---------- */

.about-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 155px;
    padding: 18px 20px;
    background-color: #d56532;
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-badge strong {
    display: block;
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 1.2;
}

.about-badge span {
    display: block;
    font-size: 10px;
    line-height: 1.4;
    opacity: 0.95;
}


/* ========================================
   About Responsive - Tablet
 ======================================== */

@media (max-width: 1024px) {

    .about-section {
        padding: 70px 0;
    }

    .about-container {
        gap: 45px;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-image-wrapper {
        height: 380px;
    }
}


/* ========================================
   About Responsive - Mobile
 ======================================== */

@media (max-width: 767px) {

    .about-section {
        padding: 60px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-visual {
        padding: 5px 5px 30px 20px;
    }

    .about-image-wrapper {
        height: 330px;
        border-radius: 10px;
    }

    .about-badge {
        width: 140px;
        padding: 15px 17px;
    }

    .about-badge strong {
        font-size: 18px;
    }
}


/* ========================================
   About Responsive - Small Mobile
 ======================================== */

@media (max-width: 380px) {

    .about-section {
        padding: 50px 0;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-image-wrapper {
        height: 280px;
    }
}


/* ========================================
   PRODUCT CATEGORIES
======================================== */

.categories-section {
    width: 100%;
    padding: 40px 0;
    background-color: #ffffff;
}


/* ---------- Section Heading ---------- */

.categories-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}

.categories-heading h2 {
    margin: 0;
    color: #26396f;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.2px;
}

.categories-heading p {
    max-width: 390px;
    margin-bottom: 4px;
    color: #6b6b6b;
    font-size: 14px;
    line-height: 1.8;
}


/* ---------- Categories Grid ---------- */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 18px;
}


/* ---------- Category Card ---------- */

.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 250px;
    border-radius: 10px;
    background-color: #26396f;
    isolation: isolate;
}

.category-card-large {
    grid-column: span 2;
}

.category-card-wide {
    grid-column: span 2;
}


/* ---------- Category Image ---------- */

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.category-card:hover img {
    transform: scale(1.07);
}


/* ---------- Image Overlay ---------- */

.category-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to top,
            rgba(20, 29, 58, 0.90) 0%,
            rgba(20, 29, 58, 0.35) 48%,
            rgba(20, 29, 58, 0.04) 100%
        );
}


/* ---------- Category Content ---------- */

.category-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 2;
    color: #ffffff;
}

.category-number {
    display: block;
    margin-bottom: 7px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: 0.7;
}

.category-content h3 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.15;
    font-weight: 600;
}

.category-link {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.4px;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}


/* ---------- Orange Accent ---------- */

.category-card::after {
    content: "";
    position: absolute;
    left: 24px;
    bottom: 18px;
    width: 28px;
    height: 2px;
    z-index: 3;
    background-color: #d56532;
    transition: width 0.35s ease;
}

.category-card:hover::after {
    width: 55px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    .categories-section {
        padding: 80px 0;
    }

    .categories-heading {
        margin-bottom: 40px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 230px;
        gap: 15px;
    }

    .category-card {
        min-height: 230px;
    }

    .category-card-large {
        grid-column: span 2;
    }

    .category-card-wide {
        grid-column: span 2;
    }

    .category-content h3 {
        font-size: 20px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .categories-section {
        padding: 65px 0;
    }

    .categories-heading {
        display: block;
        margin-bottom: 32px;
    }

    .categories-heading h2 {
        font-size: 32px;
        letter-spacing: -0.6px;
    }

    .categories-heading p {
        max-width: 100%;
        margin-top: 18px;
        font-size: 13px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 210px;
        gap: 12px;
    }

    .category-card {
        min-height: 210px;
        border-radius: 8px;
    }

    .category-card-large,
    .category-card-wide {
        grid-column: span 2;
    }

    .category-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .category-content h3 {
        font-size: 18px;
    }

    .category-number {
        font-size: 9px;
    }

    .category-link {
        opacity: 1;
        transform: none;
        font-size: 9px;
    }

    .category-card::after {
        left: 18px;
        bottom: 15px;
        width: 24px;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 380px) {

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card,
    .category-card-large,
    .category-card-wide {
        grid-column: span 1;
        min-height: 220px;
    }
}


/* ========================================
   HOME DELIVERY PROMOTION
======================================== */

.delivery-promo {
    position: relative;
    width: 100%;
    min-height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("../images/delivery-banner.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;

    overflow: hidden;
}


/* ---------- Dark Overlay ---------- */

.delivery-promo-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(20, 29, 58, 0.68);
}


/* ---------- Content ---------- */

.delivery-promo-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.delivery-promo-content p {
    margin: 0;
    color: #ffffff;
    font-size: clamp(22px, 3vw, 38px);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    .delivery-promo {
        min-height: 170px;
    }

    .delivery-promo-content p {
        font-size: 28px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .delivery-promo {
        min-height: 155px;

        /* Fixed backgrounds can perform poorly on mobile */
        background-attachment: scroll;
    }

    .delivery-promo-content {
        width: 90%;
    }

    .delivery-promo-content p {
        font-size: 22px;
        line-height: 1.35;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 380px) {

    .delivery-promo {
        min-height: 145px;
    }

    .delivery-promo-content p {
        font-size: 19px;
    }
}




/* ========================================
   WHY CHOOSE US
======================================== */

.why-choose-section {
    width: 100%;
    padding: 40px 0;
    background-color: #f8f8f6;
}

.why-choose-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
}


/* ---------- Intro ---------- */

.why-choose-intro {
    max-width: 430px;
}

.why-choose-intro h2 {
    margin: 0 0 22px;
    color: #26396f;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1px;
}

.why-choose-intro p {
    max-width: 390px;
    color: #666666;
    font-size: 14px;
    line-height: 1.8;
}

.why-choose-line {
    width: 55px;
    height: 3px;
    margin-top: 28px;
    background-color: #d56532;
}


/* ---------- Feature Grid ---------- */

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}


/* ---------- Feature Card ---------- */

.why-card {
    position: relative;
    min-height: 255px;
    padding: 28px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: #e3e3e3;
    box-shadow: 0 15px 35px rgba(38, 57, 111, 0.08);
}


/* ---------- Card Top ---------- */

.why-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.why-number {
    color: #c7c7c7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* ---------- Icon ---------- */

.why-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8eee9;
}

.why-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: #d56532;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ---------- Card Content ---------- */

.why-card h3 {
    margin: 0 0 10px;
    color: #26396f;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 650;
}

.why-card p {
    margin: 0;
    color: #737373;
    font-size: 12px;
    line-height: 1.75;
}


/* ---------- Highlight Card ---------- */

.why-card-highlight {
    background-color: #26396f;
    border-color: #26396f;
}

.why-card-highlight .why-number {
    color: rgba(255, 255, 255, 0.35);
}

.why-card-highlight .why-icon {
    background-color: rgba(213, 101, 50, 0.16);
}

.why-card-highlight h3 {
    color: #ffffff;
}

.why-card-highlight p {
    color: rgba(255, 255, 255, 0.7);
}


/* ---------- Decorative Element ---------- */

.why-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(38, 57, 111, 0.06);
    border-radius: 50%;
}

.why-card-highlight::after {
    border-color: rgba(255, 255, 255, 0.07);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    .why-choose-section {
        padding: 80px 0;
    }

    .why-choose-container {
        gap: 45px;
    }

    .why-choose-intro h2 {
        font-size: 38px;
    }

    .why-card {
        min-height: 235px;
        padding: 23px;
    }

    .why-card-top {
        margin-bottom: 28px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .why-choose-section {
        padding: 65px 0;
    }

    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-intro {
        max-width: 100%;
    }

    .why-choose-intro h2 {
        font-size: 32px;
        letter-spacing: -0.6px;
    }

    .why-choose-intro p {
        font-size: 13px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .why-card {
        min-height: 235px;
        padding: 20px;
        border-radius: 8px;
    }

    .why-card-top {
        margin-bottom: 25px;
    }

    .why-icon {
        width: 38px;
        height: 38px;
    }

    .why-icon svg {
        width: 18px;
        height: 18px;
    }

    .why-card h3 {
        font-size: 16px;
    }

    .why-card p {
        font-size: 11px;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;
    }
}



/* ========================================
   CURRENT OFFER SECTION
======================================== */

.current-offer-section {
    width: 100%;
    padding: 45px 0;
    background-color: #ffffff;
}


/* ---------- Section Heading ---------- */

.current-offer-heading {
    text-align: center;
    margin-bottom: 38px;
}

.current-offer-heading .section-label {
    margin-bottom: 10px;
}

.current-offer-heading h2 {
    margin: 0;
    color: #26396f;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
}


/* ---------- Offer Image ---------- */

.current-offer-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f4f4f4;
}

.current-offer-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1;
    object-fit: cover;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    .current-offer-section {
        padding: 80px 0;
    }

    .current-offer-heading {
        margin-bottom: 32px;
    }

    .current-offer-image {
        border-radius: 10px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .current-offer-section {
        padding: 65px 0;
    }

    .current-offer-heading {
        margin-bottom: 25px;
    }

    .current-offer-heading h2 {
        font-size: 32px;
    }

    .current-offer-image {
        border-radius: 8px;
    }

    .current-offer-image img {
        aspect-ratio: 16 / 7;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 380px) {

    .current-offer-section {
        padding: 50px 0;
    }

    .current-offer-heading h2 {
        font-size: 28px;
    }
}



/* ========================================
   BRANCH LOCATIONS
======================================== */

.locations-section {
    width: 100%;
    padding: 100px 0;
    background-color: #f8f8f6;
}


/* ---------- Section Heading ---------- */

.locations-heading {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
}

.locations-heading .section-label {
    margin-bottom: 12px;
}

.locations-heading h2 {
    margin: 0 0 17px;
    color: #26396f;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
}

.locations-heading p {
    max-width: 570px;
    margin: 0 auto;
    color: #6b6b6b;
    font-size: 14px;
    line-height: 1.8;
}


/* ---------- Locations Grid ---------- */

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}


/* ---------- Location Card ---------- */

.location-card {
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(38, 57, 111, 0.09);
}


/* ---------- Google Map ---------- */

.location-map {
    width: 100%;
    height: 270px;
    background-color: #e9e9e9;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}


/* ---------- Location Details ---------- */

.location-details {
    padding: 25px 27px 27px;
}

.location-title {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 11px;
}

.location-number {
    flex-shrink: 0;
    padding-top: 2px;
    color: #d56532;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.location-title h3 {
    margin: 0;
    color: #26396f;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 650;
}

.location-details p {
    min-height: 42px;
    margin: 0 0 20px;
    color: #737373;
    font-size: 12px;
    line-height: 1.7;
}


/* ---------- Direction Button ---------- */

.location-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    background-color: #26396f;
    color: #ffffff;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    transition:
        background-color 0.25s ease,
        gap 0.25s ease;
}

.location-button span {
    font-size: 15px;
    line-height: 1;
}

.location-button:hover {
    background-color: #d56532;
    gap: 12px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    .locations-section {
        padding: 80px 0;
    }

    .locations-heading {
        margin-bottom: 40px;
    }

    .locations-grid {
        gap: 18px;
    }

    .location-map {
        height: 240px;
    }

    .location-details {
        padding: 22px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .locations-section {
        padding: 65px 0;
    }

    .locations-heading {
        margin-bottom: 32px;
    }

    .locations-heading h2 {
        font-size: 32px;
    }

    .locations-heading p {
        font-size: 13px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .location-map {
        height: 230px;
    }

    .location-card {
        border-radius: 9px;
    }

    .location-details {
        padding: 20px;
    }

    .location-title h3 {
        font-size: 17px;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 380px) {

    .locations-section {
        padding: 50px 0;
    }

    .location-map {
        height: 210px;
    }
}


/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {
    width: 100%;
    padding: 100px 0;
    background-color: #ffffff;
}


/* ---------- Heading ---------- */

.contact-heading {
    max-width: 680px;
    margin: 0 auto 50px;
    text-align: center;
}

.contact-heading .section-label {
    margin-bottom: 12px;
}

.contact-heading h2 {
    margin: 0 0 17px;
    color: #26396f;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
}

.contact-heading p {
    max-width: 570px;
    margin: 0 auto;
    color: #6b6b6b;
    font-size: 14px;
    line-height: 1.8;
}


/* ========================================
   FORM WRAPPER
======================================== */

.contact-form-wrapper {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 42px;
    background-color: #f8f8f6;
    border: 1px solid #eeeeee;
    border-radius: 14px;
}


/* ---------- Form ---------- */

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.form-group {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #26396f;
    font-size: 12px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 6px;
    outline: none;
    background-color: #ffffff;
    color: #26396f;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.form-group input {
    height: 50px;
    padding: 0 15px;
}

.form-group textarea {
    display: block;
    min-height: 150px;
    margin-top: 0;
    padding: 14px 15px;
    resize: vertical;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a5a5a5;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d56532;
    box-shadow: 0 0 0 3px rgba(213, 101, 50, 0.08);
}


/* ---------- Message ---------- */

.form-message {
    margin-top: 22px;
}


/* ---------- Submit ---------- */

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.contact-submit {
    min-width: 165px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border: none;
    border-radius: 5px;
    background-color: #26396f;
    color: #ffffff;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        gap 0.25s ease;
}

.contact-submit span {
    font-size: 17px;
    line-height: 1;
}

.contact-submit:hover {
    background-color: #d56532;
    gap: 16px;
}


/* ========================================
   SUPPLIER NOTE
======================================== */

.supplier-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;

    margin-top: 35px;
    padding-top: 28px;

    border-top: 1px solid #dddddd;

    text-align: center;
}

.supplier-note-icon {
    flex-shrink: 0;

    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background-color: #d56532;
    color: #ffffff;

    font-size: 15px;
    font-weight: 500;
    line-height: 1;
}

.supplier-note p {
    max-width: 850px;
    margin: 0;

    color: #6c6c6c;
    font-size: 12px;
    line-height: 1.7;
}

.supplier-note a {
    color: #26396f;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #d56532;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.supplier-note a:hover {
    color: #d56532;
}

.supplier-note a span {
    display: inline-block;
    margin-left: 3px;
    font-size: 13px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    .contact-section {
        padding: 80px 0;
    }

    .contact-form-wrapper {
        padding: 32px;
    }

    .form-row {
        gap: 18px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .contact-section {
        padding: 65px 0;
    }

    .contact-heading {
        margin-bottom: 32px;
    }

    .contact-heading h2 {
        font-size: 32px;
    }

    .contact-heading p {
        font-size: 13px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 9px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .form-message {
        margin-top: 18px;
    }

    .form-group input {
        height: 48px;
    }

    .form-group textarea {
        min-height: 135px;
    }

    .form-submit {
        margin-top: 20px;
    }

    .contact-submit {
        width: 100%;
    }

    .supplier-note {
        margin-top: 28px;
        padding-top: 23px;
        text-align: left;
    }

    .supplier-note p {
        font-size: 11px;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 380px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-form-wrapper {
        padding: 20px 16px;
    }

    .supplier-note {
        gap: 9px;
    }

    .supplier-note-icon {
        width: 20px;
        height: 20px;
        font-size: 13px;
    }
}




/* ========================================
   EXPERIMENTAL FOOTER
======================================== */

.site-footer {
    width: 100%;
    background-color: #26396f;
    color: #ffffff;
    overflow: hidden;
}


/* ========================================
   MAIN FOOTER
======================================== */

.footer-main {
    position: relative;
    padding: 90px 0 0;
}


/* ---------- Brand Area ---------- */

.footer-brand-area {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 70px;
    padding-bottom: 75px;
}

.footer-brand {
    max-width: 310px;
}

.footer-brand img {
    width: 160px;
    height: auto;
    display: block;
    margin-bottom: 25px;

    /*
       The logo is placed on a white surface so that
       the original logo colors remain visible.
    */
    padding: 8px 12px;
    background-color: #ffffff;
    border-radius: 6px;
}

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.8;
}


/* ---------- Large Editorial Text ---------- */

.footer-big-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    color: #ffffff;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: -4px;
    text-align: right;
}

.footer-big-text span {
    display: block;
}

.footer-dot {
    color: #d56532;
}


/* ========================================
   FOOTER NAVIGATION
======================================== */

.footer-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 50px;

    padding: 45px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column-title {
    margin-bottom: 20px;
    color: #d56532;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.footer-column a {
    margin-bottom: 11px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-visit {
    align-items: flex-end;
    text-align: right;
}

.footer-visit p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.8;
}

.footer-location-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 11px 17px;

    background-color: #d56532;
    color: #ffffff !important;

    border-radius: 4px;

    font-size: 11px !important;
    font-weight: 600;
}

.footer-location-btn:hover {
    transform: none !important;
    background-color: #ffffff;
    color: #26396f !important;
}

.footer-location-btn span {
    font-size: 15px;
}


/* ========================================
   FOOTER MARQUEE
======================================== */

.footer-marquee {
    width: 100%;
    overflow: hidden;
    padding: 30px 0 25px;
}

.footer-marquee-line {
    white-space: nowrap;

    color: rgba(255, 255, 255, 0.08);
    font-size: clamp(30px, 5vw, 65px);
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1;

    transform: translateX(-3%);
}


/* ========================================
   BOTTOM FOOTER
======================================== */

.footer-bottom {
    background-color: #1f2f5d;
}

.footer-bottom-inner {
    min-height: 62px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-credit {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    .footer-main {
        padding-top: 75px;
    }

    .footer-brand-area {
        gap: 40px;
        padding-bottom: 60px;
    }

    .footer-big-text {
        font-size: 60px;
        letter-spacing: -3px;
    }

    .footer-navigation {
        gap: 30px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .footer-main {
        padding-top: 60px;
    }

    .footer-brand-area {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-bottom: 50px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand img {
        width: 145px;
        margin-bottom: 20px;
    }

    .footer-brand p {
        font-size: 11px;
    }

    .footer-big-text {
        align-items: flex-start;
        font-size: clamp(40px, 12vw, 60px);
        letter-spacing: -2px;
        text-align: left;
    }

    .footer-navigation {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
        padding: 40px 0;
    }

    .footer-visit {
        grid-column: span 2;
        align-items: flex-start;
        text-align: left;
    }

    .footer-marquee {
        padding: 25px 0 20px;
    }

    .footer-marquee-line {
        font-size: 35px;
    }

    .footer-bottom-inner {
        min-height: auto;
        padding: 20px 0;

        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 10px 20px;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 380px) {

    .footer-navigation {
        grid-template-columns: 1fr;
    }

    .footer-visit {
        grid-column: span 1;
    }

    .footer-big-text {
        font-size: 38px;
    }

    .footer-legal {
        gap: 8px 15px;
    }
}