/* Updated public/assets/css/styles.css */
/* ==========================================================================
   BestLink Fabricators - Modern Redesign
   Clean, Vibrant Design with Perfect SEO Structure
   ========================================================================== */

/* CSS Variables - Vibrant Blue Theme */
:root {
    /* Primary Brand Colors - Deep Slate Navy */
    --primary-blue: #1e3a5f;      /* Deep Slate Navy */
    --primary-dark: #142b47;      /* Darker Navy */
    --primary-light: #2e5a8e;     /* Medium Navy */
    --primary-lighter: #4d7fb5;   /* Lighter Navy */
    
    /* Accent Colors */
    --accent-orange: #f97316;     /* Vibrant Orange */
    --accent-hover: #ea580c;      /* Darker Orange */
    
    /* Neutral Colors */
    --graphite-black: #0f172a;    /* Dark Text / Footer */
    --dark-gray: #334155;         /* Body Text */
    --medium-gray: #64748b;       /* Muted Text */
    --light-gray: #e2e8f0;        /* Borders / Lines */
    --soft-gray: #f8fafc;         /* Section Background */
    --white: #ffffff;             /* Main Background */
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--graphite-black);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

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

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

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Section Spacing */
section {
    padding: var(--spacing-xl) 0;
}

/* Typography Scale */
.display-1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
}

.display-2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.display-3 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.text-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* Utility Classes */
.text-primary { color: var(--primary-blue) !important; }
.text-accent { color: var(--accent-orange) !important; }
.text-white { color: var(--white) !important; }
.text-dark { color: var(--graphite-black) !important; }
.text-gray { color: var(--medium-gray) !important; }

.bg-primary { background-color: var(--primary-blue) !important; }
.bg-primary-dark { background-color: var(--primary-dark) !important; }
.bg-primary-light { background-color: var(--primary-light) !important; }
.bg-accent { background-color: var(--accent-orange) !important; }
.bg-light { background-color: var(--soft-gray) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-dark { background-color: var(--graphite-black) !important; }

/* Orange utility classes */
.text-orange { color: var(--accent-orange) !important; }
.bg-orange { background-color: var(--accent-orange) !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-hover));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-orange));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 8px solid transparent;
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-ring:nth-child(2) {
    border-top-color: var(--primary-light);
    animation-delay: 0.2s;
}

.loader-ring:nth-child(3) {
    border-top-color: var(--accent-orange);
    animation-delay: 0.4s;
}

.loader-ring:nth-child(4) {
    border-top-color: var(--primary-dark);
    animation-delay: 0.6s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Top Contact Bar - Desktop Only */
.top-contact-bar {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    box-shadow: var(--shadow-sm);
}

.top-contact-bar .row {
    flex-wrap: nowrap;
}

.top-contact-bar .contact-info {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
}

.top-contact-bar .contact-info span {
    white-space: nowrap;
    margin: 0 0.5rem;
    display: inline-flex;
    align-items: center;
}

.top-contact-bar .contact-info a {
    white-space: nowrap;
}

.top-contact-bar a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-normal);
}

.top-contact-bar a:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

.top-contact-bar .separator {
    color: rgba(255, 255, 255, 0.5);
}

.btn-cta-sm {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-cta-sm:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Modern Navbar */
.navbar {
    background-color: var(--white);
    padding: 1.25rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.top-contact-bar.d-none + .navbar {
    top: 3rem;
}

.navbar.scrolled {
    top: 0;
    padding: 0.75rem 0;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--medium-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Contact Button */
.mobile-contact {
    margin-right: 1rem;
}

.mobile-contact-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-normal);
}

.mobile-contact-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.1);
}

/* Navigation Links */
.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--graphite-black);
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
}

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

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

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 80%;
    background: var(--primary-blue);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-hover));
    color: var(--white) !important;
    padding: 0.625rem 1.5rem !important;
    border-radius: var(--radius-md) !important;
    margin-left: 0.5rem !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-orange));
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-cta::after {
    display: none;
}

/* Mobile Menu */
.offcanvas {
    background-color: var(--white);
}

.offcanvas-header {
    border-bottom: 1px solid var(--light-gray);
    padding: 1.5rem;
}

.offcanvas-body {
    padding: 1.5rem;
}

.mobile-contact-info {
    padding: 1.5rem;
    background: var(--soft-gray);
    border-radius: var(--radius-md);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--graphite-black);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-normal);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Sub-page hero (furniture, contact) - static image, shorter */
.hero-section:not(:has(.hero-slider)) {
    min-height: 55vh;
}

/* Fallback for browsers that don't support :has() (furniture/contact pages use <header> tag) */
header.hero-section {
    min-height: 65vh;
    padding-top: 80px; /* Clear fixed navbar */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: var(--spacing-xl) 0;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.feature i {
    color: var(--accent-orange);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 5rem;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.scroll-down {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* Trust Indicators */
.trust-indicators {
    background: linear-gradient(135deg, var(--soft-gray) 0%, var(--white) 100%);
}

.trust-item {
    text-align: center;
    padding: 2rem 1rem;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
}

.trust-count {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.trust-text {
    color: var(--medium-gray);
    font-size: 1rem;
    font-weight: 500;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-orange);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--graphite-black);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Service Cards */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.service-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 58, 95, 0.1), rgba(30, 58, 95, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-link {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition-normal);
}

.service-link:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: rotate(45deg);
}

.service-content {
    padding: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--graphite-black);
}

.service-text {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--primary-blue);
    font-size: 0.875rem;
}

/* Why Choose Us */
.why-choose-section {
    background: linear-gradient(to bottom, var(--soft-gray) 0%, var(--white) 100%);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--graphite-black);
}

.feature-content p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.image-gallery .main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-gallery .main-image img {
    transition: transform var(--transition-slow);
}

.image-gallery .main-image:hover img {
    transform: scale(1.05);
}

.gallery-grid img {
    border-radius: var(--radius-md);
    transition: transform var(--transition-normal);
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Process Section */
.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-light));
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--graphite-black);
}

.step-content p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Project Cards */
.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.project-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 58, 95, 0.1), rgba(30, 58, 95, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-project {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition-normal);
}

.view-project:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: rotate(90deg);
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--graphite-black);
}

.project-category {
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
}

.project-link:hover {
    color: var(--primary-dark);
    gap: 0.5rem;
}

/* Contact Section */
.contact-section {
    background: var(--soft-gray);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-details h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--graphite-black);
}

.contact-details p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.contact-details a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-normal);
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    color: var(--graphite-black);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark-gray);
    transition: var(--transition-normal);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-control::placeholder {
    color: var(--medium-gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-card {
    background: var(--white);
    color: var(--graphite-black);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
}

.cta-title {
    color: var(--graphite-black);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--graphite-black) 0%, #1e293b 100%);
    color: var(--white);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-orange);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent-orange);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-contact a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.developer-link {
    color: var(--accent-orange) !important;
    text-decoration: none;
    font-weight: 600;
}

.developer-link:hover {
    color: var(--accent-hover) !important;
    text-decoration: underline;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   PAGE HERO - About, Services, Contact Pages
   ============================================ */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--graphite-black) 0%, #1e293b 60%, var(--primary-dark) 100%);
    padding: 8rem 0 6rem;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .hero-content {
    padding: 0;
    color: var(--white);
}

.page-hero .hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.page-hero .hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 580px;
    line-height: 1.7;
}

.page-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.page-hero .hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.page-hero .hero-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 380px;
    object-fit: cover;
    box-shadow: var(--shadow-2xl);
}

.page-hero .hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-shape svg {
    display: block;
    width: 100%;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -1rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-hover));
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* Service Badge */
.service-badge {
    position: absolute;
    bottom: -1rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-xl);
}

.service-badge i {
    font-size: 1.5rem;
}

.service-badge span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Breadcrumb nav in hero */
.breadcrumb-nav .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-nav .breadcrumb-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

.breadcrumb-nav .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--accent-orange);
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* Services page image grid */
.services-image-grid .service-preview {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.services-image-grid .service-preview img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.services-image-grid .preview-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Service Category styling on services page */
.service-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}

.service-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.service-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 58, 95, 0.95), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white);
}

.service-image .overlay-content h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.service-image .overlay-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
    font-size: 0.875rem;
}

.service-details {
    padding-left: 1rem;
}

.service-description {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.feature-list li i {
    color: var(--primary-blue);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.service-benefits {
    margin-top: 1.5rem;
}

.service-benefits h5,
.service-features h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--graphite-black);
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--soft-gray);
    padding: 0.625rem 0.875rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.benefit i {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Step Card (services page process) */
.step-card {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* About page specific */
.story-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.story-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
}

.story-image .image-overlay {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-hover));
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.story-image .image-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.story-image .image-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.story-image .image-overlay p {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    margin: 0;
}

.milestone h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.milestone p {
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin: 0;
}

/* Mission/Vision cards */
.mission-card,
.vision-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    height: 100%;
    border-top: 4px solid var(--primary-blue);
    transition: var(--transition-normal);
}

.vision-card {
    border-top-color: var(--accent-orange);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
}

.vision-card .card-icon {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-hover));
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    color: var(--graphite-black);
    margin-bottom: 1rem;
}

.mission-points li,
.vision-points li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.mission-points li i,
.vision-points li i {
    color: var(--primary-blue);
    font-size: 0.75rem;
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border-bottom: 3px solid transparent;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-bottom-color: var(--primary-blue);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--white);
    font-size: 1.5rem;
}

.value-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--graphite-black);
}

.value-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.team-image {
    height: 220px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-content {
    padding: 1.5rem;
}

.team-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-tag {
    background: var(--soft-gray);
    color: var(--primary-blue);
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--light-gray);
}

/* Advantages list */
.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--primary-blue);
    transition: var(--transition-normal);
}

.advantage-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.advantage-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.advantage-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.advantage-content p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.875rem;
}

/* Gallery stats */
.gallery-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid var(--primary-blue);
}

.stat-item h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.stat-item p {
    color: var(--medium-gray);
    font-size: 0.8rem;
    margin: 0;
    font-weight: 500;
}

/* Service Advantages */
.service-advantages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.advantage {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.advantage i {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* Furniture page specific */
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.hero-bg img.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.6) 100%);
    z-index: 1;
}

.furniture-overview .about-img img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
}

.furniture-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
}

.furniture-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.furniture-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.furniture-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.furniture-card:hover .furniture-img img {
    transform: scale(1.08);
}

.furniture-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 58, 95, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.furniture-card:hover .furniture-overlay {
    opacity: 1;
}

.furniture-info {
    padding: 1.25rem;
}

.furniture-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.furniture-info p {
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

/* Orange button (furniture page) */
.btn-orange {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-hover));
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-orange:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-orange));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-outline-orange {
    background: transparent;
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outline-orange:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section divider */
.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* Contact page */
.contact-hero {
    background-image: linear-gradient(135deg, var(--graphite-black) 0%, #1e293b 60%, var(--primary-dark) 100%);
}

/* Projects page */
.projects-hero {
    background-image: linear-gradient(135deg, var(--graphite-black) 0%, #1e293b 60%, var(--primary-dark) 100%);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .page-hero .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .top-contact-bar {
        display: none !important;
    }

    .navbar {
        top: 0;
        padding: 1rem 0;
    }

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

    .page-hero {
        padding: 7rem 0 5rem;
        min-height: auto;
    }

    .page-hero .hero-title {
        font-size: 2.25rem;
    }

    .page-hero .hero-image img {
        height: 300px;
    }

    .page-hero .hero-image {
        margin-top: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        margin-bottom: 2rem;
    }

    .cta-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .service-details {
        padding-left: 0;
        padding-top: 1rem;
    }

    .feature-item:hover {
        transform: none;
    }

    .contact-item:hover {
        transform: none;
    }

    .story-image .image-overlay {
        right: 0;
        bottom: -1rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 2.5rem 0;
    }

    .hero-section {
        min-height: 85vh;
    }

    .hero-content {
        padding: 5rem 0 3rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-features {
        gap: 0.75rem;
    }

    .display-1 { font-size: 2.25rem; }
    .display-2 { font-size: 2rem; }
    .display-3 { font-size: 1.75rem; }

    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.625rem; }
    h3 { font-size: 1.375rem; }

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

    .section-description {
        font-size: 1rem;
    }

    .page-hero {
        padding: 6rem 0 3.5rem;
    }

    .page-hero .hero-title {
        font-size: 1.875rem;
    }

    .page-hero .hero-subtitle {
        font-size: 1rem;
    }

    .page-hero .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .page-hero .hero-image img {
        height: 260px;
    }

    .experience-badge,
    .service-badge {
        position: static;
        display: inline-flex;
        margin-top: 1rem;
    }

    .trust-item {
        padding: 1.25rem 0.5rem;
    }

    .trust-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .trust-count {
        font-size: 2rem;
    }

    .whatsapp-float {
        bottom: 4.5rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .slider-controls {
        bottom: 1rem;
    }

    .scroll-indicator {
        bottom: 3.5rem;
    }

    .service-card .service-content {
        padding: 1.5rem;
    }

    .service-img {
        height: 200px;
    }

    .project-image {
        height: 200px;
    }

    .cta-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .cta-title {
        font-size: 1.625rem;
    }

    .cta-buttons {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .feature-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-category {
        padding: 1.75rem;
    }

    .service-image img {
        height: 250px;
    }

    .gallery-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .navbar-toggler {
        margin-right: 0;
        padding: 0.375rem 0.625rem;
    }

    .mobile-contact {
        margin-right: 0.5rem;
    }

    .logo-name {
        font-size: 1.25rem;
    }

    .hero-section {
        min-height: 100svh;
        min-height: 100vh;
    }

    .hero-content {
        padding: 5rem 0 4rem;
        text-align: left;
    }

    .hero-title {
        font-size: 1.625rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        width: 100% !important;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.625rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }

    .btn-sm {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.9375rem;
    }

    .page-hero {
        padding: 5.5rem 0 3rem;
    }

    .page-hero .hero-title {
        font-size: 1.625rem;
    }

    .page-hero .hero-subtitle {
        font-size: 0.9375rem;
    }

    .page-hero .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .page-hero .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .page-hero .hero-image {
        display: none;
    }

    .hero-shape {
        display: none;
    }

    .trust-item {
        padding: 1rem 0.25rem;
    }

    .trust-count {
        font-size: 1.75rem;
    }

    .trust-text {
        font-size: 0.8rem;
    }

    .service-card,
    .project-card {
        margin-bottom: 0;
    }

    .service-img {
        height: 180px;
    }

    .service-content {
        padding: 1.25rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .contact-form-card {
        padding: 1.25rem;
    }

    .contact-form-card h3 {
        font-size: 1.375rem;
    }

    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .cta-card {
        padding: 1.75rem 1.25rem;
    }

    .cta-title {
        font-size: 1.375rem;
    }

    .cta-text {
        font-size: 0.9375rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        margin: 0 !important;
    }

    .footer {
        padding-top: 2.5rem;
        padding-bottom: 1.25rem;
    }

    .footer .col-md-6:last-child {
        margin-top: 0.5rem;
        text-align: left !important;
    }

    .offcanvas {
        --bs-offcanvas-width: 100vw !important;
    }

    .offcanvas-body {
        overflow-x: hidden;
        padding: 1rem;
    }

    .mobile-contact-info p,
    .mobile-contact-info a {
        word-break: break-word;
    }

    .mission-card,
    .vision-card {
        padding: 1.75rem 1.25rem;
    }

    .team-image {
        height: 200px;
    }

    .story-image .image-overlay {
        position: static;
        margin-top: 1rem;
        border-radius: var(--radius-md);
        display: inline-block;
    }

    .service-category {
        padding: 1.25rem;
    }

    .service-image img {
        height: 200px;
    }

    .service-cta {
        flex-direction: column;
    }

    .service-cta .btn {
        width: 100%;
        justify-content: center;
        margin: 0 !important;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }

    .step-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }

    .furniture-img {
        height: 190px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
}

/* ============================================
   PROJECTS PAGE
   ============================================ */

/* Hero background image (projects page) */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-background .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(29,78,216,0.55) 100%);
    z-index: 1;
}

.page-hero .hero-background ~ .container,
.page-hero .hero-background ~ * > .container {
    position: relative;
    z-index: 2;
}

/* When page-hero has a background image, the SVG shape is already above it */
.page-hero .hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

/* Portfolio stats in hero */
.portfolio-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.portfolio-stats .stat h3 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.2rem;
    line-height: 1;
}

.portfolio-stats .stat p {
    color: rgba(255,255,255,0.75);
    font-size: 0.8125rem;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Project filter bar */
.project-filter {
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 75px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.filter-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.75rem 0;
}

.filter-btn {
    padding: 0.4375rem 1.125rem;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--dark-gray);
    border-radius: 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.filter-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(30,58,95,0.3);
}

/* Project card enhancements */
.project-image {
    position: relative;
}

.project-category {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    z-index: 2;
}

.category-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.2rem 0.625rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary-blue);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.view-project-btn:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: scale(1.05);
}

.project-excerpt {
    color: var(--medium-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.project-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.875rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--light-gray);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--medium-gray);
    font-size: 0.8rem;
}

.meta-item i {
    color: var(--primary-blue);
    font-size: 0.7rem;
}

/* Empty state */
.empty-state {
    padding: 4rem 2rem;
}

.empty-state i {
    display: block;
    margin-bottom: 1.25rem;
    color: var(--medium-gray);
    opacity: 0.5;
}

.empty-state h4 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

/* ============================================
   WARDROBE PAGE
   ============================================ */
.wardrobe-hero {
    padding-top: 100px;
    padding-bottom: 4rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-card {
    transition: all var(--transition-normal);
    border-bottom: 3px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent-orange);
    box-shadow: var(--shadow-xl) !important;
}

.contact-card i {
    display: block;
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* ============================================
   BUTTON ADDITIONS
   ============================================ */
.btn-outline-dark {
    background: transparent;
    color: var(--graphite-black);
    border: 2px solid var(--graphite-black);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-outline-dark:hover {
    background: var(--graphite-black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   MOBILE FIXES FOR NEWLY ADDED SECTIONS
   ============================================ */
@media (max-width: 768px) {
    .portfolio-stats {
        gap: 1.25rem;
    }

    .portfolio-stats .stat h3 {
        font-size: 1.5rem;
    }

    .filter-options {
        gap: 0.4rem;
    }

    .filter-btn {
        padding: 0.375rem 0.875rem;
        font-size: 0.75rem;
    }

    .project-filter {
        top: 68px;
    }

    .wardrobe-hero {
        padding-top: 90px;
        padding-bottom: 2.5rem;
    }
}

@media (max-width: 576px) {
    .portfolio-stats {
        gap: 1rem;
    }

    .portfolio-stats .stat h3 {
        font-size: 1.375rem;
    }

    .filter-options {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0.75rem 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-options::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    .project-meta {
        gap: 0.75rem;
    }

    .wardrobe-hero {
        padding-top: 85px;
        padding-bottom: 2rem;
    }

    .btn-outline-dark {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .contact-card {
        margin-bottom: 0;
    }
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .back-to-top,
    .navbar-toggler,
    .btn-cta-sm,
    .slider-controls,
    .scroll-indicator {
        display: none !important;
    }
    
    .navbar {
        position: static;
        box-shadow: none;
    }
    
    .hero-slider,
    .hero-slide::before {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        background: white;
        color: black;
    }
    
    .hero-content {
        color: black;
    }
}