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

:root {
    /* Color Palette - Nordic Timber Luxury */
    --color-dark-primary: #0a0a09;
    --color-dark-secondary: #131311;
    --color-dark-card: #181816;
    
    --color-timber-light: #dfb17b;
    --color-timber-dark: #8c5b30;
    --color-timber-gradient: linear-gradient(135deg, #dfb17b 0%, #b88653 50%, #8c5b30 100%);
    --color-timber-gradient-hover: linear-gradient(135deg, #ebd1a9 0%, #cf9b66 50%, #a46d3f 100%);
    
    --color-text-primary: #faf7f2;
    --color-text-secondary: #c5beb3;
    --color-text-muted: #888075;
    --color-white: #ffffff;
    
    /* Fonts */
    --font-heading: 'Cinzel', 'Playfair Display', serif;
    --font-body: 'Outfit', 'Inter', sans-serif;
    
    /* Layout Details */
    --container-width: 1200px;
    --section-padding: 8rem 2rem;
    --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);
    
    /* Glassmorphism & Borders */
    --glass-bg: rgba(19, 19, 17, 0.7);
    --glass-border: 1px solid rgba(223, 177, 123, 0.15);
    --glass-border-focus: 1px solid rgba(223, 177, 123, 0.6);
    --blur: blur(12px);
    
    /* Shadows */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 50px -10px rgba(0, 0, 0, 0.8);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-dark-primary);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-secondary);
    background-color: var(--color-dark-primary);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
}

p {
    font-size: 1.1rem;
    font-weight: 300;
}

strong {
    color: var(--color-text-primary);
    font-weight: 500;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 9, 0.7);
    backdrop-filter: var(--blur);
    border-bottom: 1px solid rgba(223, 177, 123, 0.08);
    transition: var(--transition-fast);
    padding: 1.5rem 0;
}

header.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 9, 0.95);
    border-bottom: 1px solid rgba(223, 177, 123, 0.18);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition-fast);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-text span {
    background: var(--color-timber-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-timber-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--color-timber-gradient);
    transition: var(--transition-fast);
}

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

.nav-links a.active {
    color: var(--color-timber-light);
}

.nav-links a.active::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--color-text-primary);
    transition: var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--color-timber-light);
    color: var(--color-timber-light);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-fast);
}

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

.btn:hover {
    color: var(--color-dark-primary);
    border-color: transparent;
    box-shadow: 0 0 25px rgba(223, 177, 123, 0.3);
}

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

.btn-solid {
    background: var(--color-timber-gradient);
    color: var(--color-dark-primary);
    border-color: transparent;
}

.btn-solid::before {
    background: var(--color-timber-gradient-hover);
}

.btn-solid:hover {
    color: var(--color-dark-primary);
}

/* Text Gradient Utilities */
.text-gradient {
    background: var(--color-timber-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Headings */
.section-header {
    max-width: 700px;
    margin-bottom: 5rem;
}

.section-pretitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-timber-light);
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}

.section-title {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 1.5rem;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-timber-gradient);
}

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

.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.05);
}

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

.hero-content {
    max-width: 900px;
    padding-top: 6rem;
}

.hero h1 {
    font-size: 4.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    line-height: 1.15;
}

.hero p {
    font-size: 1.3rem;
    max-width: 650px;
    margin-bottom: 3.5rem;
    color: var(--color-text-secondary);
}

.hero .btn-group {
    display: flex;
    gap: 2rem;
}

.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.scroll-down:hover {
    color: var(--color-timber-light);
}

.scroll-down-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-timber-light), transparent);
    animation: bounceLine 2s infinite;
}

@keyframes bounceLine {
    0%, 100% { height: 40px; opacity: 0.3; }
    50% { height: 60px; opacity: 1; }
}

/* Generic Section Styles */
section {
    padding: var(--section-padding);
}

.section-dark {
    background-color: var(--color-dark-secondary);
}

/* About/Philosophy Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-timber-light);
    margin: 1.5rem;
    z-index: 2;
    pointer-events: none;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.service-card {
    background-color: var(--color-dark-card);
    border: var(--glass-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(223, 177, 123, 0.4);
    box-shadow: var(--shadow-hover);
}

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

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

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

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

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-card p {
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    flex-grow: 1;
    font-size: 1rem;
}

.service-card .btn-link {
    color: var(--color-timber-light);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.service-card .btn-link:hover {
    color: var(--color-white);
    gap: 1rem;
}

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

.stat-item {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 3rem 2rem;
    backdrop-filter: var(--blur);
    border-radius: 4px;
    text-align: center;
    transition: var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(223, 177, 123, 0.05);
    border-color: rgba(223, 177, 123, 0.35);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-timber-light);
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 600;
    background: var(--color-timber-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-secondary);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 10rem 2rem;
    overflow: hidden;
    text-align: center;
}

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

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 9, 0.9);
    z-index: -1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    color: var(--color-text-secondary);
}

/* FAQ Accordion */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border: var(--glass-border);
    background-color: var(--color-dark-card);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: none;
    color: var(--color-text-primary);
}

.faq-toggle-icon {
    font-size: 1.5rem;
    color: var(--color-timber-light);
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: rgba(223, 177, 123, 0.4);
}

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

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

.faq-answer-inner {
    padding: 0 2rem 2rem;
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    border-top: 1px solid rgba(223, 177, 123, 0.05);
    padding-top: 1.5rem;
}

/* Contact Form & Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
}

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

.contact-method {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(223, 177, 123, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-timber-light);
    font-size: 1.2rem;
    background: rgba(223, 177, 123, 0.05);
}

.contact-method h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.contact-method p, .contact-method a {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-method a:hover {
    color: var(--color-timber-light);
}

/* Forms */
.contact-form-wrapper {
    background-color: var(--color-dark-card);
    border: var(--glass-border);
    padding: 4rem;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 2.5rem;
    position: relative;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(223, 177, 123, 0.2);
    padding: 0.8rem 0;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    outline: none;
    transition: var(--transition-fast);
}

.form-label {
    position: absolute;
    top: 0.8rem;
    left: 0;
    color: var(--color-text-muted);
    font-weight: 300;
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -1.2rem;
    font-size: 0.85rem;
    color: var(--color-timber-light);
    letter-spacing: 1px;
}

.form-input:focus {
    border-color: var(--color-timber-light);
}

textarea.form-input {
    min-height: 120px;
    resize: none;
}

.alert-success {
    background: rgba(223, 177, 123, 0.1);
    border: 1px solid var(--color-timber-light);
    color: var(--color-text-primary);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 3rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.validation-errors {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid #dc2626;
    color: var(--color-text-primary);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 3rem;
    list-style: inside;
}

/* Page Banner */
.page-banner {
    height: 45vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 9, 0.95), rgba(10, 10, 9, 0.7));
    z-index: -1;
}

.page-banner-content {
    padding-top: 8rem;
}

.page-banner h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.breadcrumbs {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.breadcrumbs a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
}

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

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: var(--color-text-muted);
    margin-left: 1rem;
}

.breadcrumbs li.active {
    color: var(--color-timber-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.service-main h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.service-main p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-secondary);
}

.service-features-list {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.service-features-list h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.service-features-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-features-list li {
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.1rem;
}

.service-features-list li::before {
    content: '✦';
    color: var(--color-timber-light);
    position: absolute;
    left: 0;
    top: 0;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.specs-widget {
    background-color: var(--color-dark-card);
    border: var(--glass-border);
    border-radius: 4px;
    padding: 3rem;
}

.specs-widget h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(223, 177, 123, 0.1);
    padding-bottom: 1rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 1.2rem 0;
    font-size: 1.05rem;
}

.specs-table tr:not(:last-child) td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table td.spec-name {
    font-weight: 500;
    color: var(--color-text-primary);
    width: 35%;
}

.specs-table td.spec-val {
    color: var(--color-text-secondary);
    text-align: right;
}

.service-gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    border: var(--glass-border);
}

.cta-widget {
    background: linear-gradient(135deg, var(--color-dark-card) 0%, #1c1c19 100%);
    border: 1px solid var(--color-timber-light);
    border-radius: 4px;
    padding: 3.5rem 3rem;
    text-align: center;
}

.cta-widget h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-widget p {
    margin-bottom: 2.5rem;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* Privacy Policy Layout */
.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content {
    background-color: var(--color-dark-card);
    border: var(--glass-border);
    border-radius: 4px;
    padding: 5rem;
}

.privacy-content h2 {
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(223, 177, 123, 0.1);
    padding-bottom: 0.5rem;
}

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

.privacy-content p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
}

.privacy-content ul {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.privacy-content li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
}

.privacy-content li::before {
    content: '▪';
    color: var(--color-timber-light);
    position: absolute;
    left: 0.5rem;
    top: 0;
}

.privacy-meta {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer Section */
footer {
    background-color: #050504;
    border-top: 1px solid rgba(223, 177, 123, 0.08);
    padding: 6rem 0 3rem;
    color: var(--color-text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 6rem;
    margin-bottom: 5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 350px;
}

.footer-nav-col h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--color-text-primary);
}

.footer-nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-col a {
    text-decoration: none;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
    font-size: 1rem;
}

.footer-nav-col a:hover {
    color: var(--color-timber-light);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-info li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 1rem;
}

.footer-contact-info span {
    color: var(--color-timber-light);
}

.footer-bottom {
    border-top: 1px solid rgba(223, 177, 123, 0.05);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

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

.footer-bottom-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* Animations */
.reveal-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

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

@keyframes zoomEffect {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero-bg-animate {
    animation: zoomEffect 25s infinite alternate ease-in-out;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    :root {
        --section-padding: 6rem 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .about-grid, .services-grid, .contact-grid, .service-detail-grid, .footer-grid {
        gap: 4rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 5rem 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    /* Show Hamburger Menu */
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 9, 0.98);
        backdrop-filter: var(--blur);
        border-left: 1px solid rgba(223, 177, 123, 0.15);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        padding: 3rem;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero .btn-group {
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
    }
    
    .hero .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-grid, .services-grid, .contact-grid, .service-detail-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .about-image {
        height: 350px;
    }
    
    .service-card-content {
        padding: 2rem;
    }
    
    .contact-form-wrapper, .privacy-content {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-grid {
        margin-bottom: 3.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding-top: 2rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Reduced Motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
