/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1a1a2e;
    --color-secondary: #c9a96e;
    --color-accent: #d4af37;
    --color-dark: #0f0f1a;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #fff;
    --color-bg-alt: #f8f6f3;
    --color-bg-dark: #1a1a2e;
    --color-border: #e8e4df;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --max-width: 1200px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: -40px auto 60px;
    font-size: 1.1rem;
}

/* ===== PLACEHOLDER IMAGES ===== */
.placeholder-img {
    background: linear-gradient(135deg, #d4cfc9 0%, #bfb8ae 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-img::after {
    content: attr(data-label);
    color: #8a8177;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.placeholder-img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid #a09689;
    border-radius: 50%;
    opacity: 0.5;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

.btn-primary:hover {
    background: #b8944d;
    border-color: #b8944d;
}

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

.btn-secondary:hover {
    background: #2a2a44;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--color-primary);
}

.btn-large {
    padding: 18px 44px;
    font-size: 1.05rem;
}

.center-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== HEADER / NAV ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.header.scrolled .nav-menu a {
    color: var(--color-text);
}

.header.scrolled .nav-menu a:hover,
.header.scrolled .nav-menu a.active {
    color: var(--color-secondary);
}

.header.scrolled .nav-cta {
    border-color: var(--color-secondary) !important;
    color: var(--color-secondary) !important;
}

.header.scrolled .nav-cta:hover {
    background: var(--color-secondary) !important;
    color: #fff !important;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--transition);
}

.header.scrolled .logo-img {
    filter: none;
}

/* Inner pages with dark header still show white logo */
.page-nav .logo-img {
    filter: brightness(0) invert(1);
}

.page-nav.scrolled .logo-img {
    filter: none;
}

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

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-secondary);
}

.nav-cta {
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
    padding: 8px 20px !important;
    border-radius: 4px !important;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all var(--transition);
}

.header.scrolled .nav-toggle span {
    background: var(--color-primary);
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
    background: url('../images/GoodlineForest.jpg') center 15%/cover no-repeat;
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 26, 0.55);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff;
    font-weight: 600;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    font-size: 1.1rem;
}

/* Force dark nav styling on inner pages that have dark page-header */
.page-nav .logo-good {
    color: #fff;
}

.page-nav .nav-menu a {
    color: rgba(255, 255, 255, 0.9);
}

.page-nav .nav-toggle span {
    background: #fff;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/GoodlineForest.jpg') center 10%/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 26, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

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

/* ===== INTRO ===== */
.intro {
    background: var(--color-bg);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.intro-content .lead {
    font-size: 1.15rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.intro-content p {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    background: var(--color-bg-alt);
}

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

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--color-secondary);
}

.service-icon {
    width: 56px;
    height: 56px;
    color: var(--color-secondary);
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--color-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ===== FEATURED PROJECTS ===== */
.featured-projects {
    background: var(--color-bg);
}

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

.project-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.project-image {
    height: 240px;
    width: 100%;
    overflow: hidden;
}

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

.project-card:hover .project-image img,
.project-page-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 24px;
}

.project-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.project-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ===== HOW WE WORK ===== */
.how-we-work {
    background: var(--color-bg-alt);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--color-primary);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-style: italic;
    margin-top: 8px;
    font-size: 0.9rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--color-secondary);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list svg {
    flex-shrink: 0;
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 60px;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== SERVICES PAGE ===== */
.service-banner {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.15) 0%, rgba(248, 246, 243, 1) 100%);
}

.service-section:nth-child(even) .service-banner-overlay {
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.15) 0%, rgba(255, 255, 255, 1) 100%);
}

.service-section {
    padding: 80px 0;
}

.service-section .service-banner + .container {
    padding-top: 0;
}

.service-section .service-banner ~ .container .service-section-header {
    margin-top: 30px;
}

.service-section:nth-child(even) {
    background: var(--color-bg-alt);
}

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

.service-section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.service-section-header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: #fff;
    padding: 28px;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.service-item:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.service-item h3 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.service-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.service-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 6px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* ===== PROJECTS PAGE ===== */
.projects-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-page-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    cursor: pointer;
}

.project-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.project-page-card .project-image {
    height: 220px;
}

.project-page-card .project-info {
    padding: 24px;
}

.project-page-card .project-meta {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.project-page-card .project-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Project Detail Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal {
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background var(--transition);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Gallery */
.modal-gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    line-height: 1;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-thumbs {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    background: var(--color-bg-alt);
    overflow-x: auto;
}

.gallery-thumb {
    width: 72px;
    height: 52px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: border-color var(--transition);
    opacity: 0.6;
    transition: opacity var(--transition), border-color var(--transition);
}

.gallery-thumb.active {
    border-color: var(--color-secondary);
    opacity: 1;
}

.gallery-thumb:hover {
    opacity: 1;
}

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

.modal-body {
    padding: 36px;
}

.modal-body h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.modal-body .project-detail-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.modal-body .project-description {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--color-text);
}

.modal-body .project-scope h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.modal-body .project-scope ul {
    list-style: disc;
    padding-left: 20px;
}

.modal-body .project-scope li {
    margin-bottom: 6px;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ===== PROJECT LEADING PAGE ===== */
.pl-intro {
    background: var(--color-bg);
}

.pl-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pl-intro-content p {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
}

.pl-services {
    background: var(--color-bg-alt);
}

.pl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pl-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition);
}

.pl-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pl-card-icon {
    width: 48px;
    height: 48px;
    color: var(--color-secondary);
    margin: 0 auto 20px;
}

.pl-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.pl-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.pl-pricing {
    background: var(--color-bg);
}

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

.pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pricing-card {
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--color-border);
    text-align: center;
    transition: all var(--transition);
}

.pricing-card:hover {
    border-color: var(--color-secondary);
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.pricing-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 80px 0;
}

.about-section:nth-child(even) {
    background: var(--color-bg-alt);
}

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

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.about-value {
    text-align: center;
    padding: 30px;
}

.about-value h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.about-value p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--color-text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-secondary);
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
}

.contact-detail h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.contact-detail p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--color-text-light);
}

.contact-detail a {
    color: var(--color-secondary);
}

.contact-detail a:hover {
    text-decoration: underline;
}

.company-details {
    padding: 24px;
    background: var(--color-bg-alt);
    border-radius: 8px;
}

.company-details h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.company-details p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 24px;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-secondary);
}

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

.contact-form .btn {
    align-self: flex-start;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-img {
        height: 45px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--color-primary);
        flex-direction: column;
        padding: 80px 40px 40px;
        gap: 24px;
        transition: transform var(--transition);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
        transform: translateX(100%);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 1.05rem;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: #fff !important;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .services-grid,
    .projects-grid,
    .projects-page-grid,
    .steps-grid,
    .service-items,
    .pl-grid,
    .about-values {
        grid-template-columns: 1fr;
    }

    .pricing-options,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-header {
        padding: 120px 0 50px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .modal-overlay {
        padding: 20px;
    }

    .gallery-main {
        height: 250px;
    }

    .service-banner {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
