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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65;
    color: #2c3e50;
    font-weight: 400;
    overflow-x: hidden;
    background: 
        linear-gradient(135deg, rgba(101, 67, 33, 0.05) 0%, rgba(139, 69, 19, 0.03) 100%),
        repeating-linear-gradient(
            90deg,
            rgba(160, 82, 45, 0.02) 0px,
            rgba(160, 82, 45, 0.02) 2px,
            rgba(139, 69, 19, 0.015) 2px,
            rgba(139, 69, 19, 0.015) 4px
        );
    background-attachment: fixed;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Reduced from 120px to match slimmer nav */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
}

/* Header Styles */
header {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%),
        repeating-linear-gradient(
            45deg,
            rgba(139, 69, 19, 0.05) 0px,
            rgba(139, 69, 19, 0.05) 1px,
            transparent 1px,
            transparent 4px
        );
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(101, 67, 33, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid rgba(139, 69, 19, 0.3);
}

header.scrolled {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%),
        repeating-linear-gradient(
            45deg,
            rgba(139, 69, 19, 0.08) 0px,
            rgba(139, 69, 19, 0.08) 1px,
            transparent 1px,
            transparent 4px
        );
    box-shadow: 0 4px 20px rgba(101, 67, 33, 0.25);
}

nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.75rem 3rem; /* More compact */
    gap: 1.5rem; /* Tighter spacing */
}

.logo h1 {
    color: #654321;
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem; /* Slightly smaller */
    font-weight: 600;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    letter-spacing: -0.3px;
}

.logo .tagline {
    color: #8B4513;
    font-size: 0.8rem; /* Smaller */
    font-style: italic;
    letter-spacing: 0.5px;
    margin-top: 2px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem; /* More compact spacing */
    justify-self: center;
}

.nav-links a {
    color: #654321;
    text-decoration: none;
    font-weight: 600;
    padding: 0.4rem 0.8rem; /* More compact padding */
    border-radius: 6px; /* Smaller radius */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.2px; /* Tighter spacing */
    text-transform: uppercase;
    font-size: 0.85rem; /* Slightly smaller */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-links a:hover {
    color: #8B4513;
    transform: translateY(-1px);
    background: rgba(139, 69, 19, 0.1);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.7);
}

/* Company Logo Styles */
.company-logo {
    display: flex;
    align-items: center;
    justify-self: end;
}

.company-logo img {
    height: 75px; /* Smaller to match streamlined design */
    width: auto;
    object-fit: contain;
    border-radius: 6px; /* Smaller radius */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px; /* Smaller padding */
    border: 2px solid rgba(139, 69, 19, 0.2);
}

.company-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #8B4513;
    border-radius: 2px;
    transition: all 0.3s ease;
}

nav.nav-open .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

nav.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
}

nav.nav-open .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(139, 69, 19, 0.3)), url('images/Drawing.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.1), rgba(210, 105, 30, 0.1));
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-content h2 {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.cta-button {
    background: linear-gradient(45deg, #D2691E, #CD853F);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(210, 105, 30, 0.3);
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 48px rgba(139, 69, 19, 0.4);
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section:nth-child(even) {
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.03) 0%, rgba(101, 67, 33, 0.02) 100%),
        repeating-linear-gradient(
            0deg,
            rgba(160, 82, 45, 0.02) 0px,
            rgba(160, 82, 45, 0.02) 1px,
            transparent 1px,
            transparent 8px
        );
}

.section:nth-child(odd) {
    background: 
        linear-gradient(135deg, rgba(101, 67, 33, 0.04) 0%, rgba(139, 69, 19, 0.02) 100%),
        repeating-linear-gradient(
            90deg,
            rgba(139, 69, 19, 0.015) 0px,
            rgba(139, 69, 19, 0.015) 1px,
            transparent 1px,
            transparent 6px
        );
}

.section h2 {
    text-align: center;
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #D2691E, #CD853F);
    border-radius: 2px;
}

/* Add subtle background patterns */
.section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(101, 67, 33, 0.04) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 20px,
            rgba(160, 82, 45, 0.01) 20px,
            rgba(160, 82, 45, 0.01) 22px
        );
    pointer-events: none;
}

/* Add subtle texture and depth */
.section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 69, 19, 0.005) 2px,
            rgba(139, 69, 19, 0.005) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.section > .container {
    position: relative;
    z-index: 2;
}

/* Enhanced content backgrounds */
.services-grid,
.photo-gallery {
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.06) 0%, rgba(101, 67, 33, 0.04) 100%),
        repeating-linear-gradient(
            45deg,
            rgba(160, 82, 45, 0.02) 0px,
            rgba(160, 82, 45, 0.02) 2px,
            transparent 2px,
            transparent 8px
        );
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(139, 69, 19, 0.15);
    box-shadow: 
        0 15px 35px rgba(101, 67, 33, 0.1),
        inset 0 1px 0 rgba(244, 228, 188, 0.1);
}

/* About Section Enhancements */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about-text {
    text-align: center;
    margin-bottom: 4rem;
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.08) 0%, rgba(101, 67, 33, 0.06) 100%),
        repeating-linear-gradient(
            90deg,
            rgba(160, 82, 45, 0.02) 0px,
            rgba(160, 82, 45, 0.02) 1px,
            transparent 1px,
            transparent 6px
        );
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(101, 67, 33, 0.12),
        inset 0 1px 0 rgba(244, 228, 188, 0.1);
    border: 2px solid rgba(139, 69, 19, 0.15);
    position: relative;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #8B4513, #A0522D, #CD853F);
    border-radius: 20px 20px 0 0;
}

.about-text p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #4a5568;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature {
    text-align: center;
    padding: 3rem 2rem;
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.06) 0%, rgba(101, 67, 33, 0.04) 100%),
        repeating-linear-gradient(
            45deg,
            rgba(160, 82, 45, 0.015) 0px,
            rgba(160, 82, 45, 0.015) 1px,
            transparent 1px,
            transparent 4px
        );
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(101, 67, 33, 0.1),
        inset 0 1px 0 rgba(244, 228, 188, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(139, 69, 19, 0.12);
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
}

.feature:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(101, 67, 33, 0.18),
        inset 0 1px 0 rgba(244, 228, 188, 0.12);
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.08) 0%, rgba(101, 67, 33, 0.06) 100%),
        repeating-linear-gradient(
            45deg,
            rgba(160, 82, 45, 0.02) 0px,
            rgba(160, 82, 45, 0.02) 1px,
            transparent 1px,
            transparent 4px
        );
}

.feature h4 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'Crimson Pro', serif;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.08) 0%, rgba(101, 67, 33, 0.06) 100%),
        repeating-linear-gradient(
            0deg,
            rgba(160, 82, 45, 0.03) 0px,
            rgba(160, 82, 45, 0.03) 1px,
            rgba(139, 69, 19, 0.02) 1px,
            rgba(139, 69, 19, 0.02) 3px
        );
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(101, 67, 33, 0.15),
        inset 0 1px 0 rgba(244, 228, 188, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(139, 69, 19, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #8B4513, #A0522D, #CD853F);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(101, 67, 33, 0.25),
        inset 0 1px 0 rgba(244, 228, 188, 0.2);
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.12) 0%, rgba(101, 67, 33, 0.08) 100%),
        repeating-linear-gradient(
            0deg,
            rgba(160, 82, 45, 0.04) 0px,
            rgba(160, 82, 45, 0.04) 1px,
            rgba(139, 69, 19, 0.03) 1px,
            rgba(139, 69, 19, 0.03) 3px
        );
}

.service-card h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    color: #8B4513;
    filter: drop-shadow(0 4px 8px rgba(139, 69, 19, 0.2));
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1) translateY(-5px);
    color: #D2691E;
    filter: drop-shadow(0 6px 12px rgba(139, 69, 19, 0.3));
}

/* Portfolio Section */
.portfolio-intro {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.06) 0%, rgba(101, 67, 33, 0.04) 100%),
        repeating-linear-gradient(
            45deg,
            rgba(160, 82, 45, 0.015) 0px,
            rgba(160, 82, 45, 0.015) 1px,
            transparent 1px,
            transparent 5px
        );
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(139, 69, 19, 0.12);
    margin-bottom: 3rem;
    box-shadow: 
        0 12px 30px rgba(101, 67, 33, 0.08),
        inset 0 1px 0 rgba(244, 228, 188, 0.05);
}

/* Trust Signals */
.trust-signals {
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(101, 67, 33, 0.08) 100%),
        repeating-linear-gradient(
            0deg,
            rgba(160, 82, 45, 0.03) 0px,
            rgba(160, 82, 45, 0.03) 2px,
            rgba(139, 69, 19, 0.02) 2px,
            rgba(139, 69, 19, 0.02) 4px
        );
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 20px;
    border: 2px solid rgba(139, 69, 19, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(101, 67, 33, 0.15),
        inset 0 1px 0 rgba(244, 228, 188, 0.1);
}

.trust-signals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #8B4513, #A0522D, #CD853F);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    padding: 1.5rem;
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(101, 67, 33, 0.03) 100%),
        repeating-linear-gradient(
            90deg,
            rgba(160, 82, 45, 0.01) 0px,
            rgba(160, 82, 45, 0.01) 1px,
            transparent 1px,
            transparent 3px
        );
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(101, 67, 33, 0.08),
        inset 0 1px 0 rgba(244, 228, 188, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 35px rgba(101, 67, 33, 0.12),
        inset 0 1px 0 rgba(244, 228, 188, 0.08);
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.08) 0%, rgba(101, 67, 33, 0.05) 100%),
        repeating-linear-gradient(
            90deg,
            rgba(160, 82, 45, 0.015) 0px,
            rgba(160, 82, 45, 0.015) 1px,
            transparent 1px,
            transparent 3px
        );
}

.trust-number {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D2691E;
    margin-bottom: 0.5rem;
    display: block;
}

.trust-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Gallery Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
    border: 2px solid rgba(139, 69, 19, 0.2);
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #D2691E, #CD853F);
    transition: left 0.4s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    border-color: #8B4513;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

/* Photo Gallery Grid */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
    aspect-ratio: 4/3;
    display: block;
    opacity: 1;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.1), rgba(210, 105, 30, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.2);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Image loading and error handling */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: linear-gradient(45deg, #8B4513, #D2691E);
}

/* Fallback for broken images */
.gallery-item img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Ensure images load smoothly */
.gallery-item img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item img[loading="lazy"].loaded {
    opacity: 1;
}


/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Placeholder for missing images */
.gallery-item img[src*=".jpg"]:not([src=""]) {
    display: block;
}

.gallery-item img[src*=".jpg"] {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    position: relative;
}

.gallery-item img[src*=".jpg"]:after {
    content: 'Image Coming Soon\A' attr(alt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-weight: bold;
    white-space: pre-line;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
    padding: 0 2rem;
}

.lightbox-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Animation for gallery filter */
.gallery-item.hidden {
    display: none;
}

.gallery-item.visible {
    display: block;
    transform: scale(1);
    pointer-events: auto;
    transition: all 0.3s ease;
}

.portfolio-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

/* Contact Form */
.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(139, 69, 19, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #D2691E, #CD853F);
}

.contact-form h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(139, 69, 19, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #D2691E;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.15);
}

.contact-form textarea {
    height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form button {
    width: 100%;
    background: linear-gradient(45deg, #D2691E, #CD853F);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.3);
}

/* Contact Section Enhancements */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h3 {
    color: #8B4513;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 12px;
    border-left: 4px solid #8B4513;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.1);
}

.contact-item strong {
    display: block;
    margin-bottom: 0.8rem;
    color: #8B4513;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #D2691E;
    text-decoration: underline;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
}

/* Call-to-Action Section */
.cta-section {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e4df 100%);
    color: #8B4513;
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(139, 69, 19, 0.1);
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wood" patternUnits="userSpaceOnUse" width="100" height="20"><rect width="100" height="20" fill="%23f5f3f0"/><path d="M0 5h100M0 15h100" stroke="%238B4513" stroke-width="0.3" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23wood)" opacity="0.3"/></svg>');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-family: 'Crimson Pro', serif;
    text-shadow: none;
    font-weight: 600;
    color: #8B4513;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #654321;
    text-shadow: none;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(139, 69, 19, 0.2);
}

.cta-btn.primary {
    background: transparent;
    color: #8B4513;
    border: 1px solid rgba(139, 69, 19, 0.6);
    text-shadow: none;
}

.cta-btn.primary:hover {
    background: rgba(139, 69, 19, 0.08);
    color: #654321;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(139, 69, 19, 0.25);
}

.cta-btn.secondary {
    background: transparent;
    color: #8B4513;
    border: 1px solid rgba(139, 69, 19, 0.4);
    text-shadow: none;
}

.cta-btn.secondary:hover {
    background: rgba(139, 69, 19, 0.05);
    color: #654321;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(139, 69, 19, 0.2);
    text-shadow: none;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-content {
        padding: 0 1.5rem;
        margin: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .cta-btn {
        width: 240px;
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #D2691E, #CD853F);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #D2691E;
    margin-bottom: 1.5rem;
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    color: #ecf0f1;
    font-size: 1.05rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section ul li:hover {
    color: #D2691E;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(52, 73, 94, 0.5);
    color: #95a5a6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px; /* Reduced from 100px for slimmer mobile nav */
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    nav {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .trust-signals {
        margin: 2rem 0;
        padding: 3rem 1rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 500px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .filter-btn {
        width: 250px;
        padding: 12px 24px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        display: none;
    }
    
    .lightbox-content {
        max-width: 95%;
        padding: 0 1rem;
    }
    
    .lightbox-close {
        top: -30px;
        right: 10px;
        font-size: 1.5rem;
    }
    
    /* Mobile optimizations for hero */
    .hero {
        background-attachment: scroll;
        min-height: 70vh;
        padding: 2rem 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    /* Mobile responsive adjustments for header with logo */
    nav {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .logo {
        grid-column: 1;
        grid-row: 1;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo .tagline {
        font-size: 0.75rem;
    }

    .company-logo {
        display: none;
    }

    .hamburger {
        display: flex;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: center;
    }

    .nav-links {
        grid-column: 1 / -1;
        grid-row: 2;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        padding: 0.75rem 0;
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid rgba(139, 69, 19, 0.15);
        width: 100%;
    }

    nav.nav-open .nav-links {
        display: flex;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.5rem 1.5rem;
        width: 100%;
        text-align: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.service-card {
    animation: fadeInUp 0.8s ease;
}

/* Animation Styles */
.feature,
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature.animate,
.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature:nth-child(1) { transition-delay: 0.1s; }
.feature:nth-child(2) { transition-delay: 0.2s; }
.feature:nth-child(3) { transition-delay: 0.3s; }

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

.gallery-item {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation for gallery items */
.gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-item:nth-child(3) { transition-delay: 0.15s; }
.gallery-item:nth-child(4) { transition-delay: 0.2s; }
.gallery-item:nth-child(5) { transition-delay: 0.25s; }
.gallery-item:nth-child(6) { transition-delay: 0.3s; }
.gallery-item:nth-child(7) { transition-delay: 0.35s; }
.gallery-item:nth-child(8) { transition-delay: 0.4s; }
.gallery-item:nth-child(9) { transition-delay: 0.45s; }

/* Extra small screens - single column for trust items */
@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }
    
    .trust-item {
        padding: 1.25rem;
    }
}

/* Tablet screens - 2x2 grid for trust items */
@media (min-width: 481px) and (max-width: 900px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 500px;
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.03) 0%, rgba(101, 67, 33, 0.02) 100%),
        repeating-linear-gradient(
            90deg,
            rgba(160, 82, 45, 0.01) 0px,
            rgba(160, 82, 45, 0.01) 1px,
            transparent 1px,
            transparent 3px
        );
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(101, 67, 33, 0.08),
        inset 0 1px 0 rgba(244, 228, 188, 0.05);
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 35px rgba(101, 67, 33, 0.12),
        inset 0 1px 0 rgba(244, 228, 188, 0.08);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-content p {
    font-style: italic;
    color: #654321;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author h4 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-family: 'Crimson Pro', serif;
}

.testimonial-author span {
    color: #A0522D;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Owner Section */
.owner-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.owner-text h2 {
    color: #8B4513;
    font-family: 'Crimson Pro', serif;
    margin-bottom: 0.5rem;
}

.owner-text h3 {
    color: #A0522D;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.owner-text p {
    color: #654321;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.certifications {
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(101, 67, 33, 0.03) 100%),
        repeating-linear-gradient(
            90deg,
            rgba(160, 82, 45, 0.01) 0px,
            rgba(160, 82, 45, 0.01) 1px,
            transparent 1px,
            transparent 3px
        );
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.certifications h4 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-family: 'Crimson Pro', serif;
}

.cert-list {
    display: grid;
    gap: 1rem;
}

.cert-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.cert-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cert-item strong {
    color: #8B4513;
    font-weight: 600;
}

.cert-item span {
    color: #A0522D;
    font-size: 0.9rem;
}

.owner-quote {
    margin-top: 2rem;
    padding: 2rem;
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.08) 0%, rgba(101, 67, 33, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid #8B4513;
}

.owner-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #654321;
    margin: 0;
    line-height: 1.6;
}

.owner-quote cite {
    display: block;
    margin-top: 1rem;
    color: #8B4513;
    font-weight: 600;
    font-style: normal;
}

.owner-image {
    text-align: center;
}

.owner-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(101, 67, 33, 0.2);
}

.image-caption {
    margin-top: 1rem;
    color: #A0522D;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .owner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cert-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.03) 0%, rgba(101, 67, 33, 0.02) 100%),
        repeating-linear-gradient(
            90deg,
            rgba(160, 82, 45, 0.01) 0px,
            rgba(160, 82, 45, 0.01) 1px,
            transparent 1px,
            transparent 3px
        );
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(101, 67, 33, 0.1);
}

.faq-item h3 {
    color: #8B4513;
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Typography for Professional Craftsmanship */

/* Professional button typography */
.cta-button, .filter-btn, button {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Navigation typography refinements */
.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Enhanced body text for better readability */
.about-text p,
.owner-text p,
.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

/* Quote styling */
blockquote {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 4px solid #8B4513;
    color: #555;
}

/* ── How It Works ── */
.process-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 46px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 2px;
    background: linear-gradient(90deg, #D2691E, #CD853F);
    opacity: 0.3;
    pointer-events: none;
}

.process-step {
    text-align: center;
    padding: 2.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,244,240,0.9));
    border-radius: 20px;
    border: 2px solid rgba(139, 69, 19, 0.12);
    box-shadow: 0 10px 30px rgba(101, 67, 33, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(101, 67, 33, 0.15);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(45deg, #D2691E, #CD853F);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Crimson Pro', serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.3);
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    color: #8B4513;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.process-step p {
    color: #666;
    line-height: 1.65;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps::before { display: none; }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ── Before / After Slider ── */
.ba-intro {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}

.ba-slider {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
    box-shadow: 0 20px 60px rgba(101, 67, 33, 0.2);
    aspect-ratio: 4/3;
    background: #1a1008;
}

.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-before {
    clip-path: inset(0 50% 0 0);
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 3px;
    background: rgba(255,255,255,0.85);
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.ba-handle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B4513;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    pointer-events: none;
}

.ba-label {
    position: absolute;
    top: 1rem;
    background: rgba(0,0,0,0.55);
    color: white;
    padding: 0.3rem 0.85rem;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
    z-index: 5;
}

.ba-label-left  { left: 1rem; }
.ba-label-right { right: 1rem; }

/* ── Google Reviews ── */
.google-reviews-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.google-rating-box {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(101, 67, 33, 0.1);
    border: 2px solid rgba(139, 69, 19, 0.1);
}

.google-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.google-wordmark {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3c4043;
}

.google-stars {
    font-size: 2rem;
    color: #FBBC05;
    letter-spacing: 4px;
    margin-bottom: 1.25rem;
}

.google-status {
    font-size: 1.05rem;
    color: #654321;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.google-ask {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.google-review-btn {
    display: inline-block;
    background: linear-gradient(45deg, #D2691E, #CD853F);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.25);
}

.google-review-btn:hover {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

/* ── SMS Button ── */
.sms-btn {
    display: inline-block;
    margin-left: 0.85rem;
    background: linear-gradient(45deg, #D2691E, #CD853F);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    vertical-align: middle;
    white-space: nowrap;
}

.sms-btn:hover {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    transform: translateY(-1px);
}

/* ── Availability Note ── */
.availability-note {
    border-left-color: #D2691E;
    background: linear-gradient(135deg, #fff8f0, #fff3e6);
}

.availability-note a {
    color: #8B4513;
    font-weight: 600;
    text-decoration: none;
}

.availability-note a:hover {
    text-decoration: underline;
}

/* ── Reviews Coming Soon ── */
.reviews-coming-soon {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f4f0, #f0e8df);
    border-radius: 16px;
}

.reviews-coming-soon p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.review-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.review-link-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.review-link-btn.google {
    background: #4285F4;
    color: white;
}

.review-link-btn.google:hover {
    background: #3367D6;
    transform: translateY(-2px);
}

.review-link-btn.facebook {
    background: #1877F2;
    color: white;
}

.review-link-btn.facebook:hover {
    background: #145DBF;
    transform: translateY(-2px);
}

/* ── Interior Page Header ── */
.page-header {
    background: linear-gradient(135deg, #8B4513 0%, #5C2E00 100%);
    color: white;
    padding: 5rem 0 3rem;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Featured Work Teaser (index.html) ── */
.featured-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.featured-gallery .gallery-item {
    aspect-ratio: 4/3;
}

.view-portfolio-wrap {
    text-align: center;
    margin-top: 2.5rem;
}

.view-portfolio-btn {
    display: inline-block;
    background: linear-gradient(45deg, #D2691E, #CD853F);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.25);
}

.view-portfolio-btn:hover {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

/* ── Portfolio Stats ── */
.portfolio-stats {
    background: linear-gradient(135deg, #f8f4f0, #f0e8df);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.portfolio-stats h3 {
    color: #8B4513;
    margin-bottom: 1.5rem;
}

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

.stat-item h4 {
    font-size: 2rem;
    color: #D2691E;
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666;
}

/* ── Contact Page Icons ── */
.contact-methods .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0e8df;
}

.contact-methods .contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #D2691E, #CD853F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-note {
    font-size: 0.82rem;
    color: #888;
    margin-top: 0.2rem;
}

/* ── Contact Benefits ── */
.why-choose-us { background: #f8f4f0; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.benefit-icon {
    color: #D2691E;
    margin-bottom: 0.75rem;
}

.benefit-item h3 {
    font-size: 1rem;
    color: #5C2E00;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.88rem;
    color: #666;
}

/* ── Contact Page Testimonials ── */
.contact-testimonials { background: white; }

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-slide {
    background: #f8f4f0;
    border-radius: 10px;
    padding: 1.5rem;
}

.testimonial-slide blockquote {
    font-style: italic;
    color: #555;
    margin: 0.75rem 0;
    line-height: 1.6;
}

.testimonial-slide cite {
    font-size: 0.9rem;
    color: #8B4513;
    font-weight: 600;
}

/* ── Form layout for contact.html ── */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-description {
    color: #666;
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #555;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.form-note {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin-top: 0.75rem;
}

.form-success {
    text-align: center;
    padding: 3rem 1.5rem;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 64px;
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    color: #5C3317;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.form-success p {
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.form-success a {
    color: #D2691E;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #D2691E, #CD853F);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    transform: translateY(-2px);
}

/* ── Portfolio bottom note ── */
.portfolio-bottom {
    margin-top: 2rem;
}

/* ── Responsive: interior pages ── */
@media (max-width: 768px) {
    .page-header { padding: 4rem 1rem 2rem; }
    .page-header h1 { font-size: 1.8rem; }
    .featured-gallery { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .featured-gallery { grid-template-columns: 1fr; }
}

/* ─── Back-to-top button ─────────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 46px;
    height: 46px;
    background: #D2691E;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 998;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: #b8571a; }

/* ─── Sticky mobile CTA bar ──────────────────────────────────────────────── */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 -3px 16px rgba(0,0,0,0.18);
}
.mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 15px 10px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: white;
}
.mobile-cta-call { background: #5C3317; }
.mobile-cta-call:hover { background: #4a2912; }
.mobile-cta-quote { background: #D2691E; }
.mobile-cta-quote:hover { background: #b8571a; }

@media (max-width: 768px) {
    .mobile-cta-bar { display: flex; }
    /* Prevent content hiding behind the fixed bar */
    body { padding-bottom: 56px; }
    /* Move back-to-top above the CTA bar */
    .back-to-top { bottom: 70px; }
}
