/* ===================================
   Cascade Fence & Landscape Construction
   Custom CSS - Glassmorphic Design
   =================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --forest-green: #2F4F3E;
    --cedar-brown: #7A4A2E;
    --fog-gray: #F2F4F3;
    
    /* UI Colors */
    --charcoal: #1F1F1F;
    --slate-gray: #6B6F72;
    --steel-gray: #9CA3AF;
    --success-green: #3E7C59;
    --success-green-dark: #356A4D;
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(31, 38, 35, 0.15);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --border-radius: 20px;
    --border-radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--fog-gray);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--forest-green);
}

h1 { font-size: clamp(36px, 5vw, 48px); }
h2 { font-size: clamp(28px, 4vw, 36px); }
h3 { font-size: clamp(22px, 3vw, 28px); }
h4 { font-size: 22px; font-weight: 500; }

p {
    font-size: 16px;
    color: var(--slate-gray);
    margin-bottom: 1rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--cedar-brown);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 18px;
    margin-top: 16px;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--success-green);
    color: #fff;
}

.btn-primary:hover {
    background: var(--success-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 124, 89, 0.3);
}

.btn-secondary {
    background: var(--forest-green);
    color: #fff;
    border: 2px solid var(--forest-green);
}

.btn-secondary:hover {
    background: var(--forest-green-dark);
    color: #fff;
    border-color: var(--forest-green-dark);
    box-shadow: 0 6px 20px rgba(62, 124, 89, 0.3);
}

.btn-secondary-dark {
    background: transparent;
    color: var(--forest-green);
    border: 2px solid var(--forest-green);
}

.btn-secondary-dark:hover {
    background: var(--forest-green);
    color: #fff;
}

.btn-full {
    width: 100%;
}

/* ===================================
   Navigation
   =================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.main-nav.scrolled .nav-links a {
    color: var(--forest-green);
}

.main-nav.scrolled .logo {
    color: var(--forest-green);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--forest-green);
}

.logo-img {
    height: 70px;
    width: auto;
    transition: height 0.3s ease;
}

.main-nav.scrolled .logo-img {
    height: 50px;
}

.logo-icon {
    font-size: 32px;
    color: var(--cedar-brown);
}

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

.logo-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 12px;
    opacity: 0.85;
}

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

.nav-links a {
    color: var(--forest-green);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--cedar-brown);
}

.nav-cta {
    background: var(--success-green);
    padding: 10px 20px;
    border-radius: 8px;
    opacity: 1 !important;
    color: #fff !important;
}

.nav-cta:hover {
    background: var(--success-green-dark);
    color: #fff !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--forest-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.5) 0%, rgba(31, 31, 31, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-width);
    padding: 0 24px;
    display: flex;
    transition: justify-content 0.6s ease;
}

.hero-content.align-left {
    justify-content: flex-start;
}

.hero-content.align-left .hero-card {
    /* Removed animation for smoother transitions */
}

.hero-content.align-right {
    justify-content: flex-end;
}

.hero-content.align-right .hero-card {
    /* Removed animation for smoother transitions */
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.hero-card {
    padding: 50px 60px;
    max-width: 550px;
    text-align: left;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(47, 79, 62, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-card h1 {
    color: var(--forest-green);
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.hero-card h1 span {
    color: var(--cedar-brown);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8), 0 2px 8px rgba(255, 255, 255, 0.4);
}

.hero-card p {
    font-size: 18px;
    color: var(--forest-green);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.slider-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--cedar-brown);
    color: #fff;
    border-color: var(--cedar-brown);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* ===================================
   Trust Badges
   =================================== */
.trust-badges {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a2a 100%);
    padding: 40px 0;
}

.badges-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    flex-shrink: 0;
}

.badge-item span {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
}

/* ===================================
   We Are Great At Section
   =================================== */
.great-at-section {
    padding: var(--section-padding);
    background: var(--fog-gray);
}

.great-at-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.great-at-image {
    position: relative;
}

.great-at-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
}

.great-at-image [class*="elfsight-app"] {
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}

.great-at-image [class*="elfsight-app"] iframe,
.great-at-image [class*="elfsight-app"] > div {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .great-at-image [class*="elfsight-app"] {
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

.great-at-content {
    padding: 50px;
    position: relative;
    margin-left: -80px;
}

.great-at-content h2 {
    margin-bottom: 30px;
}

.great-at-list {
    list-style: none;
    margin-bottom: 30px;
}

.great-at-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 17px;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(122, 74, 46, 0.1);
}

.great-at-list li:last-child {
    border-bottom: none;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(62, 124, 89, 0.15);
    color: var(--success-green);
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #fff 0%, var(--fog-gray) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

a.service-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(31, 38, 35, 0.2);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    margin-bottom: 0;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: var(--section-padding);
    background: var(--fog-gray);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-label {
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-intro {
    font-size: 20px;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    color: var(--cedar-brown);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-text h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.value-text p {
    font-size: 15px;
    margin-bottom: 0;
}

.about-image-stack {
    position: relative;
    height: 500px;
}

.about-image {
    position: absolute;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image.main-image {
    top: 0;
    left: 0;
    width: 80%;
    height: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
}

.about-image.secondary-image {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 250px;
    padding: 12px;
}

.about-image.secondary-image img {
    border-radius: var(--border-radius-sm);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #fff 0%, #f8faf9 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(47, 79, 62, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
}

.projects-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.projects-content {
    text-align: left;
}

.projects-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.projects-content > p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 12px;
}

.projects-content .projects-description {
    color: var(--slate-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.projects-content .placeholder-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(122, 74, 46, 0.08);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--cedar-brown);
}

.projects-content .placeholder-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.projects-slider-placeholder {
    display: flex;
    justify-content: center;
}

.slider-placeholder-box {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px dashed rgba(122, 74, 46, 0.3);
    border-radius: var(--border-radius);
    text-align: center;
}

.slider-placeholder-box .placeholder-icon {
    color: var(--cedar-brown);
    opacity: 0.5;
    margin-bottom: 16px;
}

.slider-placeholder-box p {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--cedar-brown);
    margin-bottom: 4px;
}

.slider-placeholder-box span {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .projects-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .projects-content {
        text-align: center;
    }
    
    .projects-content .placeholder-note {
        justify-content: center;
        text-align: left;
    }
    
    .slider-placeholder-box {
        max-width: 350px;
        margin: 0 auto;
    }
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--forest-green) 0%, #234536 100%);
}

.testimonials-section .section-label {
    color: #fff;
}

.testimonials-section .section-header h2 {
    color: #fff;
}

.testimonials-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    padding: 40px;
    text-align: center;
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.testimonial-stars {
    color: #F59E0B;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 20px;
    color: var(--charcoal);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--forest-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--charcoal);
}

.author-info span {
    font-size: 14px;
    color: var(--slate-gray);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: var(--cedar-brown);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: var(--cedar-brown);
}

/* ===================================
   Brands Section
   =================================== */
.brands-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #faf8f6 0%, #f5f0ec 100%);
    border-top: 4px solid var(--cedar-brown);
}

.brands-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    position: relative;
}

.brands-title-box {
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.brands-title-box .section-label {
    display: block;
    margin-bottom: 12px;
}

.brands-title-box h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.brands-title-box p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.brands-logos-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    margin-top: 60px;
    margin-left: -40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
    justify-items: center;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: scale(1.05);
}

.brand-item img {
    max-width: 180px;
    max-height: 80px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brands-section {
    overflow: hidden;
}

.brands-logos-box {
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .brands-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .brands-logos-box {
        margin-top: 0;
        margin-left: 0;
    }
    
    .brands-title-box {
        text-align: center;
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    position: relative;
    padding: 120px 0;
    min-height: 800px;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.contact-section .container {
    position: relative;
    z-index: 10;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    color: #fff;
    background: rgba(47, 79, 62, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.contact-info .section-label {
    color: #fff;
}

.contact-info h2 {
    color: #fff;
    margin-bottom: 20px;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    opacity: 0.7;
}

.contact-item span {
    font-size: 17px;
}

.free-quote-badge {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
}

.quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.free-quote-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 4px;
    color: #fff;
}

.free-quote-badge p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
}

.free-quote-badge.glass-card strong {
    color: var(--forest-green);
}

.free-quote-badge.glass-card p {
    color: #3d2a1a;
}

.contact-section .free-quote-badge.glass-card strong {
    color: #fff;
}

.contact-section .free-quote-badge.glass-card p {
    color: rgba(255, 255, 255, 0.85);
}

.contact-form-wrapper {
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper h3 {
    margin-bottom: 28px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid rgba(47, 79, 62, 0.15);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest-green);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   Share Section
   =================================== */
.share-section {
    padding: 60px 0;
    background: var(--fog-gray);
}

.share-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    gap: 40px;
}

.share-content h3 {
    margin-bottom: 8px;
}

.share-content p {
    margin-bottom: 0;
}

.share-buttons {
    display: flex;
    gap: 16px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #000; }
.share-btn.email { background: var(--success-green); }
.share-btn.copy { background: var(--cedar-brown); }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Footer
   =================================== */
.main-footer {
    background: linear-gradient(135deg, rgba(47, 79, 62, 0.95) 0%, rgba(74, 107, 90, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-img {
    height: 240px;
    width: auto;
    color: #fff;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
}

.footer-ccb {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--cedar-brown);
}

.footer-services li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.footer-contact .btn {
    margin-top: 16px;
    background: linear-gradient(135deg, #8B5A3C 0%, #7A4A2E 100%);
    color: #fff;
    font-weight: 600;
    padding: 14px 28px;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(122, 74, 46, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact .btn:hover {
    background: linear-gradient(135deg, #9B6A4C 0%, #8B5A3C 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(122, 74, 46, 0.5);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-style: italic;
}

.footer-powered {
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.7;
}

.footer-powered a {
    color: inherit;
    text-decoration: underline;
}

.footer-powered a:hover {
    opacity: 1;
}

.footer-legal-links {
    margin-top: 12px;
    font-size: 13px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Legal Pages Styling */
.legal-content {
    padding: 60px 0 80px;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.legal-wrapper h2 {
    font-family: var(--font-heading);
    color: var(--forest-green);
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cedar-brown);
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper h3 {
    font-family: var(--font-heading);
    color: var(--cedar-brown);
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-wrapper p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-wrapper ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-wrapper li {
    color: #444;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-wrapper a {
    color: var(--success-green);
}

.legal-wrapper a:hover {
    color: var(--forest-green);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--forest-green);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(47, 79, 62, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--cedar-brown);
    transform: translateY(-5px);
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 1024px) {
    .great-at-wrapper,
    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .great-at-content {
        margin-left: 0;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image-stack {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%) scale(0.95);
        opacity: 0;
        pointer-events: none;
        width: calc(100% - 32px);
        max-width: 360px;
        background: var(--forest-green);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        padding: 24px;
        border-radius: 16px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 1000;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    }
    
    .nav-links.active {
        transform: translateX(-50%) scale(1);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-links li {
        width: 100%;
        max-width: 320px;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 16px 24px;
        color: white !important;
        font-size: 17px;
        font-weight: 500;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        text-align: center;
        transition: background 0.2s ease;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.35);
    }
    
    .nav-links .nav-cta {
        background: var(--success-green) !important;
        margin-top: 10px;
    }
    
    .nav-links .nav-cta:hover {
        background: var(--success-green-dark) !important;
    }
    
    .mobile-menu-btn.active span {
        background: var(--forest-green);
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero {
        align-items: flex-end;
        padding-bottom: 120px;
    }
    
    .hero-card {
        padding: 16px 20px;
        max-width: 340px;
        background: rgba(255, 255, 255, 0.7);
    }
    
    .hero-card h1 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .hero-card p {
        font-size: 13px;
        margin-bottom: 14px;
        line-height: 1.4;
    }
    
    .hero-badge {
        padding: 5px 12px;
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .badges-grid {
        gap: 20px;
    }
    
    .badge-item {
        flex-basis: calc(50% - 10px);
        justify-content: center;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .brand-item {
        padding: 10px;
    }
    
    .brand-item img {
        max-width: 120px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .footer-logo {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center !important;
    }
    
    .share-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-image-stack {
        height: auto;
    }
    
    .about-image.main-image {
        position: static;
        width: 100%;
        height: 300px;
    }
    
    .about-image.secondary-image {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 24px; }
    h2 { font-size: 22px; }
    
    .hero-card {
        padding: 14px 16px;
        max-width: 280px;
    }
    
    .hero-card h1 {
        font-size: 19px;
        margin-bottom: 6px;
    }
    
    .hero-card p {
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .badge-item {
        flex-basis: 100%;
    }
    
    .great-at-image img {
        height: 300px;
    }
    
    .great-at-content {
        padding: 30px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
}

/* ===================================
   Page Header (Interior Pages)
   =================================== */
.page-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.page-header-wood::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/wood-texture-bg.png') center/cover;
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--forest-green);
    max-width: 800px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.page-header-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--forest-green);
}

.page-header-content p {
    font-size: 18px;
    opacity: 1;
    color: #4a5a4d;
}

.page-header-content .section-label {
    color: var(--cedar-brown);
}

/* ===================================
   Content Sections (Interior Pages)
   =================================== */
.content-section {
    padding: 80px 0;
}

.content-section.alt-bg {
    background: rgba(255, 255, 255, 0.5);
}

/* Blog Full Page */
.blog-fullpage {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--fog-gray);
}

.blog-fullpage .elfsight-app-61ad3c79-7890-4593-82b8-143c677bf200 {
    width: 100%;
    min-height: calc(100vh - 80px);
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--forest-green);
    margin-bottom: 24px;
}

/* About Page */
.about-full-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-full-content h2 {
    margin-bottom: 24px;
}

.about-full-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.story-block {
    margin-top: 40px;
    padding: 32px;
}

.story-block h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--forest-green);
}

.about-full-image {
    position: sticky;
    top: 120px;
}

.rounded-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(47, 79, 62, 0.95) 0%, rgba(35, 60, 47, 0.98) 100%);
    color: #fff;
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/wood-texture-bg.png') center/cover;
    opacity: 0.08;
    pointer-events: none;
}

.values-section .container {
    position: relative;
    z-index: 1;
}

.values-section .section-header h2 {
    color: #fff;
}

.values-section .section-label {
    color: #d4a574;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

.value-card-icon {
    margin-bottom: 20px;
    color: #d4a574;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
}

.value-card p {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    gap: 40px;
}

.cta-content h2 {
    margin-bottom: 8px;
}

.cta-content p {
    opacity: 0.7;
}

/* Services Page */
.services-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-large {
    display: block;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card-large:hover {
    transform: translateY(-8px);
}

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

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card-content {
    padding: 24px;
}

.service-card-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.learn-more {
    color: var(--cedar-brown);
    font-weight: 600;
    font-size: 14px;
}

/* Deck Feature */
.deck-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.deck-feature-image img {
    width: 100%;
}

.deck-feature-content {
    padding: 40px;
}

.deck-feature-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.deck-feature-content p {
    margin-bottom: 24px;
    color: #666;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #555;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Gallery Page */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--forest-green);
    background: transparent;
    color: var(--forest-green);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--forest-green);
    color: #fff;
}

.gallery-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-item-large {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}

.gallery-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-large:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(30, 60, 40, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-large:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Testimonials Page */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card-full {
    padding: 40px;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonial-card-full .testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--forest-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.author-info strong {
    display: block;
    color: var(--forest-green);
}

.author-info span {
    font-size: 14px;
    color: #888;
}

/* Contact Page */
.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-full h2 {
    margin-bottom: 16px;
}

.contact-details-full {
    margin: 40px 0;
}

.contact-item-full {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item-full .contact-icon {
    color: var(--cedar-brown);
}

.contact-item-full h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item-full p {
    color: #666;
    line-height: 1.6;
}

.contact-form-full {
    padding: 40px;
}

@media (max-width: 768px) {
    .contact-form-full {
        padding: 20px;
        margin: 0 12px;
    }
}

.contact-form-full h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-full {
    width: 100%;
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    background: rgba(30, 60, 40, 0.1);
    color: var(--forest-green);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-meta {
    font-size: 13px;
    color: #888;
}

.blog-coming-soon {
    text-align: center;
    padding: 60px;
    max-width: 600px;
    margin: 0 auto;
}

.blog-coming-soon h3 {
    margin-bottom: 16px;
}

.blog-coming-soon p {
    color: #666;
}

/* Service Detail Pages */
.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.service-detail-content h2 {
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--forest-green);
}

.service-detail-content p {
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

.service-detail-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    padding: 30px;
    margin-bottom: 24px;
}

.sidebar-card h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.sidebar-card p {
    color: #666;
    margin-bottom: 20px;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    color: var(--forest-green);
    font-weight: 500;
}

.sidebar-links a:hover {
    color: var(--cedar-brown);
}

/* Responsive - Interior Pages */
@media (max-width: 1024px) {
    .about-full-wrapper,
    .contact-page-wrapper,
    .service-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-full-image {
        position: static;
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid-large {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .deck-feature {
        grid-template-columns: 1fr;
    }
    
    .service-detail-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 300px;
    }
    
    .page-header-content h1 {
        font-size: 36px;
    }
    
    .values-grid,
    .services-grid-large,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
