/* ==========================================================================
   SL Prime Trade Services - Premium CSS Styling
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System Tokens (Variables)
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-bg-dark: #000000;
    --color-bg-offset: #0a0a0a;
    --color-primary: #FDB813; /* Rich gold/yellow construction accent */
    --color-primary-hover: #e0a20f;
    --color-text-light: #ffffff;
    --color-text-muted: #cccccc;
    --color-text-dark: #121212;
    --color-border-muted: rgba(255, 255, 255, 0.15);
    
    /* Layout & Styling details */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --header-height: 90px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --glass-bg: rgba(0, 0, 0, 0.75);
    --glass-blur: blur(12px);
    --max-width: 1400px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base Elements
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

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

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   3. Utilities & Background Glows
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Background gradient glows for high-end look */
.bg-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(253, 184, 19, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.bg-glow-2 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(253, 184, 19, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   4. Header & Navigation (Glassmorphism)
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    height: 80px;
    border-bottom: 1px solid var(--color-border-muted);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    position: relative;
    padding: 8px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

/* --------------------------------------------------------------------------
   5. Buttons (CTAs)
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 12px 28px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

/* Phone CTA Button in Header */
.btn-phone {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-phone:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 184, 19, 0.25);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* Hero primary button (solid gold) */
.btn-gold {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
}

.btn-gold:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 184, 19, 0.35);
}

/* Hero secondary button (outlined dark) */
.btn-outline {
    background-color: transparent;
    color: var(--color-text-light);
    border: 1.5px solid var(--color-border-muted);
}

.btn-outline:hover {
    background-color: var(--color-text-light);
    color: var(--color-bg-dark);
    border-color: var(--color-text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.btn-interactive:active {
    transform: translateY(-1px);
}

/* Hamburger toggle menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-light);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   6. Mobile Nav Menu Drawer
   -------------------------------------------------------------------------- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 350px;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: 999;
    padding: 120px 40px 40px;
    border-left: 1px solid var(--color-border-muted);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--color-primary);
    padding-left: 8px;
}

.mobile-nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-top: 20px;
}

/* --------------------------------------------------------------------------
   7. Hero Section (Dynamic Left/Right Columns)
   -------------------------------------------------------------------------- */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    min-height: calc(100vh - 80px); /* accounting for bottom contact bar */
}

.hero-grid-container {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    z-index: 10;
}

.hero-content-column {
    padding-right: 40px;
    z-index: 5;
}

.hero-text-content {
    max-width: 680px;
}

/* Bold premium headings */
.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.5rem, 4.2vw, 4.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--color-text-light);
}

.hero-title .highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.hero-desc {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 550px;
}

/* --------------------------------------------------------------------------
   8. Service Showcase (Icons & Separation)
   -------------------------------------------------------------------------- */
.services-showcase {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0px;
    margin-bottom: 45px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px 20px;
    max-width: 650px;
    backdrop-filter: blur(5px);
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    padding: 5px 10px;
    transition: var(--transition-smooth);
}

.service-item:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.service-item:hover .icon-wrapper {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(253, 184, 19, 0.6));
}

.service-svg {
    width: 32px;
    height: 32px;
}

.service-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    white-space: nowrap;
}

/* Separator dividers between services */
.divider {
    width: 1.5px;
    height: 40px;
    background: linear-gradient(180deg, rgba(253, 184, 19, 0) 0%, rgba(253, 184, 19, 0.7) 50%, rgba(253, 184, 19, 0) 100%);
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* --------------------------------------------------------------------------
   9. Right Side Image Column (Soft blend layout)
   -------------------------------------------------------------------------- */
.hero-image-column {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(253, 184, 19, 0.1);
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-bg-dark) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.hero-house-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 10;
}

/* --------------------------------------------------------------------------
   10. Contact Info Bar (Bottom Grid/Row)
   -------------------------------------------------------------------------- */
.contact-bar {
    background-color: var(--color-text-light);
    color: var(--color-text-dark);
    padding: 24px 0;
    border-top: 1px solid #eaeaea;
    z-index: 100;
}

.contact-bar-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-icon {
    color: var(--color-bg-dark);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-text {
    letter-spacing: 0.02em;
}

.contact-link {
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-bg-dark);
    transition: var(--transition-smooth);
}

.contact-link:hover::after {
    width: 100%;
}

.contact-bar-divider {
    width: 1px;
    height: 20px;
    background-color: #d1d1d1;
}

/* --------------------------------------------------------------------------
   11. Premium Entry Micro-Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --------------------------------------------------------------------------
   12. Responsive Breakpoints & Mobile Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    .hero-grid-container {
        grid-template-columns: 1.1fr 1fr;
        padding: 0 30px;
    }
    .hero-content-column {
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 80px;
    }
    
    .nav-links, .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    /* Transforming Hamburger Menu */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Layout stacks vertically under 992px */
    .hero-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 60px;
    }
    
    .hero-content-column {
        padding-right: 0;
    }
    
    .hero-text-content {
        margin: 0 auto;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-showcase {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-column {
        justify-content: center;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-image-wrapper::after {
        background: linear-gradient(0deg, var(--color-bg-dark) 0%, rgba(0,0,0,0) 50%);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .hero-grid-container {
        padding: 0 20px;
    }
    .services-showcase {
        flex-wrap: wrap;
        gap: 20px 0;
        padding: 20px 10px;
    }
    
    .service-item {
        flex: 1 0 45%; /* Grid display on small screens: 2x2 */
    }
    
    /* Hide specific separators for mobile grid look */
    .services-showcase .divider:nth-of-type(2) {
        display: none;
    }
    .services-showcase .divider {
        height: 35px;
    }
    
    .contact-bar-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-bar-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-showcase .divider {
        display: none; /* remove dividers on small screens */
    }
    
    .service-item {
        flex: 1 0 100%; /* stack services vertically on very small mobile */
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 15px;
    }
    
    .service-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

/* ==========================================================================
   13. Services Section Styling (Light Contrast Design)
   ========================================================================== */
.services-section {
    background-color: #f6f7fa;
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.services-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
}

.header-line {
    flex: 1;
    height: 2px;
    max-width: 120px;
    background: linear-gradient(90deg, rgba(253, 184, 19, 0) 0%, var(--color-primary) 100%);
}

.services-header .header-line:last-child {
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(253, 184, 19, 0) 100%);
}

.services-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--color-text-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(253, 184, 19, 0.4);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 12px 12px 0 0;
    overflow: visible;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    filter: brightness(0.95);
    transition: var(--transition-smooth);
}

.service-card:hover .card-img {
    filter: brightness(1);
    transform: scale(1.03);
}

.card-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    z-index: 10;
    transition: var(--transition-smooth);
}

.service-card:hover .card-badge {
    transform: translate(-50%, 50%) scale(1.1);
    background-color: var(--color-primary-hover);
    box-shadow: 0 8px 18px rgba(253, 184, 19, 0.35);
}

.badge-svg {
    width: 24px;
    height: 24px;
}

.card-body {
    padding: 50px 24px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    padding-left: 12px;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #444444;
    font-weight: 500;
    text-align: left;
}

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.service-card:hover .check-icon {
    transform: scale(1.15);
}

.btn-card-learn {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    width: 100%;
    padding: 12px 0;
    border-radius: 6px;
    margin-top: auto;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(253, 184, 19, 0.15);
}

.btn-card-learn:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 184, 19, 0.3);
}

/* ==========================================================================
   14. Scroll Reveal Classes
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Media Query Responsive Adjustments for Services Section */
@media (max-width: 1200px) {
    .services-grid {
        gap: 20px;
    }
    .card-body {
        padding: 45px 18px 25px;
    }
    .card-list {
        padding-left: 6px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 380px;
    }
    .services-section {
        padding: 80px 0;
    }
}

/* ==========================================================================
   15. About Us Section Styling (Dark Premium Blend Design)
   ========================================================================== */
.about-section {
    background-color: var(--color-bg-dark);
    padding: 120px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.about-container {
    position: relative;
    z-index: 5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content-column {
    padding-right: 20px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--color-text-light);
    margin-bottom: 35px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    position: relative;
}

/* Accent gold indicator line on title */
.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
}

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

.about-lead-para {
    font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    line-height: 1.7;
    color: var(--color-text-light);
    font-weight: 500;
}

.about-para {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 300;
}

.about-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #111;
}

.about-van-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    display: block;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-van-img {
    transform: scale(1.04);
}

.about-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-gradient-overlay {
    opacity: 0.85;
}

/* Media Query Responsive Adjustments for About Us Section */
@media (max-width: 1200px) {
    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 90px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-content-column {
        padding-right: 0;
        max-width: 750px;
        margin: 0 auto;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-image-column {
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
    }
    
    .about-gradient-overlay {
        background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0) 100%);
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 70px 0;
    }
    
    .about-grid {
        gap: 40px;
    }
}

/* ==========================================================================
   16. Why Choose Us Section Styling (Spotlight Reveal Design)
   ========================================================================== */
.why-choose-section {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.choose-card {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 35px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

/* Spotlight hover background glow */
.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(253, 184, 19, 0.06), transparent 80%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Spotlight hover border glow */
.choose-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: radial-gradient(280px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), var(--color-primary), transparent 60%);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    border-radius: 12px;
    transition: opacity 0.4s ease;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 1.5px;
}

.choose-card:hover::before,
.choose-card:hover::after {
    opacity: 1;
}

.choose-icon-wrapper,
.choose-card-body {
    position: relative;
    z-index: 2;
}

.choose-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(253, 184, 19, 0.08);
    border: 1.5px solid rgba(253, 184, 19, 0.2);
    border-radius: 10px;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.choose-card:hover .choose-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 6px 15px rgba(253, 184, 19, 0.25);
    border-color: var(--color-primary);
}

.choose-svg {
    width: 24px;
    height: 24px;
}

.choose-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.choose-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555555;
    font-weight: 400;
}

/* ==========================================================================
   17. Our Gallery Section Styling (Premium Media Portfolio)
   ========================================================================== */
.gallery-section {
    background-color: var(--color-bg-offset);
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.text-white {
    color: var(--color-text-light) !important;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #111111;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(253, 184, 19, 0.12);
    border-color: rgba(253, 184, 19, 0.25);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 24px;
    z-index: 5;
    transition: var(--transition-smooth);
}

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

.gallery-category {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.gallery-project-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: -0.01em;
}

.gallery-zoom-btn {
    width: 42px;
    height: 42px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-zoom-btn {
    transform: translateY(0);
    opacity: 1;
}

.zoom-svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   18. Dynamic Zoom Lightbox Modal
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-container {
    max-width: 90%;
    max-height: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2005;
}

.lightbox-modal.active .lightbox-container {
    transform: scale(1);
}

.lightbox-container img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.lightbox-caption {
    text-align: center;
    margin-top: 24px;
    color: var(--color-text-light);
}

#lightbox-category {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 6px;
}

#lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Lightbox Navigation & Control Buttons */
.lightbox-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-light);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 2010;
}

.lightbox-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    border-color: var(--color-primary);
    transform: scale(1.06);
    box-shadow: 0 4px 15px rgba(253, 184, 19, 0.4);
}

.lightbox-close {
    top: 40px;
    right: 40px;
    font-size: 2.2rem;
    line-height: 1;
}

.lightbox-prev {
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
}

/* Media Query Responsive Adjustments for New Sections */
@media (max-width: 1200px) {
    .why-choose-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
        margin: 50px auto 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 760px;
        margin: 50px auto 0;
    }
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
    
    .lightbox-btn {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .why-choose-section,
    .gallery-section {
        padding: 80px 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
    
    .choose-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   19. Contact Us Section Styling (Split-Screen Dashboard Design)
   ========================================================================== */
.contact-section {
    background-color: #f4f5f8;
    padding: 100px 0;
    position: relative;
    z-index: 10;
    width: 100%;
}

.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Left Column: Dark Panel */
.contact-info-panel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    color: var(--color-text-light);
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background-color: #0d0d0f;
}

.info-panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.82) 50%, rgba(0, 0, 0, 0.4) 100%), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    z-index: 1;
    pointer-events: none;
}

.info-panel-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    gap: 30px;
}

.contact-header-text {
    text-align: left;
}

.contact-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    font-weight: 900;
    color: var(--color-text-light);
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.contact-lead-desc {
    font-size: clamp(1.1rem, 1.2vw, 1.25rem);
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.contact-sub-desc {
    font-size: clamp(0.92rem, 1vw, 1rem);
    font-weight: 300;
    color: var(--color-text-muted);
}

/* Levitating phone */
.phone-mockup-wrapper {
    position: relative;
    width: 210px;
    margin: 0 auto;
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.phone-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

/* Stacked badges list */
.contact-badges-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-badge-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
    text-align: left;
}

a.contact-badge-item:hover {
    background-color: rgba(253, 184, 19, 0.08);
    border-color: rgba(253, 184, 19, 0.3);
    transform: translateY(-2px);
}

.badge-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(253, 184, 19, 0.1);
    border-radius: 50%;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

a.contact-badge-item:hover .badge-icon-box {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
}

.badge-icon-box svg {
    width: 18px;
    height: 18px;
}

.badge-texts {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #999999;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.badge-val {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-text-light);
}

/* Right Column: White Form Panel */
.quote-form-panel {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title-header {
    margin-bottom: 35px;
}

.form-section-title {
    color: var(--color-text-dark) !important;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group-full {
    grid-column: span 2;
}

.form-input, 
.form-textarea, 
.form-select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1.5px solid #eaeaea;
    background-color: #fafafa;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
    outline: none;
}

.form-input:focus, 
.form-textarea:focus, 
.form-select:focus {
    border-color: var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(253, 184, 19, 0.08);
}

/* Dropdown styling */
.select-wrapper {
    position: relative;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 45px;
}

.form-select option {
    color: var(--color-text-dark);
}

.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #888888;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--color-primary);
}

.form-textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    justify-content: center;
}

.btn-submit {
    padding: 14px 45px;
    font-size: 1rem;
    border-radius: 8px;
    width: auto;
    min-width: 220px;
}

/* Success Feedback Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.success-check-svg {
    width: 70px;
    height: 70px;
}

.success-check-circle {
    stroke-width: 3;
    stroke: var(--color-primary);
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.8s ease-in-out;
}

.success-check-path {
    stroke-width: 3.5;
    stroke: var(--color-primary);
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke-dashoffset 0.5s ease-in-out;
    transition-delay: 0.5s;
}

.form-success-overlay.active .success-check-circle {
    stroke-dashoffset: 0;
}

.form-success-overlay.active .success-check-path {
    stroke-dashoffset: 0;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.success-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #555555;
    max-width: 440px;
}

/* Media Query Responsive Adjustments for Split-Screen Contact Section */
@media (max-width: 992px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 680px;
        margin: 0 auto;
    }
    
    .contact-info-panel {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 70px 0;
    }
    
    .contact-info-panel {
        padding: 35px 20px;
    }
    
    .phone-mockup-wrapper {
        width: 180px;
    }
    
    .quote-form-panel {
        padding: 40px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .btn-submit {
        width: 100%;
    }
}

/* ==========================================================================
   20. Testimonials Section Styling (Shine swipe card design)
   ========================================================================== */
.testimonials-section {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    position: relative;
    background-color: #ffffff;
    border: 1.5px solid #eaeaea;
    border-radius: 12px;
    padding: 35px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(253, 184, 19, 0.35);
}

/* Diagonal glossy swipe reflection */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 184, 19, 0.08), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.testimonial-card:hover::before {
    left: 150%;
}

.stars-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 22px;
    font-size: 1.15rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.star {
    color: var(--color-primary);
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Staggered star animation on card hover */
.testimonial-card:hover .star {
    transform: scale(1.2) rotate(5deg);
}

.testimonial-card:hover .star:nth-child(2) {
    transition-delay: 0.05s;
}

.testimonial-card:hover .star:nth-child(3) {
    transition-delay: 0.1s;
}

.testimonial-card:hover .star:nth-child(4) {
    transition-delay: 0.15s;
}

.testimonial-card:hover .star:nth-child(5) {
    transition-delay: 0.2s;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 400;
    text-align: center;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 2;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-dark);
    font-style: normal;
}

.author-location {
    font-size: 0.82rem;
    color: #888888;
    font-weight: 500;
}

/* Media Query Responsive Adjustments for Testimonials */
@media (max-width: 1200px) {
    .testimonials-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
        margin: 50px auto 0;
    }
}

@media (max-width: 600px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-top: 40px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   21. Service Area Map Section Styling
   ========================================================================== */
.service-area-section {
    background-color: #f6f7fa;
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.map-container {
    position: relative;
    width: 100%;
    height: 550px;
    background-color: #e5e3df;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04), 0 0 0 2px var(--color-primary);
    margin-top: 50px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(253, 184, 19, 0.15), 0 0 0 2.5px var(--color-primary);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(100%) sepia(15%) contrast(1.08) brightness(0.95);
    transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-container:hover .map-iframe {
    filter: grayscale(10%) sepia(2%) contrast(1) brightness(1);
}

/* Media Query Responsive Adjustments for Map Section */
@media (max-width: 992px) {
    .map-container {
        height: 400px;
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .service-area-section {
        padding: 80px 0;
    }
    
    .map-container {
        height: 320px;
        border-radius: 16px;
    }
}

/* ==========================================================================
   22. Main Footer Section Styling
   ========================================================================== */
.main-footer {
    background-color: #0c0c0e;
    color: #ffffff;
    padding: 80px 0 0 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.6fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.brand-col .footer-logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 22px;
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #a0a0ab;
    margin: 0;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #ffffff;
    margin: 0 0 26px 0;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links li a {
    font-size: 0.88rem;
    color: #a0a0ab;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.88rem;
    color: #a0a0ab;
    transition: var(--transition-smooth);
}

.footer-contact-list li:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.footer-contact-link {
    color: #a0a0ab;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social-badges {
    display: flex;
    gap: 14px;
    margin-top: 5px;
}

.social-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.social-badge:hover {
    transform: translateY(-5px) scale(1.1) rotate(3deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.badge-facebook {
    background-color: #3b5998;
}

.badge-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.badge-tiktok {
    background-color: #010101;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-icon {
    width: 20px;
    height: 20px;
    display: block;
}

/* Footer Bottom copyright bar */
.footer-bottom {
    background-color: var(--color-primary);
    padding: 22px 0;
    text-align: center;
    margin-top: 60px;
}

.copyright-text {
    font-size: 0.84rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: 0.8px;
}

/* Media Query Responsive Adjustments for Footer */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .brand-col {
        grid-column: span 3;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .brand-col {
        grid-column: span 2;
    }
    
    .contact-col {
        grid-column: span 2;
    }
}

@media (max-width: 500px) {
    .main-footer {
        padding: 60px 0 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brand-col, .contact-col {
        grid-column: span 1;
    }
    
    .footer-bottom {
        padding: 18px 0;
        margin-top: 40px;
    }
}
