* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    color: #10294a;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ================= COLORS ================= */

:root {
    --navy: #062746;
    --navy2: #092e52;
    --orange: #f47721;
    --light: #f7f8fa;
    --border: #e5e7eb;
    --green: #18b65b;
}

/* ================= TOP BAR ================= */

.top-bar {
    background: var(--navy);
    color: white;
    height: 43px;
}

.top-inner {
    max-width: 1400px;
    height: 100%;
    margin: auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 18px;
    font-weight: 500;
}

.top-inner i {
    margin-right: 8px;
}

/* ================= HEADER ================= */

.header {
    background: white;
    border-radius: 0 0 14px 14px;
    position: relative;
    z-index: 20;
    box-shadow: 0 3px 15px rgba(0,0,0,.08);
}

.header-inner {
    max-width: 1400px;
    min-height: 91px;
    margin: auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Menu */

.menu-btn {
    border: 0;
    background: transparent;
    font-size: 33px;
    color: var(--navy);
    cursor: pointer;
    width: 50px;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: 15px;
}

.a2 {
    font-size: 59px;
    font-weight: 900;
    line-height: 1;
    color: #092e52;
}

.a2 span {
    color: var(--orange);
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: #173555;
    margin-left: 10px;
}

.logo-text small {
    display: block;
    font-size: 11px;
    letter-spacing: .3px;
    margin-top: 2px;
}

/* Header Call */

.header-call {
    background: var(--navy);
    color: white;
    border-radius: 13px;
    padding: 14px 23px;

    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.header-call:hover {
    background: #12446e;
}

  
/* ================= SECTIONS ================= */

.section {
    max-width: 1400px;
    margin: auto;
    padding: 42px 30px;
}

.section-heading {
    text-align: center;
    margin-bottom: 24px;
}

.section-heading > span {
    color: var(--orange);
    font-size: 16px;
    font-weight: 700;
}

.section-heading h2 {
    color: var(--navy);
    font-size: 27px;
    margin-top: 6px;
}

.heading-line {
    width: 40px;
    height: 3px;
    background: var(--orange);
    margin: 10px auto 0;
}

/* ================= SERVICES ================= */

/* =========================
   SERVICES SECTION
========================= */

.services {
    padding: 70px 30px;
    background: #f8f9fb;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading span {
    color: #f57c00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-heading h2 {
    color: #102a43;
    font-size: 32px;
    margin: 10px 0;
}

.heading-line {
    width: 45px;
    height: 3px;
    background: #f57c00;
    margin: 15px auto;
}


/* =========================
   SERVICE GRID
========================= */

.service-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* =========================
   SERVICE CARD
========================= */

.service-card {
    position: relative;

    min-height: 250px;

    background: #ffffff;
    border: 1px solid #e5e7eb;

    border-radius: 16px;

    text-decoration: none;
    color: #102a43;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 20px;

    transition: 0.3s ease;

    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}


/* =========================
   SERVICE IMAGE
========================= */

.service-image {
    width: 100%;
    height: 160px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 90%;
    max-height: 150px;

    object-fit: contain;

    display: block;
}


/* =========================
   SERVICE NAME
========================= */

.service-name {
    text-align: center;

    font-size: 18px;
    font-weight: 600;

    line-height: 1.5;

    margin-top: 10px;
}


/* =========================
   ARROW
========================= */

.service-arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #102a43;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

.service-card:hover .service-arrow {
    background: #f57c00;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================
   MOBILE - ONE BY ONE
========================= */

@media (max-width: 600px) {

    .services {
        padding: 50px 15px;
    }

    .section-heading h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        min-height: 280px;
        padding: 20px;
    }

    .service-image {
        height: 190px;
    }

    .service-image img {
        max-width: 90%;
        max-height: 200px;
    }

    .service-name {
        font-size: 18px;
    }

}

/* ================= FEATURES STRIP ================= */

.features-strip {
    max-width: 1340px;
    margin: 0 auto 20px;
    padding: 19px 20px;
    border-radius: 13px;
    background: var(--navy);

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    color: white;
}

.feature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    min-height: 65px;
    border-right: 1px solid rgba(255,255,255,.35);
    text-align: center;
}

.feature-box:last-child {
    border-right: none;
}

.feature-box i {
    font-size: 29px;
}

.feature-box span {
    font-size: 15px;
    line-height: 1.4;
}

/* ================= BOOKING ================= */

.booking {
    margin-top: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 275px;

    border: 1px solid #e4e6e8;
    border-radius: 12px;

    display: flex;
    align-items: center;
    overflow: hidden;
}

.booking-image {
    width: 190px;
    height: 155px;
    align-self: flex-end;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.booking-image img {
    max-height: 255px;
    object-fit: contain;
}

.booking-content {
    flex: 1;
    padding: 0 20px;
}

.booking-small {
    color: var(--orange);
    font-size: 15px;
    font-weight: 700;
}

.booking-content h2 {
    color: var(--navy);
    font-size: 26px;
    line-height: 1.2;
    margin: 5px 0 10px;
}

.booking-points {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
}

.booking-points i {
    color: #39a55d;
    margin-right: 5px;
}

.booking-button {
    margin-right: 20px;
    background: var(--navy);
    color: white;

    min-width: 200px;
    padding: 17px 22px;
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 16px;
    font-weight: 700;
}

/* ================= BRANDS ================= */

.brands {
    padding-top: 15px;
    text-align: center;
}

.brand-heading {
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 15px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.brand {
    min-height: 65px;
    border: 1px solid #e3e5e8;
    border-radius: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;
    color: #555;
}

.samsung {
    color: #174b9c;
    font-size: 20px;
    font-weight: 800;
}

.lg {
    color: #c52340;
    font-size: 27px;
}

.whirlpool {
    color: #333;
    font-family: serif;
    font-size: 22px;
}

.bosch {
    color: #c90016;
    font-size: 19px;
}

.view-brands {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;

    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
}

/* ================= ENQUIRY ================= */

.enquiry {
    background: #f7f8fa;
    max-width: 100%;
    padding-left: max(30px, calc((100% - 1340px) / 2));
    padding-right: max(30px, calc((100% - 1340px) / 2));
}

.enquiry-form {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-family: inherit;
    outline: none;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--navy);
}

.enquiry-form textarea {
    resize: vertical;
    margin-bottom: 15px;
}

.submit-btn {
    border: none;
    background: var(--orange);
    color: white;
    padding: 14px 25px;
    border-radius: 7px;
    font-weight: 700;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 15px;
}

/* ================= FOOTER ================= */

/* =========================
   FOOTER
========================= */

.footer {
    background: #0b223d;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 65px 25px 50px;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 50px;
}


/* =========================
   LOGO
========================= */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 4px;

    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
}

.logo-a,
.logo-z {
    color: #ffffff;
}

.logo-2 {
    color: #ff6b00;
}

.logo-text {
    font-size: 16px;
    margin-left: 8px;
    letter-spacing: 0.5px;
}


/* =========================
   DESCRIPTION
========================= */

.footer-description {
    color: #c7d2df;
    line-height: 1.8;
    font-size: 15px;
    max-width: 280px;
}


/* =========================
   HEADINGS
========================= */

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    position: absolute;

    width: 42px;
    height: 3px;

    background: #ff6b00;

    left: 0;
    bottom: -10px;

    border-radius: 5px;
}


/* =========================
   LINKS
========================= */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #c7d2df;
    text-decoration: none;
    font-size: 15px;

    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6b00;
    padding-left: 6px;
}


/* =========================
   CONTACT
========================= */

.contact-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;
    margin-bottom: 22px;
}

.contact-item span {
    width: 40px;
    height: 40px;

    background: rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-size: 18px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item small {
    color: #9eafc2;
    font-size: 13px;
    margin-bottom: 5px;
}

.contact-item strong {
    color: #ffffff;
    font-size: 15px;
}


/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-icons a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 8px;

    color: #ffffff;
    text-decoration: none;
    font-weight: bold;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff6b00;
    transform: translateY(-3px);
}


/* =========================
   BOTTOM FOOTER
========================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1200px;

    margin: auto;
    padding: 22px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #9eafc2;
    font-size: 14px;
}

.footer-policy {
    display: flex;
    gap: 20px;
}

.footer-policy a {
    color: #9eafc2;
    text-decoration: none;
}

.footer-policy a:hover {
    color: #ff6b00;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .footer-container {
        grid-template-columns: 1fr;
        padding: 45px 20px;
        gap: 35px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-policy {
        flex-wrap: wrap;
        justify-content: center;
    }

}
/* ================= MOBILE NAV ================= */

.mobile-nav {
    display: none;
}

/* ================= TABLET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    color: #10294a;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ================= COLORS ================= */

:root {
    --navy: #062746;
    --navy2: #092e52;
    --orange: #f47721;
    --light: #f7f8fa;
    --border: #e5e7eb;
    --green: #18b65b;
}

/* ================= TOP BAR ================= */

.top-bar {
    background: var(--navy);
    color: white;
    height: 43px;
}

.top-inner {
    max-width: 1400px;
    height: 100%;
    margin: auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 18px;
    font-weight: 500;
}

.top-inner i {
    margin-right: 8px;
}

/* ================= HEADER ================= */

.header {
    background: white;
    border-radius: 0 0 14px 14px;
    position: relative;
    z-index: 20;
    box-shadow: 0 3px 15px rgba(0,0,0,.08);
}

.header-inner {
    max-width: 1400px;
    min-height: 91px;
    margin: auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Menu */

.menu-btn {
    border: 0;
    background: transparent;
    font-size: 33px;
    color: var(--navy);
    cursor: pointer;
    width: 50px;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: 15px;
}

.a2 {
    font-size: 59px;
    font-weight: 900;
    line-height: 1;
    color: #092e52;
}

.a2 span {
    color: var(--orange);
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: #173555;
    margin-left: 10px;
}

.logo-text small {
    display: block;
    font-size: 11px;
    letter-spacing: .3px;
    margin-top: 2px;
}

/* Header Call */

.header-call {
    background: var(--navy);
    color: white;
    border-radius: 13px;
    padding: 14px 23px;

    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.header-call:hover {
    background: #12446e;
}

/* ================= HERO ================= */

.hero {
    position: relative;
    overflow: hidden;
    background: #f5f5f4;
}

.hero-content {
    max-width: 1400px;
    margin: auto;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.hero-text {
    width: 53%;
    padding: 55px 30px 45px;
}

.orange-small {
    color: var(--orange);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero h1 {
    color: var(--navy);
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 15px;
    font-weight: 800;
}

.hero-description {
    color: #536174;
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 24px;
}

/* Hero features */

.hero-features {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
}

.hero-feature {
    width: 145px;
    text-align: center;
    border-right: 1px solid #d9dce1;
    color: var(--navy);
    padding: 0 12px;
}

.hero-feature:first-child {
    padding-left: 0;
}

.hero-feature:last-child {
    border-right: 0;
}

.hero-feature i {
    font-size: 31px;
    margin-bottom: 7px;
}

.hero-feature span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

/* Buttons */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.primary-btn {
    background: var(--orange);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;

    font-size: 16px;
    font-weight: 700;

    display: flex;
    align-items: center;
    gap: 18px;
    transition: .3s;
}

.primary-btn:hover {
    background: #db5e0c;
}

.how-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
}

.play-circle {
    width: 34px;
    height: 34px;
    border: 2px solid var(--navy);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
}

/* Hero image */

.hero-image {
    width: 47%;
    height: 520px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider */

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 12px;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}

.slider-dots .active {
    background: var(--navy);
}

/* Floating buttons */

.floating-contact { 
    position: fixed; 
    right: 0; 
    top: 175px; 
    z-index: 9999; 
 
    display: flex; 
    flex-direction: column; 
} 
 
.floating-contact a { 
    width: 78px; 
    height: 100px; 
 
    color: white; 
    text-decoration: none;
 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-direction: column; 
 
    gap: 7px; 
    font-size: 15px; 
    font-weight: 600; 
    text-align: center; 
} 
 
.floating-contact i { 
    font-size: 29px; 
} 
 
.whatsapp-btn { 
    background: #18b95d; 
    border-radius: 16px 0 0 0; 
} 
 
.call-btn { 
    background: var(--navy); 
    border-radius: 0 0 0 16px; 
}

/* ================= SECTIONS ================= */

.section {
    max-width: 1400px;
    margin: auto;
    padding: 42px 30px;
}

.section-heading {
    text-align: center;
    margin-bottom: 24px;
}

.section-heading > span {
    color: var(--orange);
    font-size: 16px;
    font-weight: 700;
}

.section-heading h2 {
    color: var(--navy);
    font-size: 27px;
    margin-top: 6px;
}

.heading-line {
    width: 40px;
    height: 3px;
    background: var(--orange);
    margin: 10px auto 0;
}

/* ================= SERVICES ================= */

/* =========================
   SERVICES SECTION
========================= */

.services {
    padding: 70px 30px;
    background: #f8f9fb;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading span {
    color: #f57c00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-heading h2 {
    color: #102a43;
    font-size: 32px;
    margin: 10px 0;
}

.heading-line {
    width: 45px;
    height: 3px;
    background: #f57c00;
    margin: 15px auto;
}


/* =========================
   SERVICE GRID
========================= */

.service-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* =========================
   SERVICE CARD
========================= */

.service-card {
    position: relative;

    min-height: 250px;

    background: #ffffff;
    border: 1px solid #e5e7eb;

    border-radius: 16px;

    text-decoration: none;
    color: #102a43;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 20px;

    transition: 0.3s ease;

    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}


/* =========================
   SERVICE IMAGE
========================= */

.service-image {
    width: 100%;
    height: 160px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 90%;
    max-height: 150px;

    object-fit: contain;

    display: block;
}


/* =========================
   SERVICE NAME
========================= */

.service-name {
    text-align: center;

    font-size: 18px;
    font-weight: 600;

    line-height: 1.5;

    margin-top: 10px;
}


/* =========================
   ARROW
========================= */

.service-arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #102a43;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

.service-card:hover .service-arrow {
    background: #f57c00;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================
   MOBILE - ONE BY ONE
========================= */

@media (max-width: 600px) {

    .services {
        padding: 50px 15px;
    }

    .section-heading h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        min-height: 280px;
        padding: 20px;
    }

    .service-image {
        height: 190px;
    }

    .service-image img {
        max-width: 90%;
        max-height: 200px;
    }

    .service-name {
        font-size: 18px;
    }

}

/* ================= FEATURES STRIP ================= */

.features-strip {
    max-width: 1340px;
    margin: 0 auto 20px;
    padding: 19px 20px;
    border-radius: 13px;
    background: var(--navy);

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    color: white;
}

.feature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    min-height: 65px;
    border-right: 1px solid rgba(255,255,255,.35);
    text-align: center;
}

.feature-box:last-child {
    border-right: none;
}

.feature-box i {
    font-size: 29px;
}

.feature-box span {
    font-size: 15px;
    line-height: 1.4;
}

/* ================= BOOKING ================= */

.booking {
    margin-top: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 275px;

    border: 1px solid #e4e6e8;
    border-radius: 12px;

    display: flex;
    align-items: center;
    overflow: hidden;
}

.booking-image {
    width: 190px;
    height: 155px;
    align-self: flex-end;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.booking-image img {
    max-height: 255px;
    object-fit: contain;
}

.booking-content {
    flex: 1;
    padding: 0 20px;
}

.booking-small {
    color: var(--orange);
    font-size: 15px;
    font-weight: 700;
}

.booking-content h2 {
    color: var(--navy);
    font-size: 26px;
    line-height: 1.2;
    margin: 5px 0 10px;
}

.booking-points {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
}

.booking-points i {
    color: #39a55d;
    margin-right: 5px;
}

.booking-button {
    margin-right: 20px;
    background: var(--navy);
    color: white;

    min-width: 200px;
    padding: 17px 22px;
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 16px;
    font-weight: 700;
}

/* ================= BRANDS ================= */

.brands {
    padding-top: 15px;
    text-align: center;
}

.brand-heading {
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 15px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.brand {
    min-height: 65px;
    border: 1px solid #e3e5e8;
    border-radius: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;
    color: #555;
}

.samsung {
    color: #174b9c;
    font-size: 20px;
    font-weight: 800;
}

.lg {
    color: #c52340;
    font-size: 27px;
}

.whirlpool {
    color: #333;
    font-family: serif;
    font-size: 22px;
}

.bosch {
    color: #c90016;
    font-size: 19px;
}

.view-brands {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;

    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
}

/* ================= ENQUIRY ================= */

.enquiry {
    background: #f7f8fa;
    max-width: 100%;
    padding-left: max(30px, calc((100% - 1340px) / 2));
    padding-right: max(30px, calc((100% - 1340px) / 2));
}

.enquiry-form {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-family: inherit;
    outline: none;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--navy);
}

.enquiry-form textarea {
    resize: vertical;
    margin-bottom: 15px;
}

.submit-btn {
    border: none;
    background: var(--orange);
    color: white;
    padding: 14px 25px;
    border-radius: 7px;
    font-weight: 700;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 15px;
}

/* ================= FOOTER ================= */

/* =========================
   FOOTER
========================= */

.footer {
    background: #0b223d;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 65px 25px 50px;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 50px;
}


/* =========================
   LOGO
========================= */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 4px;

    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
}

.logo-a,
.logo-z {
    color: #ffffff;
}

.logo-2 {
    color: #ff6b00;
}

.logo-text {
    font-size: 16px;
    margin-left: 8px;
    letter-spacing: 0.5px;
}


/* =========================
   DESCRIPTION
========================= */

.footer-description {
    color: #c7d2df;
    line-height: 1.8;
    font-size: 15px;
    max-width: 280px;
}


/* =========================
   HEADINGS
========================= */

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    position: absolute;

    width: 42px;
    height: 3px;

    background: #ff6b00;

    left: 0;
    bottom: -10px;

    border-radius: 5px;
}


/* =========================
   LINKS
========================= */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #c7d2df;
    text-decoration: none;
    font-size: 15px;

    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6b00;
    padding-left: 6px;
}


/* =========================
   CONTACT
========================= */

.contact-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;
    margin-bottom: 22px;
}

.contact-item span {
    width: 40px;
    height: 40px;

    background: rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-size: 18px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item small {
    color: #9eafc2;
    font-size: 13px;
    margin-bottom: 5px;
}

.contact-item strong {
    color: #ffffff;
    font-size: 15px;
}


/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-icons a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 8px;

    color: #ffffff;
    text-decoration: none;
    font-weight: bold;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff6b00;
    transform: translateY(-3px);
}


/* =========================
   BOTTOM FOOTER
========================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1200px;

    margin: auto;
    padding: 22px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #9eafc2;
    font-size: 14px;
}

.footer-policy {
    display: flex;
    gap: 20px;
}

.footer-policy a {
    color: #9eafc2;
    text-decoration: none;
}

.footer-policy a:hover {
    color: #ff6b00;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .footer-container {
        grid-template-columns: 1fr;
        padding: 45px 20px;
        gap: 35px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-policy {
        flex-wrap: wrap;
        justify-content: center;
    }

}
/* ================= MOBILE NAV ================= */

.mobile-nav {
    display: none;
}

/* ================= TABLET ================= */

@media (max-width: 900px) {

    .hero h1 {
        font-size: 36px;
    }

    .hero-feature {
        width: 110px;
    }

    .hero-feature span {
        font-size: 12px;
    }

    .service-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .features-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-box:nth-child(3) {
        border-right: none;
    }

    .feature-box:nth-child(4),
    .feature-box:nth-child(5) {
        margin-top: 10px;
    }

    .booking-button {
        min-width: 150px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {

    body {
        padding-bottom: 70px;
    }

    /* Top */

    .top-bar {
        height: 39px;
    }

    .top-inner {
        padding: 0 15px;
        font-size: 14px;
    }

    .top-inner div:first-child {
        display: block;
    }

    /* Header */

    .header-inner {
        min-height: 75px;
        padding: 0 15px;
    }

    .menu-btn {
        width: 40px;
        font-size: 28px;
    }

    .logo {
        margin-left: 3px;
    }

    .a2 {
        font-size: 41px;
    }

    .logo-text {
        font-size: 17px;
        margin-left: 5px;
    }

    .logo-text small {
        font-size: 8px;
    }

    .header-call {
        padding: 11px;
        border-radius: 9px;
        font-size: 0;
    }

    .header-call i {
        font-size: 21px;
    }

    /* Hero */

    .hero-content {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .hero-text {
        width: 100%;
        padding: 28px 20px 20px;
    }

    .orange-small {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-features {
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .hero-feature {
        width: 25%;
        padding: 0 4px;
    }

    .hero-feature i {
        font-size: 23px;
    }

    .hero-feature span {
        font-size: 10px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .primary-btn {
        padding: 12px 14px;
        font-size: 13px;
    }

    .how-btn {
        font-size: 12px;
    }

    .hero-image {
        width: 96%;
        height: 335px;
    }

    .floating-contact {
        top: 215px;
    }

    .floating-contact a {
        width: 58px;
        height: 75px;
        font-size: 11px;
    }

    .floating-contact i {
        font-size: 22px;
    }

    /* Sections */

    .section {
        padding: 30px 15px;
    }

    .section-heading h2 {
        font-size: 23px;
    }

    /* Services */
 

    /* Features */

    .features-strip {
        margin: 0 15px 15px;
        padding: 12px 5px;
        grid-template-columns: repeat(5, 1fr);
        border-radius: 11px;
    }

    .feature-box {
        min-height: 70px;
        flex-direction: column;
        gap: 5px;
        padding: 0 4px;
    }

    .feature-box i {
        font-size: 23px;
    }

    .feature-box span {
        font-size: 9px;
        line-height: 1.25;
    }

    /* Booking */

    .booking {
        margin: 0 15px 20px;
        padding: 10px;
        min-height: 155px;
    }

    .booking-image {
        width: 100px;
        height: 135px;
    }

    .booking-image img {
        max-height: 135px;
    }

    .booking-content {
        padding: 0 5px;
    }

    .booking-small {
        font-size: 11px;
    }

    .booking-content h2 {
        font-size: 18px;
    }

    .booking-points {
        font-size: 10px;
        gap: 4px;
    }

    .booking-button {
        position: absolute;
        display: none;
    }

    /* Brands */

    .brand-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .brand {
        min-height: 45px;
        font-size: 14px;
    }

    .samsung {
        font-size: 11px;
    }

    .lg {
        font-size: 17px;
    }

    .whirlpool {
        font-size: 12px;
    }

    .bosch {
        font-size: 11px;
    }

    /* Form */

    .enquiry {
        padding-left: 15px;
        padding-right: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .enquiry-form {
        padding: 18px;
    }

    /* Footer */

   /* =========================
   FOOTER
========================= */

.footer {
    background: #0b223d;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 65px 25px 50px;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 50px;
}


/* =========================
   LOGO
========================= */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 4px;

    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
}

.logo-a,
.logo-z {
    color: #ffffff;
}

.logo-2 {
    color: #ff6b00;
}

.logo-text {
    font-size: 16px;
    margin-left: 8px;
    letter-spacing: 0.5px;
}


/* =========================
   DESCRIPTION
========================= */

.footer-description {
    color: #c7d2df;
    line-height: 1.8;
    font-size: 15px;
    max-width: 280px;
}


/* =========================
   HEADINGS
========================= */

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    position: absolute;

    width: 42px;
    height: 3px;

    background: #ff6b00;

    left: 0;
    bottom: -10px;

    border-radius: 5px;
}


/* =========================
   LINKS
========================= */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #c7d2df;
    text-decoration: none;
    font-size: 15px;

    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6b00;
    padding-left: 6px;
}


/* =========================
   CONTACT
========================= */

.contact-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;
    margin-bottom: 22px;
}

.contact-item span {
    width: 40px;
    height: 40px;

    background: rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-size: 18px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item small {
    color: #9eafc2;
    font-size: 13px;
    margin-bottom: 5px;
}

.contact-item strong {
    color: #ffffff;
    font-size: 15px;
}


/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-icons a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 8px;

    color: #ffffff;
    text-decoration: none;
    font-weight: bold;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff6b00;
    transform: translateY(-3px);
}


/* =========================
   BOTTOM FOOTER
========================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1200px;

    margin: auto;
    padding: 22px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #9eafc2;
    font-size: 14px;
}

.footer-policy {
    display: flex;
    gap: 20px;
}

.footer-policy a {
    color: #9eafc2;
    text-decoration: none;
}

.footer-policy a:hover {
    color: #ff6b00;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .footer-container {
        grid-template-columns: 1fr;
        padding: 45px 20px;
        gap: 35px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-policy {
        flex-wrap: wrap;
        justify-content: center;
    }

}
    /* Bottom Navigation */

    .mobile-nav {
        position: fixed;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        left: 0;
        right: 0;
        bottom: 0;

        height: 67px;
        background: white;
        border-top: 1px solid #ddd;
        box-shadow: 0 -3px 15px rgba(0,0,0,.1);
        z-index: 999;
    }

    .mobile-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;

        color: #526274;
        font-size: 11px;
        font-weight: 500;
    }

    .mobile-nav i {
        font-size: 23px;
    }

    .mobile-nav a.active {
        color: var(--navy);
    }

}
/* ================= MOBILE ================= */

@media (max-width: 600px) {

    body {
        padding-bottom: 70px;
    }

    /* Top */

    .top-bar {
        height: 39px;
    }

    .top-inner {
        padding: 0 15px;
        font-size: 14px;
    }

    .top-inner div:first-child {
        display: block;
    }

    /* Header */

    .header-inner {
        min-height: 75px;
        padding: 0 15px;
    }

    .menu-btn {
        width: 40px;
        font-size: 28px;
    }

    .logo {
        margin-left: 3px;
    }

    .a2 {
        font-size: 41px;
    }

    .logo-text {
        font-size: 17px;
        margin-left: 5px;
    }

    .logo-text small {
        font-size: 8px;
    }

    .header-call {
        padding: 11px;
        border-radius: 9px;
        font-size: 0;
    }

    .header-call i {
        font-size: 21px;
    }

    /* Hero */

    .hero-content {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .hero-text {
        width: 100%;
        padding: 28px 20px 20px;
    }

    .orange-small {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-features {
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .hero-feature {
        width: 25%;
        padding: 0 4px;
    }

    .hero-feature i {
        font-size: 23px;
    }

    .hero-feature span {
        font-size: 10px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .primary-btn {
        padding: 12px 14px;
        font-size: 13px;
    }

    .how-btn {
        font-size: 12px;
    }

    .hero-image {
        width: 96%;
        height: 335px;
    }

    .floating-contact {
        top: 215px;
    }

    .floating-contact a {
        width: 58px;
        height: 75px;
        font-size: 11px;
    }

    .floating-contact i {
        font-size: 22px;
    }

    /* Sections */

    .section {
        padding: 30px 15px;
    }

    .section-heading h2 {
        font-size: 23px;
    }

    /* Services */
 

    /* Features */

    .features-strip {
        margin: 0 15px 15px;
        padding: 12px 5px;
        grid-template-columns: repeat(5, 1fr);
        border-radius: 11px;
    }

    .feature-box {
        min-height: 70px;
        flex-direction: column;
        gap: 5px;
        padding: 0 4px;
    }

    .feature-box i {
        font-size: 23px;
    }

    .feature-box span {
        font-size: 9px;
        line-height: 1.25;
    }

    /* Booking */

    .booking {
        margin: 0 15px 20px;
        padding: 10px;
        min-height: 155px;
    }

    .booking-image {
        width: 100px;
        height: 135px;
    }

    .booking-image img {
        max-height: 135px;
    }

    .booking-content {
        padding: 0 5px;
    }

    .booking-small {
        font-size: 11px;
    }

    .booking-content h2 {
        font-size: 18px;
    }

    .booking-points {
        font-size: 10px;
        gap: 4px;
    }

    .booking-button {
        position: absolute;
        display: none;
    }

    /* Brands */

    .brand-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .brand {
        min-height: 45px;
        font-size: 14px;
    }

    .samsung {
        font-size: 11px;
    }

    .lg {
        font-size: 17px;
    }

    .whirlpool {
        font-size: 12px;
    }

    .bosch {
        font-size: 11px;
    }

    /* Form */

    .enquiry {
        padding-left: 15px;
        padding-right: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .enquiry-form {
        padding: 18px;
    }

    /* Footer */

   /* =========================
   FOOTER
========================= */

.footer {
    background: #0b223d;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 65px 25px 50px;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 50px;
}


/* =========================
   LOGO
========================= */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 4px;

    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
}

.logo-a,
.logo-z {
    color: #ffffff;
}

.logo-2 {
    color: #ff6b00;
}

.logo-text {
    font-size: 16px;
    margin-left: 8px;
    letter-spacing: 0.5px;
}


/* =========================
   DESCRIPTION
========================= */

.footer-description {
    color: #c7d2df;
    line-height: 1.8;
    font-size: 15px;
    max-width: 280px;
}


/* =========================
   HEADINGS
========================= */

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    position: absolute;

    width: 42px;
    height: 3px;

    background: #ff6b00;

    left: 0;
    bottom: -10px;

    border-radius: 5px;
}


/* =========================
   LINKS
========================= */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #c7d2df;
    text-decoration: none;
    font-size: 15px;

    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6b00;
    padding-left: 6px;
}


/* =========================
   CONTACT
========================= */

.contact-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;
    margin-bottom: 22px;
}

.contact-item span {
    width: 40px;
    height: 40px;

    background: rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-size: 18px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item small {
    color: #9eafc2;
    font-size: 13px;
    margin-bottom: 5px;
}

.contact-item strong {
    color: #ffffff;
    font-size: 15px;
}


/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-icons a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 8px;

    color: #ffffff;
    text-decoration: none;
    font-weight: bold;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff6b00;
    transform: translateY(-3px);
}


/* =========================
   BOTTOM FOOTER
========================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1200px;

    margin: auto;
    padding: 22px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #9eafc2;
    font-size: 14px;
}

.footer-policy {
    display: flex;
    gap: 20px;
}

.footer-policy a {
    color: #9eafc2;
    text-decoration: none;
}

.footer-policy a:hover {
    color: #ff6b00;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .footer-container {
        grid-template-columns: 1fr;
        padding: 45px 20px;
        gap: 35px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-policy {
        flex-wrap: wrap;
        justify-content: center;
    }

}
    /* Bottom Navigation */

    .mobile-nav {
        position: fixed;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        left: 0;
        right: 0;
        bottom: 0;

        height: 67px;
        background: white;
        border-top: 1px solid #ddd;
        box-shadow: 0 -3px 15px rgba(0,0,0,.1);
        z-index: 999;
    }

    .mobile-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;

        color: #526274;
        font-size: 11px;
        font-weight: 500;
    }

    .mobile-nav i {
        font-size: 23px;
    }

    .mobile-nav a.active {
        color: var(--navy);
    }

}

/* =========================
   HEADER
========================= */

.privacy-header {
    background: var(--white);
    border-bottom: 1px solid #e9edf2;
}

.header-container {
    max-width: 1200px;
    margin: auto;

    padding: 18px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
}

.logo-sub {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--orange);
}

.header-call {
    background: var(--orange);
    color: var(--white);

    padding: 12px 20px;
    border-radius: 6px;

    text-decoration: none;
    font-weight: 600;
}


/* =========================
   PAGE HERO
========================= */

.page-hero {
    background: var(--navy);
    padding: 75px 20px;

    text-align: center;
    color: var(--white);
}

.page-hero-content {
    max-width: 800px;
    margin: auto;
}

.page-hero span {
    color: var(--orange);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
}

.page-hero h1 {
    font-size: 48px;
    margin: 10px 0 15px;
}

.page-hero p {
    color: #d7e0ea;
    font-size: 17px;
}


/* =========================
   BREADCRUMB
========================= */

.breadcrumb {
    margin-top: 20px;

    display: flex;
    justify-content: center;
    gap: 10px;

    font-size: 14px;
}

.breadcrumb a {
    color: var(--orange);
    text-decoration: none;
}


/* =========================
   PRIVACY SECTION
========================= */

.privacy-section {
    padding: 70px 20px;
}

.privacy-container {
    max-width: 900px;
    margin: auto;
}


/* =========================
   PRIVACY CARD
========================= */

.privacy-card {
    background: var(--white);

    padding: 35px;
    margin-bottom: 25px;

    border-radius: 12px;

    border: 1px solid #e9edf2;

    position: relative;

    transition: 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 35px
        rgba(11, 35, 65, 0.08);
}


/* =========================
   ICON
========================= */

.privacy-icon {
    width: 50px;
    height: 50px;

    background: #fff3e8;

    color: var(--orange);

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;

    margin-bottom: 18px;
}


/* =========================
   TEXT
========================= */

.privacy-card h2 {
    color: var(--navy);

    font-size: 24px;

    margin-bottom: 15px;
}

.privacy-card p {
    margin-bottom: 14px;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}


/* =========================
   LIST
========================= */

.privacy-card ul {
    margin-top: 15px;
    padding-left: 20px;
}

.privacy-card li {
    margin-bottom: 10px;
}

.privacy-card li::marker {
    color: var(--orange);
}


/* =========================
   CONTACT BOX
========================= */

.privacy-contact {
    background: var(--navy);

    padding: 40px;

    border-radius: 15px;

    color: var(--white);

    display: flex;
    align-items: center;

    gap: 25px;

    margin-top: 40px;
}

.contact-icon {
    width: 70px;
    height: 70px;

    min-width: 70px;

    background: var(--orange);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
}

.privacy-contact h2 {
    font-size: 26px;
    margin-bottom: 8px;
}

.privacy-contact p {
    color: #d5dfe9;
    margin-bottom: 15px;
}

.privacy-contact a {
    color: var(--orange);

    text-decoration: none;

    font-weight: 700;
    font-size: 18px;
}

 
 
 /* =========================
   TERMS & CONDITIONS
========================= */

.terms-section {
    background: #f6f8fb;
    font-family: Arial, sans-serif;
    color: #52606d;
}


/* HERO */

.terms-hero {
    background: #0b2341;
    padding: 75px 20px;
    text-align: center;
    color: #ffffff;
}

.terms-hero-content {
    max-width: 800px;
    margin: auto;
}

.terms-hero span {
    color: #f58220;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.terms-hero h1 {
    font-size: 48px;
    margin: 12px 0 15px;
    color: #ffffff;
}

.terms-hero p {
    color: #d7e0ea;
    font-size: 17px;
    line-height: 1.7;
}


/* CONTENT */

.terms-container {
    max-width: 900px;
    margin: auto;
    padding: 70px 20px;
}


/* CARD */

.terms-card {
    background: #ffffff;
    padding: 35px;
    margin-bottom: 25px;

    border-radius: 12px;
    border: 1px solid #e5eaf0;

    transition: 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(11, 35, 65, 0.08);
}


/* ICON */

.terms-icon {
    width: 50px;
    height: 50px;

    background: #fff3e8;
    color: #f58220;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;
    margin-bottom: 18px;
}


/* TEXT */

.terms-card h2 {
    color: #0b2341;
    font-size: 24px;
    margin-bottom: 15px;
}

.terms-card p {
    line-height: 1.8;
    margin: 0;
}


/* CONTACT BOX */

.terms-contact {
    background: #0b2341;
    color: #ffffff;

    padding: 40px;
    margin-top: 40px;

    border-radius: 15px;

    display: flex;
    align-items: center;
    gap: 25px;
}

.terms-contact-icon {
    width: 70px;
    height: 70px;

    min-width: 70px;

    background: #f58220;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
}

.terms-contact h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ffffff;
}

.terms-contact p {
    color: #d7e0ea;
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-contact a {
    color: #f58220;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}


/* MOBILE */

@media (max-width: 768px) {

    .terms-hero {
        padding: 55px 20px;
    }

    .terms-hero h1 {
        font-size: 34px;
    }

    .terms-hero p {
        font-size: 15px;
    }

    .terms-container {
        padding: 45px 15px;
    }

    .terms-card {
        padding: 25px 20px;
    }

    .terms-card h2 {
        font-size: 21px;
    }

    .terms-contact {
        flex-direction: column;
        text-align: center;

        padding: 30px 20px;
    }

}

:root {
    --navy: #0b2341;
    --orange: #f58220;
    --light-bg: #f6f8fb;
    --text: #586674;
}


/* COMMON */

.brand-page {
    font-family: Arial, sans-serif;
    color: var(--text);
}

.brand-container {
    width: min(1200px, 90%);
    margin: auto;
}


/* HERO */

.brand-hero {
    background: linear-gradient(135deg, #f7f9fc, #ffffff);
    padding: 30px 0;
}

.brand-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.brand-tag,
.brand-heading span {
    color: var(--orange);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.brand-text h1 {
    color: var(--navy);
    font-size: 52px;
    line-height: 1.15;
    margin: 15px 0;
}

.brand-text h1 span {
    color: var(--orange);
}

.brand-text p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 560px;
}


/* BUTTONS */

.brand-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.brand-primary-btn,
.brand-call-btn {
    padding: 15px 22px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.3s;
}

.brand-primary-btn {
    background: var(--orange);
    color: #fff;
}

.brand-call-btn {
    border: 2px solid var(--navy);
    color: var(--navy);
}

.brand-primary-btn:hover,
.brand-call-btn:hover {
    transform: translateY(-3px);
}


/* HERO IMAGE */

.brand-image img {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
}


/* SERVICES */

.brand-services {
    padding: 90px 0;
    background: var(--light-bg);
}

.brand-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.brand-heading h2 {
    color: var(--navy);
    font-size: 38px;
    margin: 10px 0;
}

.brand-heading p {
    line-height: 1.7;
}


/* SERVICE GRID */

.brand-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.brand-service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5eaf0;
    transition: 0.3s;
}

.brand-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: #fff2e7;
    color: var(--orange);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    font-size: 23px;
}

.brand-service-card h3 {
    color: var(--navy);
    margin: 20px 0 10px;
}

.brand-service-card p {
    line-height: 1.7;
}


/* WHY SECTION */

.why-brand {
    padding: 90px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-item {
    text-align: center;
    padding: 25px;
}

.why-item i {
    color: var(--orange);
    font-size: 38px;
}

.why-item h3 {
    color: var(--navy);
    margin: 18px 0 10px;
}


/* CTA */

.brand-cta {
    background: var(--navy);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.brand-cta h2 {
    font-size: 38px;
}

.brand-cta p {
    color: #d6e0ea;
    margin: 15px 0 30px;
}

.brand-cta a {
    display: inline-block;
    background: var(--orange);
    color: #fff;

    padding: 16px 28px;
    border-radius: 6px;

    text-decoration: none;
    font-weight: 700;
}


/* DISCLAIMER */

.brand-disclaimer {
    padding: 25px 0;
    background: #f1f3f5;
}

.brand-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 768px) {

    .brand-hero {
        padding: 30px 0;
    }

    .brand-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-text h1 {
        font-size: 36px;
    }

    .brand-text p {
        font-size: 16px;
    }

    .brand-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .brand-image {
        order: -1;
    }

    .brand-service-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-heading h2 {
        font-size: 28px;
    }

    .brand-cta h2 {
        font-size: 28px;
    }
}


@media (max-width: 480px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .brand-buttons {
        flex-direction: column;
    }

    .brand-primary-btn,
    .brand-call-btn {
        width: 100%;
    }

}