/* ==========================================================================
   Max Interior Design - Production-Ready Master Stylesheet
   Architecture: Premium Luxury Modern Turnkey Interior Design & Construction
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Tokens (Matched to Reference Website) */
    --primary: #121519;          /* Deep Charcoal Black */
    --secondary: #1B1F26;        /* Dark Obsidian Slate */
    --accent: #D48D3B;           /* Warm Copper Bronze / Gold */
    --accent-hover: #C27C2B;
    --accent-light: rgba(212, 141, 59, 0.14);
    --bg-white: #FFFFFF;
    --bg-section: #F8FAFC;       /* Soft Section Background */
    --bg-dark-section: #16191E;  /* Dark Section Background */
    --text-dark: #121519;
    --text-body: #374151;        /* Muted Body Text */
    --text-muted: #6B7280;
    --border-color: #E5E7EB;
    --border-gold: rgba(212, 141, 59, 0.35);

    /* Glassmorphism Tokens */
    --glass-bg: rgba(18, 21, 25, 0.90);
    --glass-border: rgba(212, 141, 59, 0.25);
    --glass-light: rgba(255, 255, 255, 0.7);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Montserrat', sans-serif;

    /* Transition & Shadows */
    --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(18, 21, 25, 0.12);
    --shadow-lg: 0 20px 40px -10px rgba(18, 21, 25, 0.2);
    --shadow-gold: 0 10px 30px rgba(212, 141, 59, 0.28);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Typography Utility Classes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition-smooth);
}
a:hover {
    color: var(--accent-hover);
}

.text-gold { color: var(--accent) !important; }
.bg-primary-dark { background-color: var(--primary) !important; color: #ffffff; }
.bg-secondary-dark { background-color: var(--secondary) !important; color: #ffffff; }
.bg-section-light { background-color: var(--bg-section) !important; }

/* Subtitle Badges */
.section-subtitle {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 35px;
}
.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 2px;
    background-color: var(--accent);
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    position: relative;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Luxury Buttons */
.btn-gold {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    background: linear-gradient(135deg, var(--accent) 0%, #b59453 100%);
    color: var(--primary) !important;
    border: none;
    border-radius: 4px;
    box-shadow: var(--shadow-gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}
.btn-gold:hover::before {
    left: 100%;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 141, 59, 0.4);
    color: var(--primary) !important;
}

.btn-outline-gold {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    background: transparent;
    color: var(--accent) !important;
    border: 1px solid var(--accent);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}
.btn-outline-gold:hover {
    background: var(--accent);
    color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-dark {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    background-color: var(--primary);
    color: #ffffff !important;
    border: 1px solid var(--secondary);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}
.btn-dark:hover {
    background-color: var(--accent);
    color: var(--primary) !important;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Header & Top Bar */
.top-bar {
    background-color: var(--primary);
    color: #94A3B8;
    font-size: 0.8rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar a {
    color: #CBD5E1;
}
.top-bar a:hover {
    color: var(--accent);
}
.top-bar-info {
    display: flex;
    gap: 20px;
}
.top-bar-socials {
    display: flex;
    gap: 12px;
}

/* Compact Glassmorphism Main Navbar */
.navbar-custom {
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.45rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition-smooth);
}
.navbar-custom.scrolled {
    padding: 0.35rem 0;
    background-color: rgba(15, 23, 42, 0.96);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.navbar-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border: 1px solid var(--accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
}
.brand-text {
    display: flex;
    flex-direction: column;
}
.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
    line-height: 1;
}
.brand-title span {
    color: var(--accent);
}
.brand-tagline {
    font-family: var(--font-accent);
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 1px;
}

.nav-link-custom {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #E2E8F0 !important;
    padding: 0.35rem 0.55rem !important;
    position: relative;
    white-space: nowrap;
    transition: var(--transition-smooth);
}
.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}
.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--accent) !important;
}
.nav-link-custom:hover::after, .nav-link-custom.active::after {
    width: 70%;
}

.btn-gold.btn-sm {
    padding: 0.45rem 1.15rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Mega Menu */
.has-mega-menu {
    position: static !important;
}
.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--secondary);
    border-top: 2px solid var(--accent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 2.5rem 0;
    z-index: 1000;
}
.has-mega-menu:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-title {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 141, 59, 0.2);
    padding-bottom: 0.5rem;
}
.mega-menu-list {
    list-style: none;
}
.mega-menu-list li {
    margin-bottom: 0.6rem;
}
.mega-menu-list a {
    color: #CBD5E1;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}
.mega-menu-list a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* Hero Section & Swiper Background Slider */
.hero-section {
    position: relative;
    min-height: 90vh;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 21, 25, 0.85) 0%, rgba(27, 31, 38, 0.75) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transform: scale(1);
    transition: transform 6s ease;
}
.swiper-slide-active .hero-slide-bg {
    transform: scale(1.08);
}
.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 21, 25, 0.88) 0%, rgba(27, 31, 38, 0.72) 100%);
}

.hero-swiper-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}
.hero-swiper-prev, .hero-swiper-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(18, 21, 25, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.hero-swiper-prev:hover, .hero-swiper-next:hover {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    padding: 6rem 0 4rem;
}
.hero-headline {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}
.hero-headline span {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #CBD5E1;
    max-width: 650px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

@media (max-width: 992px) {
    .hero-headline { font-size: 2.8rem; }
}
@media (max-width: 576px) {
    .hero-headline { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
}

/* Floating Statistics Card on Hero */
.hero-stats-bar {
    background: rgba(30, 41, 59, 0.75);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.75rem 2rem;
    margin-top: 3rem;
}
.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child {
    border-right: none;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.stat-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94A3B8;
    margin-top: 0.5rem;
}

/* Luxury Service Cards with High-Res Photography */
.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 3;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}
.service-card:hover::before {
    opacity: 1;
}

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: var(--accent);
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    border: 1px solid var(--border-gold);
    z-index: 2;
}

.service-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}
.service-card:hover .service-title {
    color: var(--accent);
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-link {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}
.service-card:hover .service-link {
    color: var(--accent);
}

/* Dream Project Reference Banner Section */
.dream-project-banner {
    position: relative;
    padding: 7rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}
.dream-project-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%);
    z-index: 1;
}
.dream-project-content {
    position: relative;
    z-index: 2;
}
.btn-white-pill {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.85rem 2.25rem;
    background-color: #ffffff;
    color: var(--primary) !important;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}
.btn-white-pill:hover {
    background-color: var(--accent);
    color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Portfolio Masonry & Filters */
.portfolio-filter-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 3rem;
}
.filter-btn {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-body);
    transition: var(--transition-smooth);
    cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
}

.portfolio-item-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}
.portfolio-img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.portfolio-item-card:hover .portfolio-img-wrapper img {
    transform: scale(1.08);
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #ffffff;
}
.portfolio-item-card:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-category {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.4rem;
}
.portfolio-item-title {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

/* Before / After Slider Component */
.before-after-container {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    user-select: none;
}
.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.ba-after {
    width: 50%;
    border-right: 3px solid var(--accent);
    z-index: 2;
}
.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--accent);
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}
.ba-slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
    background-color: var(--primary);
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

/* Minimal Industry Cards */
.industry-minimal-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem 1rem;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    box-shadow: var(--shadow-sm);
}
.industry-minimal-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-6px);
}
.industry-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 auto 1.25rem;
    transition: var(--transition-smooth);
}
.industry-minimal-card:hover .industry-icon-circle {
    background: var(--primary);
    color: var(--accent);
    transform: scale(1.1);
}
.industry-title {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0;
}

/* Detailed Process Cards */
.process-card-detailed {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.75rem;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
}
.process-card-detailed:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.process-step-badge {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.process-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.process-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
}
.process-deliverables {
    font-size: 0.75rem;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
    margin-top: auto;
}

/* Progress of Work Visual Cards */
.progress-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-sm);
}
.progress-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}
.progress-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.progress-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.progress-card:hover .progress-img-wrapper img {
    transform: scale(1.08);
}
.progress-step-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}
.progress-card-body {
    padding: 1.75rem;
}

/* Material Excellence Feature Card */
.material-feature-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-md);
}
.material-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.material-feature-card:hover img {
    transform: scale(1.08);
}
.material-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(18, 21, 25, 0.2) 0%, rgba(18, 21, 25, 0.9) 100%);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
}

/* Client Logos Marquee / Grid */
.client-logo-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.client-logo-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}
.client-logo-card svg {
    max-width: 100%;
    height: auto;
    display: block;
}
.client-logo-name {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    height: 100%;
}
.testimonial-rating {
    color: #F59E0B;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}
.testimonial-quote {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 2rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}
.author-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
    transform: translateX(-50%);
}
.timeline-step-item {
    position: relative;
    margin-bottom: 3.5rem;
}
.timeline-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: var(--shadow-gold);
}
.timeline-content-card {
    width: 45%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}
.timeline-step-item:nth-child(even) .timeline-content-card {
    margin-left: auto;
}

@media (max-width: 768px) {
    .process-timeline::before { left: 25px; }
    .timeline-number { left: 25px; }
    .timeline-content-card { width: calc(100% - 70px); margin-left: 70px !important; }
}

/* Accordion Custom Styling */
.accordion-custom .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 6px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}
.accordion-custom .accordion-button {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    background-color: var(--bg-white);
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
}
.accordion-custom .accordion-button:not(.collapsed) {
    color: var(--accent);
    background-color: var(--bg-section);
}
.accordion-custom .accordion-button::after {
    filter: brightness(0.5);
}
.accordion-custom .accordion-body {
    padding: 1.5rem;
    color: var(--text-body);
    background-color: var(--bg-white);
}

/* Forms & Input Controls */
.form-control-custom {
    width: 100%;
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition-smooth);
}
.form-control-custom:focus {
    outline: none;
    background-color: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.15);
}

.form-label-custom {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

/* Footer Section */
.footer-dark {
    background-color: var(--primary);
    color: #CBD5E1;
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(212, 141, 59, 0.25);
}
.footer-dark p, .footer-dark .small, .footer-dark small {
    color: #CBD5E1 !important;
}
.footer-title {
    font-family: var(--font-heading);
    color: #ffffff !important;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}
.footer-links {
    list-style: none;
    padding-left: 0;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: #CBD5E1 !important;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.footer-links a:hover {
    color: var(--accent) !important;
    transform: translateX(4px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 4rem;
    font-size: 0.85rem;
    color: #CBD5E1 !important;
}
.footer-bottom a {
    color: #CBD5E1 !important;
}
.footer-bottom a:hover {
    color: var(--accent) !important;
}

/* 5-Column Grid Utility */
@media (min-width: 768px) {
    .col-md-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Creative Page Banner Section */
.creative-banner-section {
    background: radial-gradient(circle at 80% 20%, rgba(212, 141, 59, 0.15) 0%, rgba(18, 21, 25, 0.98) 70%), linear-gradient(135deg, #121519 0%, #1B1F26 100%);
    position: relative;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    overflow: hidden;
}
.creative-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 141, 59, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}
.banner-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 141, 59, 0.15);
    border: 1px solid var(--border-gold);
    color: var(--accent);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.creative-banner-img-frame {
    position: relative;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 141, 59, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.creative-banner-img-frame img {
    border-radius: 12px;
    width: 100%;
    height: 360px;
    object-fit: cover;
}
.floating-banner-card-top {
    position: absolute;
    top: -20px;
    right: -20px;
    background: rgba(27, 31, 38, 0.95);
    border: 1px solid var(--border-gold);
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 3;
    animation: floatSmooth 4s ease-in-out infinite;
}
.floating-banner-card-bottom {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(27, 31, 38, 0.95);
    border: 1px solid var(--border-gold);
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 3;
    animation: floatSmooth 4s ease-in-out infinite 2s;
}
@keyframes floatSmooth {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Page Banner / Breadcrumb Header */
.page-banner-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    padding: 6rem 0 4rem;
    color: #ffffff;
    overflow: hidden;
}
.page-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(200, 169, 106, 0.15) 0%, transparent 60%);
}
.breadcrumb-custom {
    display: flex;
    gap: 10px;
    align-items: center;
    list-style: none;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.preloader-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important;
}
.preloader-brand {
    text-align: center;
    margin-bottom: 2rem;
}
.preloader-brand h2 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 0.25rem;
}
.preloader-brand span {
    font-family: var(--font-accent);
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-uppercase: uppercase;
}
.preloader-progress-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}
.preloader-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--accent);
    animation: preloaderFill 1.2s ease forwards;
}
@keyframes preloaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}
.breadcrumb-custom a {
    color: #94A3B8;
}
.breadcrumb-custom a:hover {
    color: var(--accent);
}
.breadcrumb-custom span {
    color: var(--accent);
}
