/* =================================================================
   HYSSOP JANITORIAL SERVICES — Main Stylesheet
   Version : 2.0
   Author  : Orange Designs LLC
   Structure:
     1.  CSS Variables
     2.  Base / Reset
     3.  Typography
     4.  Header & Navigation
     5.  Hero Section
     6.  Services Slider
     7.  Why Choose Us
     8.  Industries Section
     9.  Testimonials
    10.  CTA Section
    11.  Footer
    12.  Inner Pages (banners, about, contact, booking)
    13.  Animations
    14.  Media Queries (mobile-first cascade)
   ================================================================= */

/* ─── 1. CSS VARIABLES ────────────────────────────────────────── */
:root {
    --white:          #ffffff;
    --black:          #000000;
    --theme-color:    #2DA3AB;
    --text-color:     #14596B;
    --brand-teal:     #135A6C;
    --brand-dark:     #0a525d;
    --brand-light:    #b0d144;
    --primary-teal:   #5cb2b9;
    --gray-text:      #6c757d;
    --container-max:  1400px;
    --section-py:     100px;
    --radius-card:    20px;
    --transition:     0.35s ease;
}

/* ─── 2. BASE / RESET ─────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Made-Tommy-Soft', sans-serif;
    background: var(--white);
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 72px; /* Offset for fixed header */
}

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

a,
button {
    text-decoration: none !important;
    transition: all var(--transition);
}

/* ─── 3. TYPOGRAPHY ───────────────────────────────────────────── */
@font-face {
    font-family: 'Made-Tommy-Soft';
    src: url('../fonts/tommy-font/MADE-Tommy-Soft-Thin.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Made-Tommy-Soft';
    src: url('../fonts/tommy-font/MADE-Tommy-Soft-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Made-Tommy-Soft';
    src: url('../fonts/tommy-font/MADE-Tommy-Soft-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Made-Tommy-Soft';
    src: url('../fonts/tommy-font/MADE-Tommy-Soft-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Made-Tommy-Soft';
    src: url('../fonts/tommy-font/MADE-Tommy-Soft-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Made-Tommy-Soft';
    src: url('../fonts/tommy-font/MADE-Tommy-Soft-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Made-Tommy-Soft';
    src: url('../fonts/tommy-font/MADE-Tommy-Soft-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    color: var(--black);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--black);
    line-height: 1.2;
}

.main-title {
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    letter-spacing: -0.5px;
}

.section-tagline {
    color: #1a6370;
    font-weight: 600;
    text-align: center;
    margin-bottom: 6px;
    font-size: clamp(0.875rem, 1.5vw, 1.25rem);
}

.subtitle {
    color: #2c6e75;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
}

.description {
    color: var(--gray-text);
    font-size: 1.05rem;
    max-width: 800px;
    line-height: 1.7;
    font-weight: 300;
}

/* ─── 4. CONTAINER ────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

/* ─── 5. HEADER & NAVIGATION ──────────────────────────────────── */
.Customheader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--theme-color);
    padding: 10px 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
    transition: box-shadow var(--transition);
}

/* .sticky class kept for JS compatibility but no longer needed */
.Customheader.sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.Customheader .navbar-brand img {
    height: 52px;
    width: auto;
}

.Customheader .navbar-nav {
    gap: 8px;
}

.Customheader .navbar-nav .nav-item .nav-link {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}

.Customheader .navbar-nav .nav-item.active .nav-link,
.Customheader .navbar-nav .nav-item .nav-link:hover,
.Customheader .navbar-nav .nav-item .nav-link[aria-current="page"] {
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.15);
}

/* Navbar CTA Button */
.nav-cta {
    margin-left: 12px;
}

.nav-cta .themeBTns {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    background: var(--brand-dark);
    padding: 10px 24px;
    border-radius: 8px;
    display: inline-block;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}

.nav-cta .themeBTns:hover {
    background: var(--black);
    color: var(--white);
}

/* Mobile Toggler */
.Customheader .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 6px 10px;
}
.Customheader .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile navbar collapse area */
@media (max-width: 991.98px) {
    .Customheader .navbar-collapse {
        background: var(--brand-dark);
        border-radius: 12px;
        padding: 16px;
        margin-top: 10px;
    }
    .Customheader .navbar-nav .nav-item .nav-link {
        font-size: 1rem;
        padding: 10px 14px;
    }
    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
    }
    .nav-cta .themeBTns {
        display: block;
        text-align: center;
        width: 100%;
    }
}

/* ─── 6. HERO SECTION ─────────────────────────────────────────── */
.hero-section {
    position: relative;
    width: 100%;
    background: linear-gradient(rgba(255,255,255,0.38), rgba(255,255,255,0.38)),
                url('../images/home/home-banner.jpg') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 0;
    min-height: 620px;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    width: 100%;
    padding: 0 15px;
}

.brand-name {
    color: var(--text-color);
    font-weight: 800;
    font-size: clamp(1rem, 2vw, 1.875rem);
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.hero-section h1 {
    font-weight: 800;
    font-size: clamp(1.6rem, 5vw, 3.5rem);
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 1.25rem;
}

.hero-description {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    color: #555;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Search Widget */
.cleanContact.search-widget {
    background-color: var(--brand-dark);
    border-radius: 60px;
    padding: 10px 15px 10px 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    flex-wrap: nowrap;
}

.cleanContact .search-col {
    flex: 1;
    padding: 5px 20px;
    text-align: left;
    border-right: 1px solid #B2CB49;
    min-width: 0;
}

.cleanContact .search-col.LastborderRemover {
    border-right: none;
}

.cleanContact .label {
    display: block;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: -2px;
    letter-spacing: 0.3px;
}

.cleanContact .form-control-custom {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #a7ccd1 !important;
    font-size: 0.85rem;
    width: 100%;
    padding: 0 !important;
    outline: none;
    cursor: pointer;
    font-family: 'Made-Tommy-Soft', sans-serif;
}

.cleanContact select.form-control-custom {
    appearance: none;
    -webkit-appearance: none;
}

.cleanContact .form-control-custom::placeholder {
    color: #a7ccd1;
    opacity: 1;
}

.cleanContact .form-control-custom option {
    color: var(--black);
    background: var(--white);
}

.cleanContact input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    inset: 0;
    position: absolute;
    width: auto;
    color: transparent;
    cursor: pointer;
}

.cleanContact input[type="date"] {
    position: relative;
}

.cleanContact .search-btn {
    background-color: var(--brand-light);
    color: var(--white);
    border: none;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform var(--transition), background var(--transition);
    cursor: pointer;
}

.cleanContact .search-btn:hover {
    transform: scale(1.08);
    background-color: #c1e44d;
}

/* ─── 7. SERVICES SLIDER ──────────────────────────────────────── */
.ProfessionalSection {
    padding: var(--section-py) 0;
}

.cleaning-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    margin: 15px;
    transition: transform var(--transition);
}

.cleaning-card:hover {
    transform: translateY(-10px);
}

.card-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cleaning-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: var(--white);
}

.card-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: var(--white);
}

.arrow-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border: 1.5px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: rotate(-35deg);
    transition: transform var(--transition);
}

.cleaning-card:hover .arrow-icon {
    transform: rotate(0deg);
}

.card-body-content {
    padding: 24px 20px;
}

.service-list {
    list-style: disc;
    margin-bottom: 20px;
    min-height: 110px;
    padding-left: 20px;
}

.service-list li {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.services-slider .btn-book {
    background-color: #1a6370;
    color: var(--white);
    display: block;
    width: 100%;
    border-radius: 8px;
    padding: 10px;
    font-weight: 400;
    border: none;
    margin-bottom: 10px;
    transition: opacity var(--transition);
    text-align: center;
}

.services-slider .btn-phone {
    background-color: #bad35e;
    color: var(--white);
    width: 100%;
    border-radius: 8px;
    padding: 10px;
    font-weight: 400;
    border: none;
    font-size: 0.9rem;
    display: block;
    text-align: center;
}

.services-slider .btn-book:hover,
.services-slider .btn-phone:hover {
    opacity: 0.88;
    color: var(--white);
}

.services-slider .slick-track { display: flex !important; }
.services-slider .slick-slide { height: inherit !important; }

/* ─── 8. WHY CHOOSE US ────────────────────────────────────────── */
.hyssopDifference-section {
    padding: var(--section-py) 0;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform var(--transition);
}

.icon-box:hover {
    transform: translateY(-8px);
}

.icon-circle {
    width: 90px;
    height: 90px;
    background-color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(92, 178, 185, 0.2);
}

.icon-circle img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.icon-box h6 {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0 8px;
    text-align: center;
    max-width: 160px;
}

/* ─── 9. INDUSTRIES SECTION ───────────────────────────────────── */
.industry-section {
    padding: var(--section-py) 0;
}

.industry-grid {
    display: flex;
    height: 680px;
    width: 100%;
}

.industry-panel {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: flex var(--transition), filter var(--transition);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 300px;
}

.industry-panel:hover {
    flex: 1.6;
    filter: brightness(1.08);
}

.teal-bg {
    background-color: #54B4BA;
}

.industry-panel h3 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.4rem;
    z-index: 2;
    padding: 0 10px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.industry-panel:hover .overlay {
    background: rgba(0, 0, 0, 0.36);
}

/* ─── 10. TESTIMONIALS ────────────────────────────────────────── */
.testimonial-section {
    padding: var(--section-py) 0;
}

.testimonial-card {
    background-color: #D9D9D9;
    border-radius: 22px;
    padding: 32px 28px;
    min-height: 320px;
    transition: transform var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.user-name {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0;
}

.user-role {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--black);
    margin-bottom: 0;
}

.feedback {
    font-weight: 300;
    line-height: 1.65;
    color: var(--black);
    margin-top: 14px;
    font-size: 1.1rem;
}

.slider-controls {
    position: relative;
    margin-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swiper-button-next-custom,
.swiper-button-prev-custom {
    cursor: pointer;
    transition: opacity var(--transition);
    display: inline-flex;
}

.swiper-button-next-custom:hover,
.swiper-button-prev-custom:hover {
    opacity: 0.55;
}

/* ─── 11. CTA SECTION ─────────────────────────────────────────── */
.cta-section {
    background-color: var(--theme-color);
    padding: 80px 0;
}

.cta-section .cta-title {
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 3rem);
    letter-spacing: -0.5px;
    color: var(--white);
}

.cta-section .cta-subtitle {
    font-weight: 200;
    font-size: clamp(1rem, 2vw, 1.375rem);
    line-height: 1.55;
    color: var(--white);
}

.cta-buttons .btn-quote {
    background-color: var(--text-color);
    color: var(--white);
    font-weight: 500;
    padding: 14px 36px;
    border-radius: 12px;
    border: none;
    font-size: 1.05rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: all var(--transition);
}

.cta-buttons .btn-quote:hover {
    background-color: #144a4e;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.cta-buttons .btn-contact {
    background-color: transparent;
    color: var(--white);
    font-weight: 500;
    padding: 14px 36px;
    border-radius: 12px;
    border: 2px solid var(--white);
    font-size: 1.05rem;
    transition: all var(--transition);
}

.cta-buttons .btn-contact:hover {
    background-color: var(--white);
    color: var(--theme-color);
    transform: translateY(-3px);
}

/* ─── 12. FOOTER ──────────────────────────────────────────────── */
.footer-section {
    padding-top: 60px;
    padding-bottom: 36px;
}

.footer-logo {
    display: block;
    max-width: 220px;
}

.footer-text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--black);
    font-weight: 300;
    max-width: 320px;
}

.footer-heading {
    font-weight: 700;
    color: var(--black);
    font-size: 1.25rem;
}

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

.footer-links a {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black);
    font-weight: 300;
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: #1a5e63;
    padding-left: 4px;
}

.footer-contact-link {
    color: var(--black);
    font-weight: 400;
    font-size: 1rem;
    transition: color var(--transition);
}

.footer-contact-link:hover {
    color: #1a5e63;
}

.teal-icon {
    color: #1a5e63;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-divider {
    border-top: 1.5px solid #d9d9d9;
    opacity: 1;
}

.small-text {
    font-size: 0.875rem;
    color: var(--black);
    font-weight: 300;
}

.small-text a {
    color: var(--text-color);
    font-weight: 500;
}

.footer-bottom-links li {
    list-style: none;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: var(--black);
    font-weight: 300;
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: #1a5e63;
}

/* ─── 13. INNER PAGE — BANNERS ────────────────────────────────── */
.inner-banner {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-title {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
}

.banner-text {
    font-size: clamp(0.9rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.BookBanner {
    background-image: linear-gradient(rgba(0,0,0,0.48), rgba(0,0,0,0.48)),
                      url('../images/inner-banner/booking-form.jpg');
    background-size: cover;
    background-position: center;
}

.AboutBanner {
    background-image: linear-gradient(rgba(0,0,0,0.48), rgba(0,0,0,0.48)),
                      url('../images/inner-banner/about-us-banner.jpg');
    background-size: cover;
    background-position: center;
}

.Contact-banner {
    background-image: linear-gradient(rgba(0,0,0,0.48), rgba(0,0,0,0.48)),
                      url('../images/inner-banner/contact-banner.jpg');
    background-size: cover;
    background-position: center;
}

.ServiceBanner {
    background-image: linear-gradient(rgba(0,0,0,0.48), rgba(0,0,0,0.48)),
                      url('../images/inner-banner/service-banner.jpg');
    background-size: cover;
    background-position: center;
}

/* ─── SERVICES PAGE ───────────────────────────────────────────── */
.service-block {
    padding: 60px 0;
    border-bottom: 1px solid #f0f0f0;
}
.service-block:last-child { border-bottom: none; }

.service-number {
    font-size: 4rem;
    font-weight: 900;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: -10px;
}

.service-list-inner {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.service-list-inner li {
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-list-inner li:last-child { border-bottom: none; }
.service-list-inner li::before {
    content: '';
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: #2DA3AB;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2DA3AB;
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 8px;
    border: none;
}
.btn-service:hover {
    background: #135A6C;
    color: #fff;
    transform: translateY(-2px);
}

.perk-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 16px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid #f0f0f0;
}
.perk-icon {
    font-size: 2rem;
    color: #2DA3AB;
    display: block;
    margin-bottom: 12px;
}
.perk-title {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.95rem;
}
.perk-text {
    font-size: 0.83rem;
    color: #888;
    margin: 0;
}

/* ─── ABOUT PAGE ──────────────────────────────────────────────── */
.services-section {
    padding: var(--section-py) 0;
}

.services-section p.text-muted a {
    color: var(--black);
    font-weight: 400;
    text-decoration: underline !important;
}

.image-container {
    position: relative;
    padding: 10px;
}

/* ─── CONTACT PAGE ────────────────────────────────────────────── */
.contact-section {
    padding: var(--section-py) 0;
}

.main-heading {
    font-weight: 800;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -1px;
    font-size: clamp(1.75rem, 4vw, 3rem);
}

.sub-heading {
    color: #175d69;
    font-weight: 500;
    font-size: 1.1rem;
}

.icon-box-contact {
    background-color: #64bcc2;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--white);
    font-size: 1.35rem;
    transition: transform var(--transition);
}

.contact-item:hover .icon-box-contact {
    transform: scale(1.08);
}

.contact-img {
    border-radius: 40px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #7F8381;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    display: block;
}

.border-bottom-custom {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

/* ─── CONTACT FORM ────────────────────────────────────────────── */
.appointment-section {
    padding: var(--section-py) 0;
}

.section-title {
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--black);
}

.CntctForm .form-label {
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.CntctForm .custom-input {
    background-color: #eeeeee !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 0.95rem;
    color: #555 !important;
    height: 50px;
    font-family: 'Made-Tommy-Soft', sans-serif;
}

.CntctForm .custom-input::placeholder {
    color: #aaa;
}

.CntctForm .custom-input:focus {
    box-shadow: 0 0 0 2px #175d69 !important;
    outline: none;
}

.CntctForm textarea.form-control.custom-input {
    height: auto;
    resize: vertical;
}

.CntctForm .btn-book {
    background-color: #175d69;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: all var(--transition);
    border: none;
    padding: 14px 30px;
}

.CntctForm .btn-book:hover {
    background-color: #11464f;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* ─── BOOKING PAGE ────────────────────────────────────────────── */
.booking-section {
    padding: var(--section-py) 0;
}

.form-card {
    background: var(--white);
    border-radius: 22px;
    padding: 48px;
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid #eee;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.BookingFrm .form-control,
.BookingFrm .form-select {
    border-radius: 10px;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
    background-color: var(--white);
    height: 50px;
    font-family: 'Made-Tommy-Soft', sans-serif;
}

.BookingFrm .form-control::placeholder {
    color: #ccc;
    font-weight: 300;
}

.BookingFrm .form-control:focus,
.BookingFrm .form-select:focus {
    box-shadow: 0 0 8px rgba(23, 93, 105, 0.2);
    border-color: var(--text-color);
    outline: none;
}

.BookingFrm .btn-quote {
    background-color: var(--text-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all var(--transition);
    border: none;
    padding: 14px 30px;
}

.BookingFrm .btn-quote:hover {
    background-color: #11464f;
    color: var(--white);
    transform: translateY(-2px);
}

.feature-item {
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 4px;
    font-weight: 300;
}

.themeBTns {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    background: var(--brand-dark);
    padding: 10px 24px;
    border-radius: 8px;
    display: inline-block;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}

.themeBTns:hover {
    background: var(--black);
    color: var(--white);
}

.Banner-btns {}

.check-icon {
    color: var(--text-color);
    font-weight: bold;
    margin-right: 8px;
}

.disclaimer {
    font-size: 0.95rem;
    color: #7F8381;
    font-weight: 400;
}

.contact-text {
    font-size: 0.95rem;
    color: #555;
}

.contact-text a {
    color: var(--black);
    font-weight: 500;
}

/* ─── AUTOCOMPLETE SUGGESTION ─────────────────────────────────── */
.suggestion-box {
    max-height: 160px;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.suggestion-item {
    padding: 8px 14px;
    cursor: pointer;
    color: var(--black);
    font-size: 0.9rem;
    transition: background var(--transition);
}

.suggestion-item:hover,
.suggestion-item.active {
    background: #f0f8f8;
    color: var(--brand-dark);
}

/* ─── 14. MEDIA QUERIES ───────────────────────────────────────── */

/* — ≤1366px — */
@media (max-width: 1366px) {
    .container { max-width: 1200px; }
}

/* — ≤1199px — */
@media (max-width: 1199.98px) {
    .container { max-width: 960px; }
    .feedback  { font-size: 1rem; }
    .testimonial-card { min-height: 300px; }
    .industry-grid { height: 580px; }
}

/* — ≤991px — */
@media (max-width: 991.98px) {
    .container   { max-width: 720px; }
    :root        { --section-py: 70px; }

    body { padding-top: 68px; }

    .hero-section { padding: 110px 0; min-height: auto; }
    .industry-grid { height: auto; flex-direction: column; }
    .industry-panel { height: 260px; flex: none; width: 100%; }
    .industry-panel:hover { flex: none; filter: brightness(1.08); }

    .footer-text { max-width: 100%; }
}

/* — ≤767px — */
@media (max-width: 767.98px) {
    .container { max-width: 100%; }
    :root       { --section-py: 56px; }

    body { padding-top: 62px; }

    /* Hero */
    .hero-section { padding: 90px 0; }
    .hero-description { font-size: 0.875rem; }

    /* Search widget stacks vertically */
    .cleanContact.search-widget {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        align-items: stretch;
    }
    .cleanContact .search-col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        width: 100%;
        padding: 12px 0;
    }
    .cleanContact .search-col.LastborderRemover { border-bottom: none; }
    .cleanContact .ps-3 { padding: 0 !important; width: 100%; }
    .cleanContact .search-btn {
        width: 100%;
        margin-top: 14px;
        border-radius: 12px;
        height: 46px;
        min-width: auto;
    }

    /* Industry panels */
    .industry-panel { height: 220px; }

    /* Footer */
    .footer-section { text-align: center; }
    .footer-logo { margin: 0 auto; }
    .footer-text { margin: 0 auto; }
    .footer-section .d-flex { justify-content: center; }
    .footer-section .contact-info .d-flex { justify-content: flex-start; }
    .footer-bottom-links { justify-content: center !important; }

    /* Testimonial */
    .testimonial-card { min-height: auto; padding: 22px 18px; }
    .feedback { font-size: 0.95rem; }

    /* Form card */
    .form-card { padding: 26px 18px; }

    /* CTA buttons */
    .cta-buttons { flex-direction: column !important; }
    .cta-buttons .btn-quote,
    .cta-buttons .btn-contact { width: 100%; max-width: 340px; margin: 0 auto; }

    /* Icon circle smaller on mobile */
    .icon-circle { width: 72px; height: 72px; }
    .icon-box h6 { font-size: 0.82rem; }
}

/* — ≤575px — */
@media (max-width: 575.98px) {
    :root { --section-py: 48px; }
    .hero-section { padding: 80px 0; }
    .industry-panel { height: 190px; }
    .industry-panel h3 { font-size: 1rem; }
    .banner-title { font-size: 1.75rem; }
    .banner-text  { font-size: 0.9rem; }
    .inner-banner { min-height: 280px; }
}

/* ─── PRINT ───────────────────────────────────────────────────── */
@media print {
    .Customheader, .cta-section, footer { display: none; }
    body { font-size: 12pt; }
}
