/* Aljadan Maling - Nordic Minimalist Premium Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --color-canvas: #FBFBFA;
    --color-warm-sand: #F5F3ED;
    --color-slate-blue: #1F3E4D;
    --color-slate-blue-light: #2C576C;
    --color-copper: #D68A57;
    --color-copper-light: #E5A57A;
    --color-charcoal: #1C2024;
    --color-muted-gray: #6A7077;
    --color-white: #FFFFFF;
    --color-border: rgba(28, 32, 36, 0.08);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Easing */
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Shadows & Effects */
    --shadow-soft: 0 10px 30px -10px rgba(31, 62, 77, 0.05);
    --shadow-hover: 0 20px 40px -15px rgba(31, 62, 77, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --blur: blur(12px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-canvas);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-slate-blue);
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.section-dark {
    background-color: var(--color-slate-blue);
    color: var(--color-canvas);
}

.section-dark h1, 
.section-dark h2, 
.section-dark h3,
.section-dark p {
    color: var(--color-canvas);
}

.section-warm {
    background-color: var(--color-warm-sand);
}

/* Typography Helpers */
.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-copper);
    margin-bottom: 1rem;
    font-weight: 600;
    display: inline-block;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.lead {
    font-size: 1.15rem;
    color: var(--color-muted-gray);
    max-width: 700px;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
    padding: 1.5rem 0;
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    box-shadow: var(--shadow-soft);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply; /* Blend nicely with header */
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-slate-blue);
    text-transform: uppercase;
}

.logo-text span {
    color: var(--color-copper);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-item {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-slate-blue);
    position: relative;
}

.nav-item:hover {
    color: var(--color-copper);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-copper);
    transition: var(--transition-fast);
}

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

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--color-canvas);
    border: 1px solid var(--color-border);
    padding: 1rem 0;
    border-radius: 8px;
    width: 240px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-hover);
    z-index: 100;
}

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

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: var(--color-slate-blue);
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--color-warm-sand);
    color: var(--color-copper);
    padding-left: 1.75rem;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-slate-blue);
    color: var(--color-canvas);
    border-color: var(--color-slate-blue);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--color-copper);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--color-white);
    border-color: var(--color-copper);
}

.btn-primary:hover::before {
    width: 100%;
}

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

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--color-slate-blue);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--color-white);
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-copper {
    background-color: var(--color-copper);
    color: var(--color-white);
    border-color: var(--color-copper);
}

.btn-copper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--color-slate-blue);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn-copper:hover {
    color: var(--color-white);
    border-color: var(--color-slate-blue);
}

.btn-copper:hover::before {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-slate-blue);
    transition: var(--transition-fast);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 251, 250, 0.95) 40%, rgba(251, 251, 250, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 2rem;
    opacity: 0;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-muted-gray);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
}

.hero-btn-group {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
}

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

.hero-content h1 {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.3s;
}

.hero-content p {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.6s;
}

.hero-btn-group {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.9s;
}

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

.feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 3.5rem 2.5rem;
    border-radius: 6px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(214, 138, 87, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-copper);
    margin-bottom: 2rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--color-muted-gray);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Interactive Color Showcase */
.color-showcase-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.color-palette-interactive {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.palette-selectors {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.palette-btn {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    background: var(--color-canvas);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.palette-btn.active {
    background: var(--color-slate-blue);
    color: var(--color-white);
    border-color: var(--color-slate-blue);
}

.color-dots {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.color-dot-row {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.color-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1), var(--shadow-soft);
    transition: var(--transition-fast);
}

.color-dot-info {
    flex: 1;
}

.color-dot-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.color-dot-info p {
    font-size: 0.85rem;
    color: var(--color-muted-gray);
}

.showcase-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 480px;
    box-shadow: var(--shadow-hover);
}

.visual-canvas {
    width: 100%;
    height: 100%;
    background-color: #E2E8F0;
    transition: background-color 0.8s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    position: relative;
}

.visual-canvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.02) 70%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.visual-title {
    color: var(--color-white) !important;
    position: relative;
    z-index: 2;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.visual-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    padding: 3.5rem 2rem;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition-fast);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(214, 138, 87, 0.5);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-copper);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.stat-card h4 {
    font-size: 1.1rem;
    color: var(--color-canvas);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.85rem;
    color: rgba(251, 251, 250, 0.6) !important;
    font-weight: 300;
}

/* Services Grid */
.services-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(214, 138, 87, 0.3);
}

.service-card-visual {
    height: 220px;
    position: relative;
    overflow: hidden;
    background-color: var(--color-slate-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-canvas);
    transition: var(--transition-slow);
}

.service-card-visual svg {
    width: 60px;
    height: 60px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.service-card:hover .service-card-visual svg {
    transform: scale(1.15);
    opacity: 1;
}

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

.service-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card-body p {
    color: var(--color-muted-gray);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 2rem;
    flex: 1;
}

.service-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-slate-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.service-card:hover .service-link {
    color: var(--color-copper);
}

.service-card:hover .service-link span {
    transform: translateX(5px);
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-slate-blue);
    cursor: pointer;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-copper);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition-fast);
    color: var(--color-copper);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p {
    color: var(--color-muted-gray);
    font-size: 0.95rem;
    font-weight: 300;
    padding: 1rem 0 0.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
}

/* Contact Info Cards */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

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

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

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-warm-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-copper);
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

.contact-card-detail p {
    color: var(--color-muted-gray);
    font-size: 0.95rem;
    font-weight: 300;
    white-space: pre-line;
}

.contact-form-panel {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 4rem;
    border-radius: 6px;
    box-shadow: var(--shadow-soft);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-slate-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-charcoal);
    background-color: var(--color-canvas);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-copper);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(214, 138, 87, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
}

.alert-success {
    background-color: #E6F4EA;
    color: #137333;
    border: 1px solid #CEEAD6;
}

/* Interior Pages Design System */
.inner-hero {
    background-color: var(--color-slate-blue);
    padding: 10rem 0 6rem;
    color: var(--color-canvas);
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(214, 138, 87, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.inner-hero h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.inner-hero-desc {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(251, 251, 250, 0.8);
    max-width: 800px;
}

.breadcrumbs {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(251, 251, 250, 0.5);
    margin-bottom: 2rem;
}

.breadcrumbs a:hover {
    color: var(--color-copper);
}

.breadcrumbs span {
    color: rgba(251, 251, 250, 0.3);
}

/* Service Detail Page Layout */
.service-detail-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    margin-top: 3.5rem;
}

.service-detail-content h2:first-of-type {
    margin-top: 0;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--color-muted-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.service-detail-visual {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 400px;
    background-color: var(--color-warm-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-detail-visual-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, var(--color-slate-blue) 0%, #172F3B 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    color: var(--color-canvas);
}

.service-detail-visual-fallback svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--color-copper);
}

.service-detail-visual-fallback h3 {
    color: var(--color-white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.service-detail-visual-fallback p {
    color: rgba(251, 251, 250, 0.7) !important;
    font-size: 0.95rem;
    max-width: 400px;
}

.spec-list {
    margin: 2.5rem 0;
}

.spec-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.spec-list li span:first-child {
    font-weight: 600;
    color: var(--color-slate-blue);
}

.spec-list li span:last-child {
    color: var(--color-muted-gray);
    font-weight: 300;
}

/* Sidebar styling */
.sidebar-panel {
    background: var(--color-warm-sand);
    border-radius: 6px;
    padding: 3rem;
    align-self: flex-start;
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    margin-bottom: 3.5rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(31, 62, 77, 0.08);
    padding-bottom: 0.75rem;
}

.sidebar-services-list li {
    margin-bottom: 1rem;
}

.sidebar-services-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-slate-blue);
}

.sidebar-services-list a:hover,
.sidebar-services-list li.active a {
    background-color: var(--color-slate-blue);
    color: var(--color-canvas);
    border-color: var(--color-slate-blue);
}

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

.sidebar-contact-item {
    display: flex;
    gap: 1rem;
}

.sidebar-contact-item svg {
    color: var(--color-copper);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar-contact-item p {
    font-size: 0.95rem;
    color: var(--color-muted-gray);
    font-weight: 300;
}

/* Footer Section */
footer {
    background-color: var(--color-slate-blue);
    color: var(--color-canvas);
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand p {
    color: rgba(251, 251, 250, 0.6) !important;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    font-weight: 300;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.footer-links a {
    color: rgba(251, 251, 250, 0.65) !important;
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--color-copper) !important;
    padding-left: 0.25rem;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact-item svg {
    color: var(--color-copper);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-contact-item p {
    color: rgba(251, 251, 250, 0.75) !important;
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(251, 251, 250, 0.4) !important;
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a:hover {
    color: var(--color-copper) !important;
}

/* Scroll Reveal Hidden States */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid,
    .services-section-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .color-showcase-container,
    .contact-container,
    .service-detail-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none; /* Handled by mobile menu overlay in production if needed, or simple stacking */
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Toggle active state */
    header.mobile-active {
        background: var(--color-canvas) !important;
        height: 100vh;
        overflow: y-scroll;
    }
    
    header.mobile-active .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    
    header.mobile-active .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 2rem;
    }
    
    header.mobile-active .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0.5rem 0 0 1rem;
        width: 100%;
    }
    
    header.mobile-active .mobile-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    header.mobile-active .mobile-toggle span:nth-child(2) {
        opacity: 0;
    }
    header.mobile-active .mobile-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .features-grid,
    .services-section-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
