@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --theme-orange: #ff6b00; /* Vibrant Orange from theme */
    --theme-dark: #2a2c38;   /* Deep Navy/Black */
    --theme-text: #666666;
    --theme-gray: #f4f5f8;
    --theme-light: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--theme-text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-outfit {
    font-family: 'Outfit', sans-serif;
    color: var(--theme-dark);
}

/* Utilities */
.text-orange { color: var(--theme-orange) !important; }
.text-dark-theme { color: var(--theme-dark) !important; }
.bg-orange { background-color: var(--theme-orange) !important; }
.bg-dark-theme { background-color: var(--theme-dark) !important; }
.bg-gray { background-color: var(--theme-gray) !important; }
.section-padding { padding: 90px 0; }
/* Faster transitions */
.transition { transition: all 0.25s ease-in-out; }

/* Top Bar */
.top-bar {
    background-color: var(--theme-dark);
    font-size: 13px;
    color: #a0a0a0;
}
.top-bar .container {
    display: flex; justify-content: space-between; align-items: stretch;
}
.top-bar-left {
    display: flex; align-items: center; padding: 10px 0;
}
.top-bar-right {
    display: flex; align-items: stretch;
}
.top-bar-social {
    display: flex; align-items: center; padding: 0 20px;
}
.top-bar a, .top-bar span { color: #a0a0a0; text-decoration: none; }
.top-bar i { color: var(--theme-orange); margin-right: 6px; }
.top-bar-btn {
    background-color: var(--theme-orange);
    color: #fff !important;
    padding: 0 25px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    display: flex; align-items: center;
    transition: 0.25s;
}
.top-bar-btn:hover { background-color: #fff; color: var(--theme-dark) !important; }

/* Navbar */
.navbar { transition: all 0.25s; background: #fff; }
.navbar.scrolled {
    position: fixed; top: 0; width: 100%; z-index: 1030;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); padding: 0;
}
.navbar-brand img { transition: height 0.25s; }
.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--theme-dark) !important;
    font-size: 14.5px;
    margin: 0 10px;
    position: relative;
    padding: 25px 0 !important;
}
.nav-link:hover { color: var(--theme-orange) !important; }

/* Dynamic Slider Effects */
.hero-slider-section {
    position: relative;
    padding-bottom: 0px; 
}
.hero-slider-section .carousel-item {
    height: 90vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(42, 44, 56, 0.45);
}
.hero-content { position: relative; z-index: 2; height: 100%; }

/* Hero Slider Navigation */
.ctrl-box {
    display: flex; align-items: center; justify-content: center;
    width: 50px; height: 50px; background: rgba(42, 44, 56, 0.85);
    color: #fff; font-size: 20px; transition: 0.25s;
}
.carousel-control-prev, .carousel-control-next { opacity: 1; width: 5%; z-index: 5; }
.carousel-control-prev { justify-content: flex-start; }
.carousel-control-next { justify-content: flex-end; }
.carousel-control-prev:hover .ctrl-box, .carousel-control-next:hover .ctrl-box {
    background: var(--theme-orange);
}

/* Hero Booking Form (Exact Match) */
.hero-booking-wrap {
    position: absolute; bottom: 0; left: 0; width: 100%; z-index: 10;
}
.booking-tab {
    display: inline-block; background: var(--theme-orange); color: #fff;
    padding: 12px 25px; font-family: 'Inter', sans-serif; font-weight: 700;
    font-size: 16px; border-radius: 4px 4px 0 0;
}
.booking-inner {
    background: var(--theme-dark);
}
.booking-inner input {
    color: var(--theme-dark);
}
.booking-inner input::placeholder {
    color: #999;font-size:14px;
}

/* Hero Buttons */
.btn-theme-orange {
    background: var(--theme-orange); color: #fff; padding: 14px 35px;
    font-weight: 700; font-family: 'Inter', sans-serif;
    border-radius: 2px; display: inline-block; border: none;
    transition: 0.25s ease;
}
.btn-theme-orange:hover { background: var(--theme-dark); color: #fff; }
.btn-theme-dark {
    background: var(--theme-dark); color: #fff; padding: 14px 35px;
    font-weight: 700; font-family: 'Inter', sans-serif;
    border-radius: 2px; display: inline-block; border: 1px solid var(--theme-dark); 
    transition: 0.25s ease;
}
.btn-theme-dark:hover { background: var(--theme-orange); border-color: var(--theme-orange); color: #fff; }

.btn-outline-white {
    background: transparent; border: 2px solid #fff; color: #fff; padding: 12px 33px;
    font-weight: 700; font-family: 'Inter', sans-serif;
    border-radius: 2px; display: inline-block; 
    transition: 0.25s ease;
}
.btn-outline-white:hover { background: #fff; color: var(--theme-dark); }

/* Section Titles */
.sec-subtitle { color: var(--theme-orange); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; margin-bottom: 10px; display: block; }
.sec-title { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }

/* About Us Sub-Section */
.about-img-wrap { position: relative; padding-bottom: 40px; padding-right: 40px; }
.about-img-main { border-radius: 4px; width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.about-img-small {
    position: absolute; bottom: 0; right: 0; width: 50%;
    border: 10px solid #fff; border-radius: 4px; box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.about-list { list-style: none; padding: 0; margin: 30px 0; }
.about-list li { margin-bottom: 15px; font-weight: 600; color: var(--theme-dark); display: flex; align-items: flex-start; }
.about-list li i { color: var(--theme-orange); font-size: 18px; margin-right: 15px; margin-top: 4px; }

/* 3 Slanted Panels */
.slanted-wrapper { display: flex; width: 100%; height: 400px; margin-top: 50px; background: #000; overflow: hidden; }
.slant-panel {
    flex: 1; position: relative; background-size: cover !important; background-position: center !important;
    transition: all 0.25s ease-in-out; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
/* Fixed Image Paths - using ../assets/img/ */
.slant-panel:nth-child(1) { background: url('../assets/img/proj-1.jpg'); clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%); z-index: 3; }
.slant-panel:nth-child(2) { background: url('../assets/img/proj-2.jpg'); clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); margin-left: -5%; z-index: 2; }
.slant-panel:nth-child(3) { background: url('../assets/img/proj-3.jpg'); clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%); margin-left: -5%; z-index: 1; }

.slant-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(42, 44, 56, 0.7); transition: 0.25s ease-in-out; }
.slant-panel:hover .slant-overlay { background: rgba(255, 107, 0, 0.85); }
.slant-content { position: relative; z-index: 2; text-align: center; color: #fff; }
.slant-content h3 { color: #fff; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; font-size: 24px; transition: 0.25s ease; margin-bottom: 0px; }
.slant-content .dot { display: inline-block; width: 10px; height: 10px; background: var(--theme-orange); border-radius: 50%; margin-top: 15px; transition: 0.25s ease; }
.slant-panel:hover .dot { background: #fff; transform: scale(1.5); }
.slant-panel i { transition: 0.25s ease; }
.slant-panel:hover i { transform: translateY(-5px); color: #fff !important; }

/* Service Icons */
.service-icon-box { text-align: center; padding: 30px 20px; transition: all 0.25s ease; cursor: pointer; }
.icon-bulb {
    width: 90px; height: 90px; border-radius: 50%; background: var(--theme-dark);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 25px;
    position: relative; transition: all 0.25s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.icon-bulb i { font-size: 35px; color: #fff; transition: 0.25s ease; }
.icon-bulb::after {
    content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%);
    width: 30px; height: 12px; background: var(--theme-orange); border-radius: 0 0 15px 15px;
    transition: 0.25s ease;
}
.service-icon-box:hover .icon-bulb { background: var(--theme-orange); transform: translateY(-8px); }
.service-icon-box:hover .icon-bulb::after { background: var(--theme-dark); }
.service-icon-box:hover h4 { color: var(--theme-orange); }

/* Banner Overlay Section */
.banner-section {
    position: relative; background: url('../assets/img/why-us.jpg') center/cover no-repeat fixed;
    padding: 100px 0; margin-top: 60px;
}
.banner-overlay-box {
    background: #fff; padding: 60px 50px; border-radius: 4px; position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-left: 5px solid var(--theme-orange);
}

/* Projects Gallery */
.gallery-filters { list-style: none; padding: 0; text-align: center; margin-bottom: 40px; }
.gallery-filters li { display: inline-block; margin: 0 10px; font-weight: 700; cursor: pointer; color: var(--theme-dark); font-family: 'Outfit'; padding: 5px 15px; text-transform: uppercase; transition: 0.25s ease; }
.gallery-filters li.active, .gallery-filters li:hover { color: var(--theme-orange); }

.project-grid .col-md-3 { padding: 0; }
.project-item { position: relative; overflow: hidden; cursor: pointer; }
.project-item img { width: 100%; height: 280px; object-fit: cover; transition: 0.4s ease-in-out; }
.project-item-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 107, 0, 0.85); opacity: 0; transition: 0.25s ease;
    display: flex; align-items: center; justify-content: center; transform: scale(0.9);
}
.project-item:hover img { transform: scale(1.05); }
.project-item:hover .project-item-overlay { opacity: 1; transform: scale(1); }
.project-icon { width: 50px; height: 50px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--theme-orange); font-size: 20px; transition: 0.25s ease; }
.project-item:hover .project-icon { transform: rotate(90deg); }

/* Stats Bar */
.stats-bar { background: var(--theme-dark); padding: 50px 0; color: #fff; }
.stats-bar h3 { color: #fff; margin-bottom: 0; font-size: 24px; }
.stat-counter { text-align: center; border-left: 1px solid rgba(255,255,255,0.1); }
.stat-counter h2 { color: var(--theme-orange); font-size: 40px; font-weight: 800; margin-bottom: 5px; }
.stat-counter p { text-transform: uppercase; font-size: 13px; font-weight: 700; letter-spacing: 1px; margin-bottom: 0; }

/* Deep Navy "Why Choose Us" Section */
.bg-deep-navy { background-color: #0b1d2e; }
.feature-card {
    background-color: #172c41; /* Slightly lighter navy for contrast */
    padding: 24px;
    border-radius: 6px;
    height: 100%;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.02);
}
.feature-card:hover { transform: translateY(-5px); background-color: #1c334d; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.feature-icon-wrapper { color: var(--theme-orange); font-size: 22px; width: 40px; }
.review-float-box {
    position: absolute;
    bottom: 20%;
    left: -40px;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    max-width: 250px;
    z-index: 5;
}
.tracking-wider { letter-spacing: 2px; }

/* Floating Footer Form Overlap */
.footer-overlap { position: relative; margin-top: -70px; z-index: 10; padding: 0 15px; }
.newsletter-box {
    background: var(--theme-orange); padding: 40px 50px; border-radius: 4px;
    display: flex; align-items: center; justify-content: space-between; box-shadow: 0 15px 30px rgba(255, 107, 0, 0.3);
    flex-wrap: wrap; gap: 20px;
}
.newsletter-box h3 { color: #fff; margin: 0; font-size: 26px; font-weight: 800; }
.newsletter-form { display: flex; width: 100%; max-width: 450px; }
.newsletter-form input { border: none; padding: 15px 20px; outline: none; flex: 1; border-radius: 2px 0 0 2px; }
.newsletter-form button { background: var(--theme-dark); color: #fff; border: none; padding: 0 25px; font-weight: 700; border-radius: 0 2px 2px 0; transition: 0.25s; }
.newsletter-form button:hover { background: #111; }

/* Footer */
.footer-main { background: var(--theme-dark); color: #999; padding: 110px 0 30px 0; font-size: 14px; margin-top: -60px; }
.footer-logo { max-width: 160px; margin-bottom: 25px; border-radius: 4px; padding: 5px; background: #fff; }
.footer-title { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 25px; font-family: 'Outfit'; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links li a { color: #999; text-decoration: none; transition: 0.25s; display: inline-block; }
.footer-links li a:hover { color: var(--theme-orange); transform: translateX(5px); }
.footer-contact { padding: 0; list-style: none; }
.footer-contact li { display: flex; margin-bottom: 15px; }
.footer-contact li i { color: var(--theme-orange); font-size: 18px; margin-right: 15px; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 0 0 0; margin-top: 50px; }

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* ---------- Tablet Landscape & Below (max-width: 1199px) ---------- */
@media (max-width: 1199px) {
    .hero-slider-section .carousel-item h1 {
        font-size: 3.8rem !important;
    }
    .sec-title {
        font-size: 2.1rem;
    }
    .banner-overlay-box {
        padding: 40px 35px;
    }
    .review-float-box {
        left: -20px;
        max-width: 220px;
        padding: 20px;
    }
}

/* ---------- Tablet Portrait & Below (max-width: 991px) ---------- */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    /* Navbar */
    .navbar {
        padding: 8px 0 !important;
    }
    .navbar-collapse {
        background: #fff;
        padding: 15px 20px;
        border-top: 1px solid #eee;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }
    .nav-link {
        padding: 12px 0 !important;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
    .navbar-toggler {
        padding: 8px 12px;
    }

    /* Hero */
    .hero-slider-section .carousel-item {
        height: 70vh;
        min-height: 500px;
    }
    .hero-slider-section .carousel-item h1 {
        font-size: 3rem !important;
    }
    .hero-slider-section .carousel-item h5 {
        font-size: 14px !important;
    }

    /* Booking Form */
    .hero-booking-wrap {
        position: relative;
    }
    .booking-inner {
        padding: 25px !important;
    }
    .booking-inner .row .col-md-3,
    .booking-inner .row .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* About */
    .about-img-wrap {
        padding-right: 20px;
        padding-bottom: 20px;
        max-width: 80%;
        margin: 0 auto;
    }

    /* Slanted Panels */
    .slanted-wrapper {
        flex-direction: column;
        height: auto;
        margin-top: 30px;
    }
    .slant-panel {
        height: 200px;
    }
    .slant-panel:nth-child(1),
    .slant-panel:nth-child(2),
    .slant-panel:nth-child(3) {
        clip-path: none;
        margin-left: 0;
    }

    /* Banner */
    .banner-section {
        margin-top: 40px;
        padding: 60px 0;
    }
    .banner-overlay-box {
        padding: 35px 30px;
    }
    .banner-overlay-box h2 {
        font-size: 1.8rem !important;
    }

    /* Stats */
    .stat-counter {
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 20px;
    }
    .stat-counter:last-child {
        border-bottom: none;
    }

    /* Why Choose Us */
    .bg-deep-navy h2 {
        font-size: 2rem !important;
    }
    .review-float-box {
        display: none !important;
    }

    /* Newsletter */
    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .newsletter-box h3 {
        font-size: 22px;
    }
    .newsletter-form {
        max-width: 100%;
    }

    /* Footer */
    .footer-main {
        padding-top: 80px;
    }
    .footer-overlap {
        margin-top: -50px;
    }
}

/* ---------- Small Tablets / Large Phones (max-width: 767px) ---------- */
@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }

    /* Hero */
    .hero-slider-section .carousel-item {
        height: 60vh;
        min-height: 400px;
    }
    .hero-slider-section .carousel-item h1 {
        font-size: 2.4rem !important;
        line-height: 1.15 !important;
    }
    .hero-slider-section .carousel-item h5 {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }
    .hero-content {
        padding: 0 15px;
    }

    /* Carousel controls */
    .ctrl-box {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    /* Booking Form */
    .booking-tab {
        font-size: 14px;
        padding: 10px 20px;
    }
    .booking-inner {
        padding: 20px !important;
    }
    .booking-inner .row .col-md-3,
    .booking-inner .row .col-md-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Section Titles */
    .sec-title {
        font-size: 1.8rem;
    }
    .sec-subtitle {
        font-size: 12px;
    }

    /* About Section */
    #about {
        margin-top: 0 !important;
    }
    #about .container {
        padding-top: 20px !important;
    }
    .about-img-wrap {
        max-width: 100%;
        padding-right: 30px;
        padding-bottom: 30px;
    }
    .about-img-small {
        width: 45%;
        border-width: 5px;
    }

    /* Slanted Panels */
    .slanted-wrapper {
        margin-top: 20px;
    }
    .slant-panel {
        height: 180px;
    }
    .slant-content h3 {
        font-size: 18px;
        letter-spacing: 1px;
    }
    .slant-content .dot {
        width: 8px;
        height: 8px;
        margin-top: 10px;
    }

    /* Services */
    .service-icon-box {
        padding: 25px 15px;
    }
    .icon-bulb {
        width: 75px;
        height: 75px;
    }
    .icon-bulb i {
        font-size: 28px;
    }

    /* Banner */
    .banner-section {
        padding: 50px 0;
        margin-top: 30px;
        background-attachment: scroll;
    }
    .banner-overlay-box {
        padding: 30px 25px;
        border-left-width: 4px;
    }
    .banner-overlay-box h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    /* Projects */
    .gallery-filters li {
        margin: 0 5px;
        padding: 5px 10px;
        font-size: 13px;
    }
    .project-item img {
        height: 220px;
    }

    /* Stats */
    .stats-bar {
        padding: 35px 0;
    }
    .stats-bar h3 {
        font-size: 20px;
        margin-bottom: 10px !important;
    }
    .stat-counter h2 {
        font-size: 32px;
    }

    /* Why Choose Us */
    .bg-deep-navy {
        padding-bottom: 60px !important;
    }
    .bg-deep-navy h2 {
        font-size: 1.7rem !important;
    }
    .feature-card {
        padding: 18px;
    }

    /* Newsletter */
    .footer-overlap {
        margin-top: -40px;
    }
    .newsletter-box {
        padding: 25px 20px;
    }
    .newsletter-box h3 {
        font-size: 20px;
    }
    .newsletter-form input {
        padding: 12px 15px;
        font-size: 14px;
    }
    .newsletter-form button {
        padding: 0 18px;
    }

    /* Footer */
    .footer-main {
        padding-top: 70px;
        font-size: 13px;
    }
    .footer-title {
        font-size: 18px;
        margin-bottom: 18px;
    }
    .footer-logo {
        max-width: 130px;
    }
}

/* ---------- Mobile Phones (max-width: 575px) ---------- */
@media (max-width: 575px) {
    .section-padding {
        padding: 40px 0;
    }

    /* Navbar */
    .navbar-brand img {
        height: 40px !important;
    }

    /* Hero */
    .hero-slider-section .carousel-item {
        height: 55vh;
        min-height: 350px;
    }
    .hero-slider-section .carousel-item h1 {
        font-size: 1.9rem !important;
        line-height: 1.2 !important;
    }
    .hero-slider-section .carousel-item h5 {
        font-size: 12px !important;
    }
    .hero-content.pb-5 {
        padding-bottom: 1rem !important;
    }

    /* Carousel controls */
    .ctrl-box {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 8%;
    }

    /* Booking */
    .booking-tab {
        font-size: 13px;
        padding: 8px 16px;
    }
    .booking-inner {
        padding: 15px !important;
    }

    /* Section Titles */
    .sec-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .sec-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    /* About */
    .about-img-wrap {
        padding-right: 20px;
        padding-bottom: 25px;
    }
    .about-img-small {
        width: 50%;
        border-width: 4px;
    }
    .about-list li {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .about-list li i {
        font-size: 15px;
        margin-right: 10px;
    }

    /* Chief Engineer row */
    #about .d-flex.align-items-center.mt-5 img {
        width: 100px !important;
    }

    /* Slanted Panels */
    .slant-panel {
        height: 150px;
    }
    .slant-content h3 {
        font-size: 16px;
    }
    .slant-content i {
        font-size: 1.5rem !important;
        margin-bottom: 8px !important;
    }

    /* Services */
    .service-icon-box {
        padding: 20px 10px;
    }
    .service-icon-box h4 {
        font-size: 1rem;
    }
    .icon-bulb {
        width: 65px;
        height: 65px;
        margin-bottom: 18px !important;
    }
    .icon-bulb i {
        font-size: 24px;
    }
    .icon-bulb::after {
        width: 24px;
        height: 10px;
    }

    /* Banner */
    .banner-section {
        padding: 40px 0;
        margin-top: 20px;
    }
    .banner-overlay-box {
        padding: 25px 20px;
    }
    .banner-overlay-box h2 {
        font-size: 1.3rem !important;
    }
    .btn-theme-orange,
    .btn-theme-dark {
        padding: 12px 25px;
        font-size: 13px;
    }

    /* Projects */
    .gallery-filters {
        margin-bottom: 25px;
    }
    .gallery-filters li {
        margin: 3px 4px;
        padding: 4px 8px;
        font-size: 12px;
    }
    .project-grid .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .project-item img {
        height: 160px;
    }

    /* Stats */
    .stats-bar {
        padding: 30px 0;
    }
    .stats-bar h3 {
        font-size: 18px;
    }
    .stat-counter h2 {
        font-size: 28px;
    }
    .stat-counter p {
        font-size: 11px;
    }

    /* Why Choose Us */
    .bg-deep-navy {
        padding-top: 40px !important;
        padding-bottom: 50px !important;
    }
    .bg-deep-navy h2 {
        font-size: 1.5rem !important;
    }
    .bg-deep-navy .display-5 {
        font-size: 1.5rem !important;
    }
    .feature-card {
        padding: 15px;
    }
    .feature-icon-wrapper {
        font-size: 18px;
        width: 32px;
    }
    .feature-card h5 {
        font-size: 14px !important;
    }
    .feature-card p {
        font-size: 12px !important;
    }

    /* Newsletter */
    .footer-overlap {
        margin-top: -35px;
        padding: 0 10px;
    }
    .newsletter-box {
        padding: 20px 15px;
        gap: 15px;
        border-radius: 6px;
    }
    .newsletter-box h3 {
        font-size: 18px;
    }
    .newsletter-box h3 span {
        font-size: 13px !important;
    }
    .newsletter-form input {
        padding: 10px 12px;
        font-size: 13px;
    }
    .newsletter-form button {
        padding: 0 15px;
    }

    /* Footer */
    .footer-main {
        padding-top: 60px;
        padding-bottom: 20px;
    }
    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .footer-logo {
        max-width: 110px;
        margin-bottom: 18px;
    }
    .footer-links li {
        margin-bottom: 8px;
        font-size: 13px;
    }
    .footer-contact li {
        margin-bottom: 12px;
    }
    .footer-contact li i {
        font-size: 15px;
        margin-right: 10px;
    }
    .footer-bottom {
        margin-top: 30px;
        padding-top: 18px;
    }
    .footer-bottom p {
        font-size: 12px;
    }
}

/* ---------- Very Small Phones (max-width: 375px) ---------- */
@media (max-width: 375px) {
    .hero-slider-section .carousel-item h1 {
        font-size: 1.6rem !important;
    }
    .sec-title {
        font-size: 1.3rem;
    }
    .booking-inner .form-control-lg {
        font-size: 13px !important;
        padding: 10px 12px !important;
    }
    .newsletter-box h3 {
        font-size: 16px;
    }
    .banner-overlay-box h2 {
        font-size: 1.15rem !important;
    }
    .project-item img {
        height: 130px;
    }
    .slant-panel {
        height: 130px;
    }
}

/* ---------- Hover states - disable on touch ---------- */
@media (hover: none) {
    .service-icon-box:hover .icon-bulb {
        transform: none;
        background: var(--theme-dark);
    }
    .service-icon-box:hover .icon-bulb::after {
        background: var(--theme-orange);
    }
    .service-icon-box:hover h4 {
        color: var(--theme-dark);
    }
    .feature-card:hover {
        transform: none;
    }
}
