/* customized.css - Specific styles for Contact page and additional overrides */
html, body {
    overflow-x: clip;
    width: 100%;
}
/* =========================================
   UNIFIED INNER PAGE BANNER STYLES
   ========================================= */
.page-banner {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-banner .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}
.page-banner .banner-content {
    position: relative;
    z-index: 1;
}
.page-banner h1 {
    color: #ffffff !important;
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.page-banner p {
    color: #f1f1f1 !important;
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Contact Page Banner */
.contact-banner {
    background-image: url('../img/Banner/img1.webp');
}



/* Contact Section */
.contact-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}
.contact-info-col, .contact-form-col {
    padding: 15px;
    flex: 1;
    min-width: 300px;
}
.contact-info-wrap {
    background: #1e293b;
    color: #f8fafc;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}
.contact-form-wrap {
    background: white;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}
.contact-info-wrap h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.contact-form-wrap h2 {
    margin-bottom: 20px;
}
.contact-desc {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}
.form-desc {
    margin-bottom: 30px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.info-item .icon {
    font-size: 26px;
    color: var(--c-gold, #d4af37);
    margin-right: 20px;
    margin-top: 3px; /* Align icon with heading */
}
.info-item .text h4 {
    color: #f8fafc;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}
.info-item .text p, .info-item .text a {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s;
}
.info-item .text a:hover {
    color: var(--c-gold, #d4af37);
}

/* Service Areas Bottom */
.service-areas-bottom {
    background: #f0f9ff; /* Light Pastel Blue */
    border: 1px solid #e0f2fe;
    padding: 45px 30px;
    border-radius: 12px;
    width: 100%;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.service-areas-bottom h4 {
    font-size: 1.3rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-areas-bottom p {
    color: #475569;
    font-size: 1.05rem;
}
.service-areas-bottom ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
.service-areas-bottom ul li {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}
.service-areas-bottom ul li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Colorful Pastel Pills (No border, softer look) */
.service-areas-bottom ul li:nth-child(1) { background: #e0f2fe; color: #0284c7; } /* Blue */
.service-areas-bottom ul li:nth-child(2) { background: #dcfce7; color: #16a34a; } /* Green */
.service-areas-bottom ul li:nth-child(3) { background: #ffedd5; color: #ea580c; } /* Orange */
.service-areas-bottom ul li:nth-child(4) { background: #f3e8ff; color: #9333ea; } /* Purple */
.service-areas-bottom ul li:nth-child(5) { background: #ffe4e6; color: #e11d48; } /* Red */

.service-areas-bottom .service-area-note {
    font-size: 0.9rem !important;
    color: #64748b !important;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Custom Form */
.custom-form .form-group {
    margin-bottom: 20px;
}
.custom-form .form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    background: white;
    font-family: var(--font-main, 'Inter', sans-serif);
}
.custom-form .form-control:focus {
    border-color: var(--c-gold, #d4af37);
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,0.25);
}
.custom-form .row-flex {
    display: flex;
    gap: 15px;
}
.custom-form .row-flex input {
    width: 50%;
}
.form-submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 15px;
    font-size: 1.1rem;
    text-align: center;
}

/* Premium Alert Modal */
.premium-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.premium-alert-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.premium-alert-box .alert-icon {
    font-size: 60px;
    color: #2C4C3B;
    margin-bottom: 20px;
}
.premium-alert-box h3 {
    margin-bottom: 10px;
    color: #333;
}
.premium-alert-box p {
    color: #666;
    margin-bottom: 25px;
}
.premium-alert-box .btn {
    padding: 10px 30px;
    border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-form .row-flex {
        flex-direction: column;
        gap: 20px;
    }
    .custom-form .row-flex input {
        width: 100%;
    }
    .contact-banner {
        padding: 60px 0;
    }
    .contact-banner h1 {
        font-size: 2.2rem;
    }
}

/* About Page Custom Styles */
.about-page-banner {
    background-image: url('../img/Banner/img1.webp');
}
.about-row {
    display: flex; flex-wrap: wrap; align-items: center;
}
.about-img-col {
    padding: 15px; flex: 1; min-width: 300px;
}
.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    padding: 20px;
}
.about-image-blob {
    width: 100%;
    height: 380px;
    background-image: url('../img/about/inner-abt.png');
    background-size: cover;
    background-position: center;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; /* Flower/Blob shape */
    animation: morph 8s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 40px;
    bottom: 40px;
    background: var(--c-gold, #d4af37);
    border-radius: 60% 40% 30% 70% / 50% 40% 60% 50%;
    animation: morph 8s ease-in-out infinite reverse;
    opacity: 0.3;
    z-index: 1;
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}
.about-image-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}
.about-image-badge i {
    font-size: 35px;
    color: var(--c-gold, #d4af37);
}
.about-image-badge span {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.2;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.about-content-col {
    padding: 15px; flex: 1; min-width: 300px;
}
.about-content h2 {
    margin-bottom: 20px;
}
.experience-section {
    background-color: #f9f9f9; padding: 70px 0;
}
.experience-section .text-center {
    text-align: center;
}
.experience-section h2 {
    margin-bottom: 20px;
}
.experience-desc {
    max-width: 800px; margin: 0 auto 40px auto;
}
/* Services Scroller */
.services-scroller {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 10px 40px 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
}
.services-scroller::-webkit-scrollbar {
    display: none;
}
.services-scroller:active {
    cursor: grabbing;
}
.service-creative-card {
    flex: 0 0 calc(25% - 15px); /* 4 in a row */
    scroll-snap-align: start;
    position: relative;
    border-radius: 15px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}
@media (max-width: 1200px) {
    .service-creative-card { flex: 0 0 calc(25% - 15px); height: 320px; }
}
@media (max-width: 991px) {
    .service-creative-card { flex: 0 0 calc(25% - 15px); height: 320px; }
}
@media (max-width: 767px) {
    .service-creative-card { flex: 0 0 calc(50% - 10px); height: 260px; border-bottom-right-radius: 40px; }
}
.service-creative-card:hover {
    transform: translateY(-10px);
}
.service-creative-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-creative-card:hover img {
    transform: scale(1.1);
}
.service-creative-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start; /* Align left */
    text-align: left; /* Align left */
    padding: 20px 15px;
    color: white;
}
.service-creative-overlay h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem; /* Smaller font for 6 columns */
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    position: relative;
}
.service-creative-overlay h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--c-gold);
    transition: width 0.3s ease;
}
.service-creative-card:hover .service-creative-overlay h3::after {
    width: 80px;
}
/* Serving Mission Section */
.serving-mission-section {
    padding: 70px 0;
}
.serving-mission-row {
    display: flex; flex-wrap: wrap; gap: 30px;
}
.serving-mission-col {
    flex: 1; min-width: 300px;
}
.content-box.dark-bg {
    background: #2C4C3B; color: white; padding: 40px; border-radius: 10px; height: 100%;
}
.content-box.dark-bg h3 {
    color: white; margin-bottom: 20px;
}
.content-box.dark-bg h3 i {
    color: var(--c-gold);
}
.content-box.dark-bg p {
    color: rgba(255,255,255,0.8);
}
.content-box.gold-bg {
    background: var(--c-gold); color: white; padding: 40px; border-radius: 10px; height: 100%;
}
.content-box.gold-bg h3 {
    color: white; margin-bottom: 20px;
}
.content-box.gold-bg h3 i {
    color: #2C4C3B;
}
.content-box.gold-bg p {
    color: rgba(255,255,255,0.9); font-size: 1.1rem; line-height: 1.8;
}
/* Commitment Section */
/* Premium Split Layout - Why Choose Us */
.premium-split-section {
    background-color: #fff;
    padding: 90px 0;
    overflow: hidden;
}
.premium-split-layout {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
}
.premium-split-left {
    width: 60%;
    padding-right: 40px;
}
.premium-split-right {
    width: 40%;
}
.split-features-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-feature-box {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding: 10px 0;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.split-feature-box:hover {
    transform: translateY(-5px);
}
.split-feature-box .icon-wrap {
    width: 65px; height: 65px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--c-gold, #d4af37);
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin-right: 25px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.split-feature-box:hover .icon-wrap {
    background: var(--c-gold, #d4af37);
    color: #fff;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
}
.feature-content h4 {
    font-size: 1.25rem; font-weight: 700; color: #2C4C3B; margin-bottom: 8px;
}
.feature-content p {
    color: #666; font-size: 0.95rem; line-height: 1.7; margin: 0;
}

.split-center-image {
    position: relative;
    width: 100%;
}
.split-center-image::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 95%; height: 95%;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: pulseBg 4s infinite alternate;
}
.image-blob-frame {
    position: relative;
    z-index: 1;
    border-radius: 40px 120px 40px 120px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 8px solid #fff;
    height: auto;
    aspect-ratio: 1/1;
    max-height: 400px;
}
.image-blob-frame img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s ease;
}
.image-blob-frame:hover img {
    transform: scale(1.08);
}
@keyframes pulseBg {
    0% { transform: translate(-50%, -50%) scale(0.95); }
    100% { transform: translate(-50%, -50%) scale(1.05); }
}
/* CTA Section */
.cta-section-about {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/Banner/img1.webp') center/cover no-repeat;
    color: white; text-align: center; padding: 100px 0;
}
.cta-section-about h2 {
    color: white; margin-bottom: 20px; font-size: 2.5rem;
}
.cta-section-about p {
    color: white; font-size: 1.2rem; margin-bottom: 30px;
}
.cta-buttons {
    display: flex; justify-content: center; gap: 15px; flex-wrap: wrap;
}
.btn-transparent-outline {
    background: transparent; border: 2px solid white; color: white;
}

/* =========================================
   SERVICES PAGE STYLES 
   ========================================= */

.services-page-banner {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/Banner/img1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.bg-light-gray {
    background-color: #f8f9fa;
}

/* Modern Service Blocks (Alternating layout without Bootstrap grid) */
.service-block-modern {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05); /* Softer shadow */
    margin-bottom: 50px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Dark Toned (Muted/Pastel) Backgrounds & Typography */
.service-block-modern:nth-child(1) { background: #115e59; } /* Dark Teal */
.service-block-modern:nth-child(1) h3, .service-block-modern:nth-child(1) .service-number { color: #ccfbf1; }
.service-block-modern:nth-child(1) p, .service-block-modern:nth-child(1) li, .service-block-modern:nth-child(1) .service-highlight, .service-block-modern:nth-child(1) strong { color: #99f6e4; }
.service-block-modern:nth-child(1) i { color: #5eead4; }

.service-block-modern:nth-child(2) { background: #1f2937; } /* Dark Charcoal */
.service-block-modern:nth-child(2) h3, .service-block-modern:nth-child(2) .service-number { color: #f8fafc; }
.service-block-modern:nth-child(2) p, .service-block-modern:nth-child(2) li, .service-block-modern:nth-child(2) .service-highlight, .service-block-modern:nth-child(2) strong { color: #cbd5e1; }
.service-block-modern:nth-child(2) i { color: #94a3b8; }

.service-block-modern:nth-child(3) { background: #14532d; }
.service-block-modern:nth-child(3) h3, .service-block-modern:nth-child(3) .service-number { color: #f0fdf4; }
.service-block-modern:nth-child(3) p, .service-block-modern:nth-child(3) li, .service-block-modern:nth-child(3) .service-highlight, .service-block-modern:nth-child(3) strong { color: #bbf7d0; }
.service-block-modern:nth-child(3) i { color: #86efac; }

.service-block-modern:nth-child(4) { background: #7c2d12; }
.service-block-modern:nth-child(4) h3, .service-block-modern:nth-child(4) .service-number { color: #fff7ed; }
.service-block-modern:nth-child(4) p, .service-block-modern:nth-child(4) li, .service-block-modern:nth-child(4) .service-highlight, .service-block-modern:nth-child(4) strong { color: #fed7aa; }
.service-block-modern:nth-child(4) i { color: #fdba74; }

.service-block-modern:nth-child(5) { background: #1e3a8a; }
.service-block-modern:nth-child(5) h3, .service-block-modern:nth-child(5) .service-number { color: #eff6ff; }
.service-block-modern:nth-child(5) p, .service-block-modern:nth-child(5) li, .service-block-modern:nth-child(5) .service-highlight, .service-block-modern:nth-child(5) strong { color: #bfdbfe; }
.service-block-modern:nth-child(5) i { color: #93c5fd; }

.service-block-modern:nth-child(6) { background: #7f1d1d; }
.service-block-modern:nth-child(6) h3, .service-block-modern:nth-child(6) .service-number { color: #fef2f2; }
.service-block-modern:nth-child(6) p, .service-block-modern:nth-child(6) li, .service-block-modern:nth-child(6) .service-highlight, .service-block-modern:nth-child(6) strong { color: #fecaca; }
.service-block-modern:nth-child(6) i { color: #fca5a5; }

@media (min-width: 992px) {
    .service-block-modern {
        position: sticky;
        top: 120px;
    }
}

.service-block-modern:hover {
    transform: translateY(-5px);
}
.service-block-modern.reverse {
    flex-direction: row-reverse;
}
.service-block-content {
    flex: 1 1 50%;
    padding: 30px 40px;
    min-width: 300px;
}
.service-block-image {
    flex: 1 1 50%;
    min-width: 300px;
    height: 100%;
    min-height: 250px;
}
.service-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}

/* Service Typography */
.service-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
    margin-bottom: 10px;
}
.service-block-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2C4C3B;
    margin-bottom: 20px;
}
.service-block-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.service-features-list li {
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
}
.service-features-list li i {
    color: var(--c-gold, #d4af37);
    margin-right: 10px;
}
.service-highlight {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px 20px;
    border-left: 4px solid var(--c-gold, #d4af37);
    border-radius: 4px;
    font-style: italic;
    color: #ffffff !important;
}

/* Near You Locations */
.locations-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.locations-tags span {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.locations-tags span:hover {
    background: #fff;
    color: var(--c-gold, #d4af37);
}

@media (max-width: 768px) {
    .service-block-modern {
        flex-direction: column;
    }
    .service-block-modern.reverse {
        flex-direction: column;
    }
    .service-block-content {
        padding: 30px 20px;
    }
    .service-features-list {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   OUR EXPERIENCE SECTION STYLES 
   ========================================= */

.experience-section {
    background-color: #9b59b68f; /* Requested transparent purple background */
    padding: 80px 0;
    margin: 40px 0;
    border-radius: 30px;
    color: #fff;
}
.experience-section h2, 
.experience-section .experience-desc {
    color: #fff;
}
.experience-section .subtitle-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Near You Modern Layout */
.locations-grid-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.location-card-modern {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #334155;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(50% - 15px);
    min-width: 200px;
}
.location-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.location-card-modern .icon-wrap {
    width: 35px;
    height: 35px;
    background: #fef9c3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ca8a04;
    font-size: 1.1rem;
}


/* Logo Pill Styling for Header */
.header .logo-container {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 6px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.header .logo-container img {
    height: 45px !important;
    width: auto;
    object-fit: contain;
}
.header .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.header .logo-expert {
    color: #D4A373 !important; /* Gold/Bronze */
    font-weight: 500 !important;
    font-size: 1.5rem !important;
    line-height: 1.1 !important;
    font-family: 'Kaushan Script', cursive;

}
.header .logo-painting {
    color: #0f4a3e !important; /* Dark teal/green */
    font-weight: 800 !important;
    font-size: 0.75rem !important;
    letter-spacing: 3px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}


/* Responsive rules for Premium Split Layout (Why Choose Us) */
@media (max-width: 991px) {
    .premium-split-layout {
        flex-direction: column;
    }
    .premium-split-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 50px;
    }
    .premium-split-right {
        width: 100%;
    }
    .split-center-image {
        max-width: 500px;
        margin: 0 auto;
    }
}


/* Footer Mobile Adjustments (2 columns for links) */
@media (max-width: 576px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .site-footer .footer-grid .f-col:nth-child(1),
    .site-footer .footer-grid .f-col:nth-child(4) {
        grid-column: span 2 !important;
    }
}


/* Force Experts Painting to stay on one line globally */
.header .logo-expert {
    white-space: nowrap !important;
}

/* Responsive adjustments for Logo Pill on Mobile */
@media (max-width: 576px) {
    .header .logo-container {
        padding: 4px 10px;
        gap: 8px;
    }
    .header .logo-container img {
        height: 30px !important;
    }
    .header .logo-expert {
        font-size: 1.1rem !important;
    }
    .header .logo-painting {
        font-size: 0.65rem !important;
        letter-spacing: 2px !important;
    }
}


/* Premium Services Tabs */
.premium-services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.services-tabs-sidebar {
    width: 320px;
    background: #2C4C3B; /* Solid dark green brand color */
    padding: 20px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 120px;
    flex-shrink: 0;
}

.service-tab-btn {
    width: 100%;
    text-align: left;
    padding: 18px 25px;
    background: transparent;
    border: none;
    border-left: 4px solid transparent;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-tab-btn i {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.service-tab-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--c-gold, #d4af37);
}

.service-tab-btn:hover i {
    color: var(--c-gold, #d4af37);
}

.service-tab-btn.active {
    background: #ffffff;
    border-left-color: var(--c-gold, #d4af37);
    color: #2C4C3B;
}

.service-tab-btn.active i {
    color: var(--c-gold, #d4af37);
}

.services-tabs-content {
    flex: 1;
    min-width: 0;
    position: relative;
}

.service-tab-pane {
    display: none;
    animation: fadeInSlideUp 0.5s ease forwards;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Unique Pastel Colors for each card */
#tab-interior { background: #f0f9ff; } /* Soft Blue */
#tab-exterior { background: #f0fdf4; } /* Soft Green */
#tab-texture { background: #fff7ed; } /* Soft Orange */
#tab-wood { background: #faf5ff; } /* Soft Purple */
#tab-water { background: #fff1f2; } /* Soft Pink */
#tab-waterproof { background: #fefce8; } /* Soft Yellow */

.service-tab-pane.active {
    display: block;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.tab-text {
    flex: 1;
    min-width: 300px;
}

.tab-text h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.tab-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.premium-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.premium-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-weight: 500;
}

.premium-features-list li i {
    color: var(--c-gold, #d4af37);
    font-size: 1.1rem;
}

.highlight-box {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--c-gold, #d4af37);
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
    margin-top: 25px;
    color: #1e293b;
    font-weight: 500;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.highlight-box i {
    color: var(--c-gold, #d4af37);
    font-size: 1.3rem;
    margin-top: 3px;
}

.tab-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.tab-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    aspect-ratio: 4/3;
}

@media (max-width: 992px) {
    .premium-services-container {
        flex-direction: column;
    }
    .services-tabs-sidebar {
        width: 100%;
        display: flex;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 0;
        white-space: nowrap;
    }
    .service-tab-btn {
        width: auto;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 15px 20px;
    }
    .service-tab-btn.active {
        border-left-color: transparent;
        border-bottom-color: var(--c-gold, #d4af37);
    }
    .premium-features-list {
        grid-template-columns: 1fr;
    }
}
