/* TASAWARA - Main Stylesheet */

/* --- CSS Variables (Camel / Brick Theme) --- */
:root {
    --primary-dark: #7A4A2A;      /* Deep Brick */
    --primary: #B8805A;           /* Camel */
    --primary-blue: #B8805A;      /* alias for backward compat */
    --primary-light: #D4A87A;     /* Light Camel */
    --accent: #A06740;            /* Brick Brown */
    --accent-light: #E8D5C0;      /* Warm Cream */
    --accent-green: #E8D5C0;      /* alias for backward compat */
    --bg-light: #F5EDE4;          /* Warm Cream BG */
    --text-dark: #2C2016;
    --text-gray: #7A6A5C;
    --white: #ffffff;
    --shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 12px;
    --radius-pill: 50px;
    --font-family: 'Kanit', sans-serif;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

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

.btn-outline {
    background-color: var(--white);
    color: var(--text-dark);
    border: 1px solid #d1d5db;
}

.btn-outline:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

.btn-search {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 10px;
}
        
.btn-search:hover {
    background-color: var(--primary-dark);
}

.section-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-gray);
}

/* --- Header --- */
header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.2rem;
}
.logo img { height: 48px; width: auto; display: block; }

.logo i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

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

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-btn {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.phone-btn:hover {
    background-color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    background: linear-gradient(to right, rgba(5, 5, 10, .95) 0%, rgba(45, 45, 52, .40) 60%, transparent 100%), url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0 80px 0;
    color: var(--white);
}

.hero-content {
    max-width: 690px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero .eyebrow {
    color: #A06740;
    margin-bottom: 22px;
}
.eyebrow {
    font-family: var(--font-family);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(3.1rem, 7vw, 6.7rem);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: .98;
    margin-bottom: 15px;
}

.hero-content h1 em {
    color: #A06740;
    font-style: normal;
}

.hero-copy {
    color: rgba(255,255,255,.78);
    font-size: clamp(.98rem, 2vw, 1.1rem);
    margin: 28px 0 38px;
    max-width: 450px;
    line-height: 1.6;
}

.hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}

.hero-actions .btn-primary {
    background-color: var(--primary-blue);
    border: none;
}

.btn-ghost {
    border: 1px solid var(--white);
    color: var(--text-dark);
    background: var(--white);
}
.btn-ghost:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.hero-scroll {
    align-items: center;
    bottom: 38px;
    display: flex;
    font-family: var(--font-family);
    font-size: .68rem;
    gap: 12px;
    letter-spacing: .14em;
    opacity: .75;
    position: absolute;
    right: max(24px, calc((100vw - 1200px) / 2));
    text-transform: uppercase;
    transform: rotate(90deg) translateX(100%);
    transform-origin: right bottom;
    z-index: 2;
}
.hero-scroll::before {
    background: var(--white);
    content: "";
    height: 1px;
    width: 45px;
}

/* --- Features Section --- */
.features {
    padding: 100px 0 60px 0;
    background-color: var(--white);
}

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

.feature-item {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius);
    transition: 0.3s;
}

.feature-item:hover {
    background-color: var(--accent-green);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-green);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 15px auto;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.section-header-center {
    text-align: center;
    margin-bottom: 20px;
}

.section-header-center h2 {
    font-size: 2rem;
    color: var(--text-dark);
}

.section-header-center div {
    width: 50px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 15px auto 0 auto;
}

/* --- Projects Section --- */
.projects {
    padding: 60px 0;
    background-color: var(--white);
}

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

.project-card {
    background: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.project-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.project-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.project-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
}

.project-info {
    padding: 15px 20px 20px 20px;
}

.project-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-info .location {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.project-specs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.project-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f3f4f6;
    padding-top: 10px;
}
        
.project-footer .price {
    font-weight: 600;
    color: var(--text-dark);
}

.project-footer .link-arrow {
    color: var(--primary-blue);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

/* --- Promotion Section --- */
.promotion {
    padding: 60px 0;
}

.promo-wrapper {
    background: linear-gradient(135deg, #F5EDE4 0%, #ffffff 50%, #FAF0E8 100%);
    border-radius: var(--radius);
    display: flex;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.promo-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-content h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.promo-content p {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 500;
}

.promo-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.promo-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.promo-list li i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.promo-img {
    flex: 1;
    min-height: 300px;
    position: relative;
}

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

/* --- Past Works --- */
.past-works {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.work-item {
    border-radius: var(--radius);
    overflow: hidden;
    height: 180px;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* --- Testimonials --- */
/* =========================================
   FOOTER — White Theme
   ========================================= */
footer {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 60px 0 20px 0;
    border-top: 1px solid #e5e7eb;
}

/* 3-Column Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.3rem;
}
.footer-logo img { height: 45px; width: auto; display: block; }
        
.footer-logo i {
    color: var(--primary-blue);
    font-size: 1.8rem;
}
.footer-logo span {
    color: var(--text-dark);
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--text-gray, #666);
    font-size: 1rem;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-color, #7A4A2A);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.social-icons a:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(184, 128, 90, 0.4);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 10px;
}
        
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 8px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.footer-contact-info div {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact-info i {
    margin-top: 4px;
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-gray);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom a {
    color: var(--text-gray);
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--primary-blue);
}

/* --- Responsive Styles --- */

/* Tablets & Small Laptops (< 1024px) */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2 Columns on Tablet */
        gap: 40px;
    }
    .nav-menu {
        gap: 15px;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

/* Mobile Devices (< 768px) */
@media (max-width: 768px) {
    /* Mobile Nav */
    .nav-menu {
        display: none;
        flex-direction: column;
        background: var(--white);
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        align-items: flex-start;
        gap: 15px;
    }
    .nav-menu.active {
        display: flex;
    }
    .header-contact .phone-btn {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 50px 0 50px 0;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .hero-scroll { display: none; }

    /* Promo */
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .works-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Promo */
    .promo-wrapper {
        flex-direction: column;
    }
    .promo-img {
        min-height: 200px;
        order: -1;
    }
    .promo-content {
        padding: 25px;
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
        gap: 30px;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-col h4::after {
        margin: 0 auto;
        left: 0; right: 0;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .works-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .section-title-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- Contact Section --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 30px;
}
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-info-item i {
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}
.contact-info-item span {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.5;
}
.contact-form-col {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-group .required {
    color: #dc2626;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(184, 128, 90, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
#formStatus {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* --- Promotion Section --- */
.promotion {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.promo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.promo-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.promo-content > p {
    color: var(--text-gray);
    margin-bottom: 20px;
}
.promo-list {
    list-style: none;
    padding: 0;
}
.promo-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}
.promo-list li i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}
.promo-img img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* --- Project Cards Addons --- */
.project-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.project-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.project-card:hover .project-img-wrap img {
    transform: scale(1.05);
}
.project-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 500;
}
.project-info {
    padding: 18px;
}
.project-info h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.project-info .location {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}
.project-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}
.project-specs span {
    font-size: 0.82rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}
.project-specs i {
    color: var(--primary-blue);
}
.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}
.project-footer .price {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}
.link-arrow {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.link-arrow:hover i {
    transform: translateX(4px);
}

/* --- 404 Page --- */
.error-page {
    text-align: center;
    padding: 120px 20px;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.error-page h1 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}
.error-page p {
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 500px;
}

/* =========================================
   PAGE HEADER (Inner Pages)
   ========================================= */
.page-header {
    padding: 60px 0 30px;
    background: linear-gradient(135deg, #7A4A2A 0%, #B8805A 100%);
    color: #fff;
    text-align: center;
}
.page-header h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.page-header .breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.page-header .breadcrumb a {
    color: rgba(255,255,255,0.9);
    transition: color 0.3s;
}
.page-header .breadcrumb a:hover {
    color: #A06740;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-intro {
    padding: 80px 0;
}
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.about-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.about-content .divider {
    width: 50px;
    height: 3px;
    background: var(--primary-blue);
    margin-bottom: 20px;
}
.about-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}
.about-mission {
    padding: 60px 0;
    background: var(--bg-light);
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mission-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.mission-card:hover {
    transform: translateY(-5px);
}
.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-green);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}
.mission-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.mission-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
}
.about-stats {
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item {
    padding: 30px;
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}
.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 5px;
}
.about-cta {
    padding: 60px 0;
    background: var(--bg-light);
}
.cta-box {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #7A4A2A 0%, #B8805A 100%);
    border-radius: var(--radius);
    color: #fff;
}
.cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.cta-box p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}
.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-box .btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
}
.cta-box .btn-outline:hover {
    background: rgba(255,255,255,0.2);
}

/* =========================================
   SERVICES PAGE
   ========================================= */
.services-overview {
    padding: 80px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 25px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f3f4f6;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-green);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}
.service-features {
    list-style: none;
    padding: 0;
}
.service-features li {
    font-size: 0.85rem;
    color: var(--text-gray);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-features li i {
    color: var(--primary-blue);
    font-size: 0.8rem;
}
.services-process {
    padding: 60px 0;
    background: var(--bg-light);
}
.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.step-item {
    text-align: center;
    flex: 1;
    min-width: 160px;
    max-width: 220px;
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 15px;
}
.step-item h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.step-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}
.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 20px;
    color: var(--primary-blue);
    font-size: 1.2rem;
}
.services-cta {
    padding: 60px 0;
}

/* =========================================
   FAQ PAGE
   ========================================= */
.faq-section {
    padding: 80px 0;
}
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--white);
    transition: background 0.3s;
    user-select: none;
}
.faq-question:hover {
    background: var(--bg-light);
}
.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-blue);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-item.active .faq-question {
    background: var(--bg-light);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    background: var(--white);
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* =========================================
   GALLERY PAGE
   ========================================= */
.gallery-section {
    padding: 80px 0;
}
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px;
    border: 1px solid #d1d5db;
    border-radius: var(--radius-pill);
    background: var(--white);
    color: var(--text-gray);
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}
.filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}
.filter-btn.active {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(122,74,42,0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Gallery Pagination */
.gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}
.gallery-pagination .page-btn {
    min-width: 40px;
    height: 40px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: var(--text-gray);
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.gallery-pagination .page-btn:hover:not(:disabled) {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}
.gallery-pagination .page-btn.active {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}
.gallery-pagination .page-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

/* =========================================
   SECTION PADDING UTILITY
   ========================================= */
.section {
    padding: 80px 0;
}

/* =========================================
   RESPONSIVE OVERRIDES FOR NEW PAGES
   ========================================= */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    .step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
}
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section {
        padding: 48px 0;
    }
}
@media (max-width: 576px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-number {
        font-size: 2rem;
    }
    .cta-box {
        padding: 30px 20px;
    }
}

/* --- Responsive Contact / Promo --- */
@media (max-width: 992px) {
    .contact-wrapper,
    .promo-wrapper {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .projects-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-col {
        padding: 25px;
    }
}
