/* ======================================================================
   POWER TOWING SERVICES - FULLY RESPONSIVE CSS
   Optimized for Desktop, Tablet, and Mobile devices
   ====================================================================== */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #dc2626;
    --primary-dark: #b91c1c;
    --secondary-color: #1f2937;
    --accent-color: #fbbf24;
    --white: #ffffff;
    --light-gray: #f9fafb;
    --medium-gray: #6b7280;
    --dark-gray: #111827;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

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

section {
    padding: 30px 0;
}

/* ===== Loading Screen ===== */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.truck-loader {
    font-size: 48px;
    color: var(--primary-color);
    animation: truck-move 1.5s ease-in-out infinite;
}

.loader-text {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

@keyframes truck-move {

    0%,
    100% {
        transform: translateX(-20px);
    }

    50% {
        transform: translateX(20px);
    }
}

/* ===== Navigation ===== */
.navbar {
    background: var(--white);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.nav-logo {
    height: 90px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo {
    height: 50px;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--secondary-color);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 16px !important;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.btn-call-nav {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transition: var(--transition);
    margin-left: 16px;
}

.btn-call-nav:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.btn-call-nav i {
    font-size: 18px;
}

.call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.call-text small {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
}

.call-text strong {
    font-size: 15px;
}

/* ===== Hero Banner ===== */
.hero-banner-section {
    position: relative;
    /* margin-top: 76px; */
}

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(17, 24, 39, 0.85) 100%),
        url('images/banners/b1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.badge-24-7 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.banner-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
}

.banner-title .highlight {
    color: var(--primary-color);
    display: block;
    font-size: 64px;
    line-height: 1.1;
}

.banner-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 650px;
    line-height: 1.7;
    font-weight: 400;
}

.banner-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 18px;
}

.banner-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
    white-space: nowrap;
}

.btn-primary-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.5);
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: var(--white);
    padding: 18px 36px;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-secondary-cta:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Trust Badges */
.trust-badges {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 24px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.badges-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.badge-item i {
    font-size: 24px;
    color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Quick Contact Bar ===== */
.quick-contact-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
}

.contact-bar-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-bar-title i {
    font-size: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.btn-contact-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.btn-contact-bar:hover {
    background: var(--light-gray);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* ===== Section Styles ===== */
.section-header {
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== About Section ===== */
.about-section {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--primary-color);
    color: var(--white);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.about-badge h4 {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.about-badge p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    margin-top: 4px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-box:hover {
    background: var(--white);
    box-shadow: var(--box-shadow-lg);
    transform: translateX(8px);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: var(--medium-gray);
    margin: 0;
}

/* ===== Services Section ===== */
.services-section {
    background: var(--light-gray);
}

.service-card {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.service-description {
    font-size: 15px;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--secondary-color);
}

.service-features i {
    color: var(--accent-color);
    font-size: 16px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 28px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}

.service-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== Why Choose Us ===== */
.why-choose-section {
    background: var(--white);
}

.why-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-8px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: var(--medium-gray);
    margin: 0;
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: var(--light-gray);
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* ===== Testimonials ===== */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    background: var(--white);
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-8px);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    color: var(--accent-color);
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.author-info p {
    font-size: 14px;
    color: var(--medium-gray);
    margin: 0;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--light-gray);
}

.contact-info-card {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-8px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 15px;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.form-control {
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    outline: none;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    margin: 16px 0 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ===== Scroll to Top ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.5);
}

/* ====================================================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZATIONS
   ==================================================================== */

/* Tablet (Portrait) */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px 0;
    }

    .nav-link {
        padding: 12px 0 !important;
    }

    .nav-link::after {
        left: 0;
        right: auto;
        width: 30px;
        bottom: 10px;
    }

    .btn-call-nav {
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
        justify-content: center;
    }

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

    .banner-title {
        font-size: 42px;
    }

    .banner-title .highlight {
        font-size: 48px;
    }

    .banner-subtitle {
        font-size: 17px;
    }

    .section-title {
        font-size: 36px;
    }

    .trust-badges {
        position: relative;
        margin-top: 40px;
    }
}

/* Mobile (Landscape & Portrait) */
@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }

    .nav-logo {
        height: 50px;
        max-width: 150px;
    }

    .navbar {
        padding: 10px 0;
    }

    /* .hero-banner-section {
        margin-top: 70px;
    } */

    .hero-banner {
        min-height: 550px;
        background-attachment: scroll;
        padding: 40px 0;
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-title .highlight {
        font-size: 38px;
    }

    .banner-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .badge-24-7 {
        font-size: 11px;
        padding: 6px 16px;
    }

    .banner-features {
        gap: 12px;
    }

    .feature-item {
        font-size: 13px;
    }

    .feature-item i {
        font-size: 16px;
    }

    .banner-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }

    .trust-badges {
        padding: 16px 0;
    }

    .badges-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .badge-item {
        font-size: 13px;
    }

    .badge-item i {
        font-size: 20px;
    }

    .quick-contact-bar {
        padding: 16px 0;
    }

    .contact-bar-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .btn-contact-bar {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }
    

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .about-image {
        min-height: 300px;
    }

    .about-badge {
        bottom: 16px;
        right: 16px;
        padding: 20px;
    }

    .about-badge h4 {
        font-size: 36px;
    }

    .about-badge p {
        font-size: 12px;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .feature-content h4 {
        font-size: 18px;
    }

    .service-card {
        padding: 28px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .service-title {
        font-size: 20px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .why-card h4 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 14px;
    }

    .gallery-image {
        height: 220px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 32px 20px;
    }

    .contact-form-wrapper h3 {
        font-size: 24px;
    }

    .btn-submit {
        width: 100%;
        padding: 14px 32px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-bottom-links {
        margin-top: 12px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .banner-title {
        font-size: 28px;
    }

    .banner-title .highlight {
        font-size: 32px;
    }

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

    .section-title {
        font-size: 24px;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        padding: 14px 20px;
        font-size: 14px;
    }

    .service-card,
    .why-card,
    .testimonial-card,
    .contact-info-card {
        margin-bottom: 20px;
    }
}

/* Very Small Devices (320px) */
@media (max-width: 374px) {
    .nav-logo {
        height: 45px;
        max-width: 130px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-title .highlight {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .badge-24-7 {
        font-size: 10px;
        padding: 5px 12px;
    }

    .feature-item {
        font-size: 12px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-description {
        font-size: 14px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-banner {
        min-height: 450px;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-title .highlight {
        font-size: 34px;
    }

    .trust-badges {
        padding: 12px 0;
    }

    .badges-wrapper {
        flex-direction: row;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .loader-wrapper,
    .scroll-to-top,
    .btn-call-nav,
    .btn-contact-bar,
    .btn-primary-cta,
    .btn-secondary-cta {
        display: none !important;
    }

    .hero-banner-section {
        margin-top: 0;
    }

    section {
        page-break-inside: avoid;
    }
}