/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --purple-primary: #7b1fa2;
    --purple-dark: #4a0e4e;
    --purple-light: #b8297b;
    --orange-primary: #e65100;
    --orange-light: #ff7043;
    
    --text-dark: #1a1e26;
    --text-light: #ffffff;
    --text-gray: #5a6578;
    --border-color: rgba(123, 31, 162, 0.15);
    
    /* Gradients */
    --grad-purple: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-primary) 50%, var(--purple-light) 100%);
    --grad-orange: linear-gradient(135deg, var(--orange-primary) 0%, #ff5722 100%);
    --grad-nav-btn: linear-gradient(135deg, var(--orange-primary) 0%, var(--purple-primary) 100%);
    --grad-text: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-light) 100%);
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    
    /* Layout */
    --header-height: 90px;
    --max-width: 1280px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(123, 31, 162, 0.12);
    --shadow-btn: 0 8px 20px rgba(230, 81, 0, 0.25);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

/* Header scrolled state */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 80px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    align-self: flex-start;
    margin-top: 4px; /* Align to the top of header to prevent screen-edge clipping */
    margin-left: -20px; /* Shift slightly to the left */
}

.logo-img {
    height: 128px; /* Scaled up by another 50% */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

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

.logo:hover .logo-img {
    transform: scale(1.04);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    padding: 0.5rem 0.25rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

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

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

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

.chevron-icon {
    width: 14px;
    height: 14px;
    transition: var(--transition-fast);
}

.nav-link:hover .chevron-icon {
    transform: translateY(2px);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 220px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(123, 31, 162, 0.08);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background-color: rgba(123, 31, 162, 0.05);
    color: var(--purple-primary);
    padding-left: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-phone-nav {
    background: var(--grad-nav-btn);
    color: var(--text-light);
    box-shadow: 0 6px 15px rgba(230, 81, 0, 0.15);
    padding: 0.7rem 1.6rem;
    font-size: 0.85rem;
}

.btn-phone-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(123, 31, 162, 0.25);
    background: linear-gradient(135deg, #ff5722 0%, var(--purple-light) 100%);
}

.phone-icon {
    width: 16px;
    height: 16px;
}

/* Mobile Toggle Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-dark);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-grid-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-content {
    padding-bottom: 120px; /* space for bottom wave */
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--purple-primary);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: var(--grad-orange);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-phone-hero {
    background: var(--grad-orange);
    color: var(--text-light);
    box-shadow: var(--shadow-btn);
}

.btn-phone-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(230, 81, 0, 0.4);
    filter: brightness(1.05);
}

.btn-outline-hero {
    background-color: transparent;
    border: 2px solid var(--purple-primary);
    color: var(--purple-primary);
}

.btn-outline-hero:hover {
    background-color: var(--purple-primary);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(123, 31, 162, 0.2);
}

/* Hero Right Side - Image */
.hero-image-area {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-house-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover .hero-house-img {
    transform: scale(1.08);
}

/* Gradient fade to white on the left side of the image */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.85) 10%,
        rgba(255, 255, 255, 0.4) 30%,
        rgba(255, 255, 255, 0) 70%
    );
    pointer-events: none;
}

/* ==========================================================================
   WAVE Divider
   ========================================================================== */
.wave-container {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 220px;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.wave-svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.wave-path {
    transition: var(--transition-smooth);
}

/* Subtle Floating Animations on Waves */
@keyframes wave-float-purple {
    0%, 100% {
        transform: translateY(0) scaleY(1);
    }
    50% {
        transform: translateY(-8px) scaleY(1.04);
    }
}

@keyframes wave-float-orange {
    0%, 100% {
        transform: translateY(0) scaleY(1) translateX(0);
    }
    50% {
        transform: translateY(6px) scaleY(0.96) translateX(-10px);
    }
}

.purple-wave {
    animation: wave-float-purple 12s ease-in-out infinite;
    transform-origin: bottom center;
}

.orange-wave {
    animation: wave-float-orange 14s ease-in-out infinite;
    transform-origin: bottom center;
}

/* ==========================================================================
   ENTRY ANIMATIONS (ON-LOAD & SCROLL)
   ========================================================================== */
.anim-fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Delays */
.hero-content .anim-fade-in {
    animation-delay: 0.2s;
}
.hero-content .anim-slide-up:nth-of-type(1) {
    animation-delay: 0.4s;
}
.hero-content .hero-divider {
    animation-delay: 0.5s;
}
.hero-content .anim-slide-up:nth-of-type(2) {
    animation-delay: 0.6s;
}
.hero-content .hero-buttons {
    animation-delay: 0.8s;
}
.hero-image-area {
    animation-delay: 0.5s;
}

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

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

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Large screens and laptops */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-image-wrapper {
        height: 450px;
    }
}

/* Tablets and iPads */
@media (max-width: 991px) {
    :root {
        --header-height: 80px;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile Nav Menu Overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        padding: 100px 2rem 2rem;
        transition: var(--transition-smooth);
        z-index: 1000;
        display: block;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: transparent;
        width: 100%;
        padding: 0.5rem 0 0 1rem;
        display: none;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-actions {
        display: none; /* Hide standard nav button, we can show inside mobile menu */
    }

    /* Hamburger Transformation to Close X */
    .nav-toggle.open .bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    .nav-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open .bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    /* Hero Section adjustment */
    .hero-section {
        flex-direction: column;
        min-height: auto;
        padding-top: calc(var(--header-height) + 3rem);
    }

    /* Hero Grid adjustment */
    .hero-grid-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-content {
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-area {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        margin-bottom: 120px; /* space for the wave at bottom */
    }

    .hero-image-wrapper {
        height: 400px;
        max-width: 550px;
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    }

    .hero-image-overlay {
        background: linear-gradient(to bottom, 
            rgba(255, 255, 255, 0.4) 0%,
            rgba(255, 255, 255, 0) 40%
        );
    }

    .wave-container {
        height: 160px;
    }
}

/* Mobile Devices */
@media (max-width: 576px) {
    .logo {
        margin-left: -10px; /* Soften shift on mobile to prevent viewport clipping */
    }
    .logo-img {
        height: 102px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .hero-image-wrapper {
        height: 280px;
    }

    .wave-container {
        height: 110px;
    }
    
    .hero-image-area {
        margin-bottom: 80px;
    }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--purple-primary);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.about-underline {
    width: 55px;
    height: 3px;
    background: var(--grad-orange);
    border-radius: 2px;
    margin-bottom: 1.75rem;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
}

.about-title .highlight {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-text {
    margin-bottom: 2.5rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.btn-purple {
    background: var(--purple-primary);
    color: var(--text-light);
    align-self: flex-start;
}

.btn-purple:hover {
    background: var(--purple-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(123, 31, 162, 0.25);
}

/* About Right Side - Image & Badge */
.about-image-area {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: visible;
}

.about-painter-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}

.about-badge-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 360px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(123, 31, 162, 0.05);
    z-index: 5;
}

.badge-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(230, 81, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon {
    width: 24px;
    height: 24px;
    color: var(--orange-primary);
}

.badge-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

.badge-content p {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-badge {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.scroll-reveal-left.revealed,
.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

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

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .about-content {
        align-items: center;
    }
    
    .about-underline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-title {
        font-size: 2.25rem;
    }
    
    .btn-purple {
        align-self: center;
    }
    
    .about-image-area {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .about-badge-card {
        right: 50%;
        transform: translateX(50%) translateY(20px);
        bottom: -20px;
        transition-delay: 0.1s;
    }
    
    .scroll-reveal-badge {
        transform: scale(0.9) translateX(50%) translateY(30px);
    }
    
    .scroll-reveal-badge.revealed {
        transform: scale(1) translateX(50%) translateY(20px);
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-painter-img {
        height: 380px;
    }
    
    .about-badge-card {
        width: calc(100% - 20px);
        padding: 1rem 1.25rem;
        gap: 1rem;
    }
    
    .badge-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .badge-icon {
        width: 20px;
        height: 20px;
    }
    
    .badge-content h4 {
        font-size: 0.88rem;
    }
    
    .badge-content p {
        font-size: 0.78rem;
    }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 100px 0 80px;
    background-color: #f8fafc;
    overflow: hidden;
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 0 2rem;
}

.services-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--purple-primary);
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.services-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 1px;
    line-height: 1.15;
}

.services-title .highlight {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* Slider Wrapper (arrows + viewport) */
.services-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

/* Arrow Buttons */
.slider-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--purple-primary);
    background-color: #ffffff;
    color: var(--purple-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 5;
    box-shadow: 0 4px 15px rgba(123, 31, 162, 0.1);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.slider-btn:hover {
    background: var(--grad-purple);
    border-color: transparent;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(123, 31, 162, 0.25);
}

.slider-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Viewport */
.services-viewport {
    flex: 1;
    overflow: hidden;
}

/* Track - slides horizontally */
.services-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Individual Card */
.service-card {
    flex: 0 0 calc((100% - 3rem) / 3); /* 3 cards visible, 2 gaps */
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

/* Card Image Area */
.service-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 210px;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-img {
    transform: scale(1.06);
}

/* Circular Icon Badge on Card Image */
.service-card-icon {
    position: absolute;
    bottom: -24px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: transform 0.3s ease;
}

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

.service-card-icon svg {
    width: 22px;
    height: 22px;
}

.service-icon-purple {
    background: var(--grad-purple);
    color: #ffffff;
}

.service-icon-orange {
    background: var(--grad-orange);
    color: #ffffff;
}

/* Card Body Text */
.service-card-body {
    padding: 2.25rem 1.25rem 1.5rem;
}

.service-card-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 0.85rem;
}

.title-purple {
    color: var(--purple-primary);
}

.title-orange {
    color: var(--orange-primary);
}

.service-card-desc {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.65;
}

/* Dot Indicators */
.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--grad-purple);
    width: 24px;
    border-radius: 4px;
}

.slider-dot:hover {
    background-color: var(--purple-primary);
}

/* Scroll Reveal for Services Header */
.scroll-reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   SERVICES RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .services-section {
        padding: 80px 0 60px;
    }

    .services-title {
        font-size: 2.2rem;
    }

    /* 2 cards visible on tablet */
    .service-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 600px) {
    .services-section {
        padding: 60px 0 50px;
    }

    .services-title {
        font-size: 1.75rem;
    }

    .services-slider-wrapper {
        padding: 0 0.75rem;
        gap: 0.5rem;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
    }

    .slider-btn svg {
        width: 16px;
        height: 16px;
    }

    /* 1 card visible on mobile */
    .service-card {
        flex: 0 0 100%;
    }

    .services-track {
        gap: 1rem;
    }
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-section {
    position: relative;
    background: linear-gradient(120deg, #3a006f 0%, #55007a 40%, #3d005c 70%, #250040 100%);
    padding: 80px 0;
    overflow: hidden;
}

/* Faded painter image — right side */
.why-bg-painter {
    position: absolute;
    top: 0;
    right: 0;
    width: 28%;
    height: 100%;
    background: url('painter.png') center/cover no-repeat;
    opacity: 0.18;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
    pointer-events: none;
}

/* Subtle decorative glows */
.why-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 0, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: 20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Inner layout */
.why-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* ── Left Column ── */
.why-left {
    flex: 0 0 300px;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
                transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

.why-left.why-revealed {
    opacity: 1;
    transform: translateX(0);
}

.why-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.why-orange {
    color: var(--orange-primary);
}

.why-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.why-cta-btn {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    background: var(--grad-orange);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 18px rgba(255,120,0,0.3);
    white-space: nowrap;
}

.why-cta-btn:hover {
    background: transparent;
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    box-shadow: 0 6px 24px rgba(255,120,0,0.2);
    transform: translateY(-2px);
}

/* ── Right Feature Grid ── */
.why-features {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
}

/* Each feature item */
.why-feature {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1) calc(var(--fi) * 0.1s + 0.3s),
                transform 0.6s cubic-bezier(0.16,1,0.3,1) calc(var(--fi) * 0.1s + 0.3s);
}

.why-feature.why-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Icon circle */
.why-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.why-icon svg {
    width: 24px;
    height: 24px;
}

.why-feature:hover .why-icon {
    background: var(--grad-orange);
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 16px rgba(255,120,0,0.35);
}

/* Label */
.why-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.45;
    letter-spacing: 0.2px;
}

/* ==========================================================================
   WHY SECTION RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
    .why-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-bg-painter {
        width: 20%;
    }
}

@media (max-width: 768px) {
    .why-inner {
        flex-direction: column;
        padding: 0 2rem;
        gap: 2.5rem;
        text-align: center;
    }
    .why-left {
        flex: none;
    }
    .why-features {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    .why-feature {
        flex-direction: column;
        text-align: center;
    }
    .why-bg-painter {
        display: none;
    }
    .why-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .why-features {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
    }
    .why-title {
        font-size: 1.5rem;
    }
    .why-inner {
        padding: 0 1.25rem;
    }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testi-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Decorative background blobs */
.testi-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.testi-blob-1 {
    top: 10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--purple-primary) 0%, transparent 70%);
}

.testi-blob-2 {
    bottom: 15%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--orange-primary) 0%, transparent 70%);
}

/* Section Header */
.testi-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.testi-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--purple-primary);
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.testi-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 1px;
    line-height: 1.15;
}

.testi-highlight {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* Testimonial Slider Wrapper */
.testi-slider-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.testi-viewport {
    overflow: hidden;
    width: 100%;
}

.testi-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Individual Card */
.testi-card {
    flex: 0 0 calc((100% - 4rem) / 3); /* 3 cards visible, 2 gaps of 2rem */
    background: #ffffff;
    border: 1px solid rgba(123, 31, 162, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.testi-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(123, 31, 162, 0.15);
}

/* Floating Quote Icon Behind Content */
.testi-quote-icon {
    font-size: 6rem;
    font-family: 'Outfit', Georgia, serif;
    font-weight: 900;
    line-height: 1;
    color: rgba(123, 31, 162, 0.08);
    position: absolute;
    top: 1rem;
    left: 2rem;
    pointer-events: none;
    user-select: none;
}

.testi-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
}

/* Footer structure */
.testi-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(123, 31, 162, 0.08);
    padding-top: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Avatar styling */
.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    background: hsl(var(--av-hue, 260), 65%, 45%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

/* Info styling */
.testi-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.testi-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.testi-location {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.2rem;
}

/* Stars styling */
.testi-stars {
    display: flex;
    gap: 2px;
    color: #ffb300;
    font-size: 0.95rem;
    align-self: center;
}

/* Dots Indicators */
.testi-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 2;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    padding: 0;
}

.testi-dot.active {
    background: var(--grad-purple);
    width: 28px;
    border-radius: 6px;
}

.testi-dot:hover {
    background-color: var(--purple-primary);
}

/* ==========================================================================
   TESTIMONIALS RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .testi-section {
        padding: 80px 0;
    }

    .testi-title {
        font-size: 2.2rem;
    }

    .testi-header {
        margin-bottom: 3rem;
    }

    /* 2 cards visible on tablet */
    .testi-card {
        flex: 0 0 calc((100% - 2rem) / 2);
        padding: 2rem;
    }
}

@media (max-width: 650px) {
    .testi-section {
        padding: 60px 0;
    }

    .testi-title {
        font-size: 1.75rem;
    }

    /* 1 card visible on mobile */
    .testi-card {
        flex: 0 0 100%;
        padding: 1.75rem;
    }
    
    .testi-track {
        gap: 1rem;
    }
}

/* ==========================================================================
   CONTACT / QUOTE SECTION
   ========================================================================== */
.contact-section {
    padding: 100px 0 120px;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--purple-primary);
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    line-height: 1.15;
}

.contact-highlight {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Outer wrapper */
.contact-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Main white card container */
.contact-card-container {
    background: #ffffff;
    border: 1px solid rgba(123, 31, 162, 0.05);
    border-radius: 32px;
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1.3fr;
    gap: 3.5rem;
    align-items: center;
    transition: var(--transition-smooth);
}

.contact-card-container:hover {
    box-shadow: 0 30px 60px rgba(123, 31, 162, 0.06);
}

/* Column 1: Details */
.contact-col-details {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.detail-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(123, 31, 162, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--purple-primary);
    transition: var(--transition-smooth);
}

.contact-detail-item:hover .detail-icon-box {
    background-color: var(--purple-primary);
    color: #ffffff;
    transform: scale(1.06);
}

.detail-svg {
    width: 22px;
    height: 22px;
}

.detail-text-box {
    display: flex;
    flex-direction: column;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.detail-link {
    transition: var(--transition-fast);
}

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

.detail-text-line {
    line-height: 1.45;
}

.detail-label {
    font-weight: 700;
    color: var(--text-dark);
}

/* Column 2: Image */
.contact-col-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-room-img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-col-image:hover .contact-room-img {
    transform: scale(1.05);
}

/* Column 3: Form */
.contact-col-form {
    width: 100%;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 0.95rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 12px;
    border: 1.5px solid rgba(123, 31, 162, 0.1);
    background-color: #fafbfc;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--purple-primary);
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(123, 31, 162, 0.06);
}

.form-textarea {
    height: 110px;
    resize: none;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 0.95rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 12px;
    border: 1.5px solid rgba(123, 31, 162, 0.1);
    background-color: #fafbfc;
    color: var(--text-gray);
    outline: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--purple-primary);
    background-color: #ffffff;
    color: var(--text-dark);
}

/* Form valid styles to handle select placeholder color changes */
.form-select:valid {
    color: var(--text-dark);
}

.select-arrow {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-gray);
    pointer-events: none;
    transition: var(--transition-fast);
}

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

/* Submit Button */
.btn-send-message {
    width: 100%;
    background: var(--grad-nav-btn);
    color: var(--text-light);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1.05rem;
    box-shadow: 0 6px 15px rgba(230, 81, 0, 0.15);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-send-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 31, 162, 0.25);
    background: linear-gradient(135deg, #ff5722 0%, var(--purple-light) 100%);
}

.btn-send-message:active {
    transform: translateY(0);
}

/* Success Toast Notification */
.success-toast {
    position: fixed;
    bottom: -120px;
    right: 2rem;
    background: #ffffff;
    border-left: 5px solid #10b981;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 1.25rem 1.75rem;
    z-index: 2000;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    display: flex;
    align-items: center;
    pointer-events: none;
    opacity: 0;
}

.success-toast.show {
    bottom: 2rem;
    opacity: 1;
    pointer-events: auto;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.toast-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    flex-shrink: 0;
}

.toast-icon {
    width: 20px;
    height: 20px;
}

.toast-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.toast-text strong {
    font-size: 1rem;
    color: var(--text-dark);
}

.toast-text span {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* ==========================================================================
   CONTACT RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
    .contact-card-container {
        gap: 2rem;
        padding: 3rem 2rem;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .contact-room-img {
        height: 300px;
    }
}

@media (max-width: 991px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-title {
        font-size: 2.25rem;
    }

    .contact-card-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3.5rem;
        max-width: 620px;
        margin: 0 auto;
    }
    
    .contact-col-image {
        display: none;
    }
}

@media (max-width: 650px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-card-container {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-col-details {
        gap: 1.5rem;
    }

    .detail-icon-box {
        width: 44px;
        height: 44px;
    }

    .detail-svg {
        width: 18px;
        height: 18px;
    }

    .detail-text-box {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background: #ffffff;
    color: var(--text-gray);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Add a very subtle top glow line */
.footer::before {
    display: none;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123, 31, 162, 0.3) 30%, rgba(230, 81, 0, 0.3) 70%, transparent);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    margin-bottom: 50px;
}

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

/* Brand Column */
.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.footer-logo-img {
    height: 172px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.03);
}

.footer-brand-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.75rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.social-icon:hover {
    background: var(--grad-orange);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 81, 0, 0.3);
}

/* Column Titles */
.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--grad-orange);
    border-radius: 2px;
}

/* Links & Lists */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links a {
    font-size: 0.92rem;
    color: var(--text-gray);
    transition: var(--transition-fast);
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--orange-light);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--orange-light);
    padding-left: 4px;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Contact Info Column */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-gray);
}

.footer-contact-info li a {
    transition: var(--transition-fast);
}

.footer-contact-info li a:hover {
    color: var(--orange-light);
}

.footer-contact-info .contact-icon {
    width: 18px;
    height: 18px;
    color: var(--orange-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-abn {
    font-size: 0.92rem;
    color: var(--text-gray);
    background: rgba(0, 0, 0, 0.03);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-abn strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Footer Bottom copyright */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.footer-bottom a {
    color: var(--text-gray);
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--orange-light);
}

/* Footer Scroll Reveal Delays */
.footer-col.scroll-reveal-up {
    transition-delay: var(--reveal-delay, 0s);
}

/* ==========================================================================
   FOOTER RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1rem;
        text-align: center;
    }
    .footer-col-brand {
        grid-column: 1 / span 2;
        align-items: center;
    }
    .footer-col-contact {
        grid-column: 1 / span 2;
        align-items: center;
    }
    .footer-col-links,
    .footer-col-services {
        grid-column: span 1;
        align-items: center;
    }
    .footer-logo {
        align-self: center;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links a:hover {
        padding-left: 0;
    }
    .footer-contact-info li {
        justify-content: center;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
