/* ==========================================================================
   CSS Variables & Base Reset
   ========================================================================== */
:root {
    /* Brand Colors derived from the logo */
    --brand-blue: #1b3668; /* Deep Navy from text/pants */
    --brand-red: #e32626;  /* Bright Red from shirt/toolbox */
    --brand-red-hover: #c01b1b;
    --brand-blue-hover: #12254a;

    /* Neutrals */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;

    /* Layout */
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--brand-red);
    color: var(--white);
    border: 2px solid var(--brand-red);
}

.btn-primary:hover {
    background-color: var(--brand-red-hover);
    border-color: var(--brand-red-hover);
    color: var(--white);
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--brand-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact a:hover {
    color: var(--brand-red);
}

.top-contact .divider {
    margin: 0 15px;
    opacity: 0.5;
}

.top-social a {
    color: var(--white);
    margin-left: 15px;
}

.top-social a:hover {
    color: var(--brand-red);
}

/* ==========================================================================
   Main Header & Navigation
   ========================================================================== */
.main-header {
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 70px; /* Adjust based on your image dimensions */
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links li a {
    font-weight: 600;
    color: var(--brand-blue);
    padding: 10px 0;
    position: relative;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--brand-red);
}

/* Simple Underline Hover Effect */
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--brand-red);
    transition: var(--transition);
}

.nav-links li a:hover::after, .nav-links li a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--brand-red);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
}

.dropdown-menu li a::after {
    display: none; /* remove underline effect for dropdown */
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--brand-red);
    padding-left: 25px; /* Slight indent on hover */
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--brand-blue);
    cursor: pointer;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--brand-blue);
    color: #e0e0e0;
    padding: 70px 0 0 0;
    margin-top: 50px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    height: 80px;
    background: var(--white); /* White background for the logo to pop against dark blue */
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--brand-red);
}

.footer-col ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--brand-red);
    padding-left: 5px; /* Slight animation on hover */
}

.footer-col.contact-col i {
    color: var(--brand-red);
    font-size: 1.2rem;
}

.footer-bottom {
    background-color: #12254a; /* Darker shade of brand blue */
    padding: 20px 0;
    font-size: 0.9rem;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   Responsive Design (Mobile)
   ========================================================================== */
@media (max-width: 992px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar on mobile to save space */
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); /* Hidden state */
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* Revealed state */
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-links li a {
        display: block;
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        background-color: var(--bg-light);
        display: none; /* Handled via JS or hover in mobile */
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .header-cta {
        margin-top: 20px;
        width: 100%;
    }

    .header-cta .btn {
        width: 100%;
        text-align: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .flex-between {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}


.floating-contact-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.float-btn:hover {
    transform: scale(1.1);
    color: #ffffff;
}
.float-whatsapp {
    background-color: #25D366;
    animation: float-pulse-wa 2s infinite;
}
.float-phone {
    background-color: #007bff; /* Adjust to your brand's primary blue if needed */
    animation: float-pulse-ph 2s infinite;
    animation-delay: 1s; /* Alternates the pulse timing with WhatsApp */
}

/* Pulse Animations */
@keyframes float-pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes float-pulse-ph {
    0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(0, 123, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .floating-contact-wrapper {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}



/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    background-color: var(--brand-blue); /* Fused with your brand identity */
    padding: 80px 0;
    color: var(--white);
    overflow: hidden;
}

/* The Grid Overlay Effect */
.grid-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* --- Left Content Styles --- */
.hero-content {
    flex: 1;
    max-width: 600px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-subtitle {
    color: #cbd5e1;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-description {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* --- Hero Buttons --- */
.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    background-color: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
}

.wa-btn:hover {
    background-color: #1ea952;
    border-color: #1ea952;
    color: var(--white);
}

/* --- Trust Badges --- */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-item i {
    color: var(--brand-red); /* Ties into your brand accent */
}

/* --- Right Content: Form Styles --- */
.hero-form-wrapper {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.header-icon {
    background-color: var(--brand-blue);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.header-text h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.header-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.9rem;
}

.textarea-group i {
    top: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 12px 15px 12px 40px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.input-group select {
    appearance: none;
    cursor: pointer;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--brand-blue);
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
}

.form-security {
    text-align: center;
    font-size: 0.75rem;
    color: #22c55e;
    margin-top: 10px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ==========================================================================
   Responsive Design (Mobile Overrides)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        justify-content: center;
    }
    
    .hero-form-wrapper {
        max-width: 100%; /* Allows form to expand natively on smaller screens */
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column; /* Stacks the name and phone input side-by-side to vertical */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
}


/* ==========================================================================
   Stats / Trust Section
   ========================================================================== */
.stats-section {
    background-color: var(--brand-blue);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Subtle red accent line at the top to pop against the hero section */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--brand-red);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    position: relative;
}

/* Elegant vertical dividers between items */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--brand-red); /* Ties into your toolbox/shirt red */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: translateY(-5px) scale(1.1);
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 5px;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--brand-red);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a0aec0;
    margin: 0;
}

/* ==========================================================================
   Responsive Design for Stats
   ========================================================================== */
@media (max-width: 992px) {
    .stat-item {
        flex: 0 0 50%; /* Stacks into a 2x2 grid on tablets */
        padding: 30px 20px;
    }
    
    /* Adjust dividers for 2x2 grid */
    .stat-item:nth-child(2)::after {
        display: none; 
    }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}

@media (max-width: 576px) {
    .stat-item {
        flex: 0 0 100%; /* Stacks into a 1x4 column on phones */
    }
    
    .stat-item::after {
        display: none !important; /* Hide all vertical dividers on mobile */
    }
    
    .stat-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}


/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    background-color: var(--bg-light); /* Off-white background to make white cards pop */
    padding: 80px 0;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-badge {
    display: inline-block;
    background-color: #e2e8f0; /* Soft gray-blue pill */
    color: var(--brand-blue);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-title {
    color: var(--brand-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Service Card */
.service-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Card Header (Icon & Tag) */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: #eef2f6; /* Very light brand blue tint */
    color: var(--brand-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .card-icon {
    background-color: var(--brand-red);
    color: var(--white);
}

.card-tag {
    background-color: #f1f5f9;
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* Card Content */
.card-title {
    color: var(--brand-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes the bottom link to the very bottom */
}

/* Card Bottom Link */
.card-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    transition: var(--transition);
}

.link-text {
    color: var(--brand-blue);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.link-icon {
    width: 32px;
    height: 32px;
    background-color: #f1f5f9;
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.card-link:hover .link-text {
    color: var(--brand-red);
}

.card-link:hover .link-icon {
    background-color: var(--brand-red);
    color: var(--white);
}

/* Bottom CTA Banner */
.services-bottom-cta {
    background-color: var(--white);
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.services-bottom-cta p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
}

.services-bottom-cta strong {
    color: var(--brand-blue);
}

/* ==========================================================================
   Responsive Design for Services
   ========================================================================== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    
    .services-bottom-cta {
        padding: 20px;
    }
    
    .services-bottom-cta p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works-section {
    background-color: var(--brand-blue); /* Returns to dark theme for contrast */
    padding: 80px 0 100px 0;
    color: var(--white);
}

/* Header Styling */
.hiw-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.hiw-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--brand-red);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hiw-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hiw-desc {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Steps Layout */
.steps-wrapper {
    position: relative;
}

.connecting-line {
    position: absolute;
    top: 45px; /* Aligns with the center of the icons */
    left: 12%;
    right: 12%;
    height: 0;
    border-top: 2px dashed rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* Individual Step Cards */
.step-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

/* Icon & Number Badge */
.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step-icon-wrapper i {
    font-size: 2rem;
    color: var(--brand-blue);
}

.step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: var(--brand-red);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    border: 4px solid var(--brand-blue); /* Creates the cutout effect */
}

/* Card Text */
.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.step-text {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Responsive Design for How It Works
   ========================================================================== */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .connecting-line {
        display: none; /* Hide the line on tablet where the layout breaks to 2 rows */
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }

    .hiw-title {
        font-size: 2.2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-section {
    background-color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.wcu-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* --- Left Column (Image & Badges) --- */
.wcu-image-col {
    position: relative;
    padding: 20px; /* Space for the overlapping badges */
}

.wcu-main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
}

/* Floating Badges */
.float-badge {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.badge-top-left {
    top: 0;
    left: 0;
    background-color: var(--brand-blue);
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.badge-top-left .badge-number {
    color: var(--brand-red);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-top-left .badge-text {
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}

.badge-bottom-right {
    bottom: -10px;
    right: 0;
    background-color: var(--brand-red);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.badge-bottom-right .badge-icon {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.badge-bottom-right .badge-content {
    display: flex;
    flex-direction: column;
}

.badge-bottom-right strong {
    font-size: 1rem;
    font-weight: 700;
}

.badge-bottom-right span {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* --- Right Column (Content & Grid) --- */
.wcu-content-col .align-left {
    text-align: left;
    margin-bottom: 40px;
}

.wcu-content-col .section-badge {
    background-color: rgba(227, 38, 38, 0.1);
    color: var(--brand-red);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Feature Cards */
.feature-card {
    background-color: var(--bg-light);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

.feature-card:hover {
    background-color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.feature-icon {
    background-color: var(--white);
    color: var(--brand-red);
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature-text h4 {
    color: var(--brand-blue);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Responsive Design for Why Choose Us
   ========================================================================== */
@media (max-width: 1024px) {
    .wcu-container {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .wcu-image-col {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .wcu-content-col .align-left {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .badge-top-left {
        padding: 15px;
    }
    
    .badge-top-left .badge-number {
        font-size: 1.8rem;
    }
    
    .badge-bottom-right {
        padding: 12px 15px;
    }

    .badge-bottom-right .badge-icon {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .badge-bottom-right {
        bottom: -20px;
        right: 10px;
        left: 10px; /* Stretches across bottom on very small screens */
        justify-content: center;
    }
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.reviews-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.reviews-grid {
    display: grid;
    /* Uses auto-fit to perfectly size the cards whether there's 3 or 4 in a row */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Individual Review Card */
.review-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* Decorative Quote Icon */
.review-card::before {
    content: '\f10d'; /* FontAwesome quote-left */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 3rem;
    color: var(--bg-light);
    z-index: 0;
}

.review-stars {
    color: #f59e0b; /* Classic star gold */
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes the user info to the bottom */
    position: relative;
    z-index: 1;
}

/* Reviewer Info */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--brand-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Give alternating avatars the red brand color */
.review-card:nth-child(even) .reviewer-avatar {
    background-color: var(--brand-red);
}

.reviewer-details h4 {
    color: var(--brand-blue);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.reviewer-details span {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ==========================================================================
   Responsive Design for Reviews
   ========================================================================== */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .review-card {
        padding: 25px 20px;
    }
}


/* ==========================================================================
   Service Area Section
   ========================================================================== */
.service-area-section {
    background-color: var(--white);
    padding: 100px 0;
}

.sa-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- Left Column: Map --- */
.sa-map-col {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.map-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--white);
    color: var(--brand-blue);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.map-badge i {
    color: var(--brand-red);
}

/* --- Right Column: Content --- */
.sa-content-col .align-left {
    text-align: left;
    margin-bottom: 40px;
}

.sa-content-col .section-badge {
    background-color: rgba(27, 54, 104, 0.1); /* Light brand blue */
    color: var(--brand-blue);
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Location Card/Button */
.location-card {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    padding: 18px 20px;
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
}

.location-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.loc-icon {
    width: 30px;
    height: 30px;
    background-color: var(--bg-light);
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 15px;
    transition: var(--transition);
}

.location-card:hover .loc-icon {
    background-color: var(--brand-red);
    color: var(--white);
}

.loc-name {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.location-card:hover .loc-name {
    color: var(--brand-blue);
}

.loc-arrow {
    margin-left: auto;
    color: #cbd5e1;
    font-size: 0.8rem;
    transition: var(--transition);
}

.location-card:hover .loc-arrow {
    color: var(--brand-red);
    transform: translateX(3px);
}

/* ==========================================================================
   Responsive Design for Service Area
   ========================================================================== */
@media (max-width: 1024px) {
    .sa-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sa-map-col {
        height: 400px;
        order: 2; /* Moves the map below the text on smaller screens */
    }
    
    .sa-content-col {
        order: 1;
    }
}

@media (max-width: 576px) {
    .service-area-section {
        padding: 60px 0;
    }

    .locations-grid {
        grid-template-columns: 1fr; /* Stacks to 1 column on phones */
    }
    
    .sa-map-col {
        height: 300px;
    }
}


/* ==========================================================================
   Form Status Pages (Thank You / Error)
   ========================================================================== */
.status-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-card {
    background-color: var(--white);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.status-icon {
    font-size: 5.5rem;
    margin-bottom: 25px;
    display: inline-block;
}

.success-icon {
    color: #22c55e; /* Vibrant green for success */
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.error-icon {
    color: var(--brand-red); /* Brand red for error */
    animation: shake 0.5s ease-in-out;
}

.status-title {
    color: var(--brand-blue);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.status-message {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.status-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Specific Outline Button for the Error Page */
.btn-outline {
    background-color: transparent;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
}

.btn-outline:hover {
    background-color: var(--brand-blue);
    color: var(--white);
}

/* Animations for the icons */
@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-10px); }
    40%, 80% { transform: translateX(10px); }
}

/* Responsive Overrides */
@media (max-width: 576px) {
    .status-card {
        padding: 40px 20px;
    }
    
    .status-title {
        font-size: 1.8rem;
    }
    
    .status-actions {
        flex-direction: column;
    }
    
    .status-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Service Page Template (General Plumbing, etc.)
   ========================================================================== */

/* --- Service Hero --- */
.service-hero {
    background-color: var(--brand-blue);
    background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
    color: var(--white);
    padding: 60px 0 80px 0;
}

.breadcrumbs {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs a {
    color: var(--brand-red);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.service-hero-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-trust-badges i {
    color: #22c55e; /* Checkmark green */
}

/* --- Layout Grid (Content + Sidebar) --- */
.service-page-wrapper {
    background-color: var(--white);
    padding: 80px 0;
}

.service-layout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

/* --- Main Content Areas --- */
.service-section {
    margin-bottom: 60px;
}

.service-section h2 {
    color: var(--brand-blue);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-section h3 {
    color: var(--brand-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.service-section p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Bullet List */
.service-bullet-list {
    margin-top: 20px;
}

.service-bullet-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-dark);
}

.service-bullet-list i {
    color: var(--brand-red);
    font-size: 1.2rem;
    margin-top: 4px;
}

/* --- Gallery Grid --- */
.service-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.gallery-img:hover {
    transform: scale(1.02);
}

/* --- Process Steps --- */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-step {
    display: flex;
    gap: 20px;
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--brand-red);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--brand-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--brand-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* --- Why Us Grid --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-card {
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.why-card i {
    font-size: 2rem;
    color: var(--brand-red);
    margin-bottom: 15px;
}

.why-card h5 {
    color: var(--brand-blue);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- FAQ Accordion --- */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-weight: 600;
    color: var(--brand-blue);
    cursor: pointer;
    list-style: none; /* Removes default arrow in modern browsers */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom Accordion Plus/Minus */
.faq-item summary::after {
    content: '\f067'; /* FontAwesome Plus */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--brand-red);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '\f068'; /* FontAwesome Minus */
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 20px 20px 20px;
    color: var(--text-light);
}

.faq-content p {
    margin: 0;
}

/* --- Sidebar Styling --- */
.service-sidebar {
    position: sticky;
    top: 100px; /* Sticks just below the header */
}

.sidebar-widget {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.sidebar-widget h3 {
    color: var(--brand-blue);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.sidebar-widget p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.sidebar-form input,
.sidebar-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
}

.sidebar-form input:focus,
.sidebar-form textarea:focus {
    border-color: var(--brand-blue);
    outline: none;
}

.submit-btn {
    width: 100%;
}

.help-widget {
    background-color: var(--brand-blue);
    color: var(--white);
    text-align: center;
}

.help-widget i.fa-headset {
    font-size: 2.5rem;
    color: var(--brand-red);
    margin-bottom: 15px;
}

.help-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.help-widget p {
    color: #cbd5e1;
}

.sidebar-call-btn {
    background-color: var(--brand-red);
    color: var(--white);
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.sidebar-call-btn:hover {
    background-color: #c01b1b;
}

/* --- Responsive Overrides --- */
@media (max-width: 992px) {
    .service-layout-grid {
        grid-template-columns: 1fr; /* Stacks sidebar under content */
    }
    
    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-gallery {
        grid-template-columns: 1fr; /* Stacks gallery images to 1 column */
    }
    
    .gallery-img {
        height: 200px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Service Page Additions & Refinements
   ========================================================================== */

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section Enhancements */
.service-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero-actions {
    margin-bottom: 30px;
}

/* Service Info Table */
.service-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.service-table thead {
    background-color: var(--bg-light);
    border-bottom: 2px solid #cbd5e1;
}

.service-table th {
    text-align: left;
    padding: 15px 20px;
    color: var(--brand-blue);
    font-weight: 700;
}

.service-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-dark);
}

.service-table tbody tr:last-child td {
    border-bottom: none;
}

.service-table tbody tr:hover {
    background-color: #f8fafc;
}

.table-icon {
    color: var(--brand-red);
    margin-right: 8px;
}

/* Sidebar Detailed Form with Icons */
.sidebar-detailed-form {
    text-align: left;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 6px;
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
}

.textarea-wrapper i {
    top: 20px; /* Aligns to top of textarea */
}

.input-icon-wrapper input,
.input-icon-wrapper select,
.input-icon-wrapper textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 12px 15px 12px 40px; /* Padding for icon */
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
    background-color: var(--white);
    box-sizing: border-box;
}

.input-icon-wrapper select {
    appearance: none;
    cursor: pointer;
}

.input-icon-wrapper input:focus,
.input-icon-wrapper select:focus,
.input-icon-wrapper textarea:focus {
    border-color: var(--brand-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 54, 104, 0.1);
}

.input-icon-wrapper input::placeholder,
.input-icon-wrapper textarea::placeholder {
    color: #cbd5e1;
}

/* Other Services Links */
.other-services-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.other-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-light);
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.other-service-tag i {
    color: var(--brand-red);
}

.other-service-tag:hover {
    background-color: var(--brand-blue);
    color: var(--white);
    border-color: var(--brand-blue);
    transform: translateY(-2px);
}

.other-service-tag:hover i {
    color: var(--white);
}

/* Lightbox Overlay */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Ensure images are clickable */
.gallery-img {
    cursor: pointer;
}