:root {
    --bg-light: #F8FBF6;
    --accent-soft: #A2B28A;
    --primary: #588157;
    --dark: #344E41;
    --white: #ffffff;
    --shadow: 0 2px 12px rgba(10, 57, 57, 0.06);
    --radius: 10px;
    --transition: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', 'Outfit', sans-serif;
    background: var(--bg-light);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

[dir="ltr"] body {
    font-family: 'Outfit', 'Tajawal', sans-serif;
}

.skip-link {
    position: absolute;
    top: -100px;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius);
    z-index: 9999;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 1rem;
    inset-inline-start: 1rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0A3939;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}
header.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 768px) {
    nav { padding: 1rem 1.5rem; }
}
@media (min-width: 1024px) {
    nav { padding: 1rem 2rem; }
}
@media (min-width: 1200px) {
    nav { max-width: 1280px; padding: 1.25rem 2.5rem; }
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    text-decoration: none;
}
header .logo {
    display: flex;
    align-items: center;
    line-height: 0;
}
header .logo:hover {
    opacity: 0.92;
}
.logo-img {
    display: block;
    height: 48px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}
header .logo-img {
    filter: none;
}
@media (min-width: 768px) {
    .logo { font-size: 1.5rem; }
    .logo-img { height: 54px; }
}
@media (min-width: 1200px) {
    .logo { font-size: 1.65rem; }
    .logo-img { height: 60px; }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .nav-right { gap: 1.5rem; }
}

.lang-switcher {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    overflow: hidden;
}
.lang-switcher button {
    padding: 0.4rem 0.75rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}
.lang-switcher button.active {
    background: var(--primary);
    color: var(--white);
}
.lang-switcher button:not(.active):hover {
    background: rgba(255, 255, 255, 0.15);
}

.nav-links {
    display: none;
    list-style: none;
    gap: 0.5rem;
}
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .nav-links { gap: 2rem; }
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    inset-inline-start: 0;
    width: 0;
    height: 2px;
    background: var(--accent-soft);
    transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent-soft); }
.nav-links a.current { color: var(--accent-soft); font-weight: 600; }
.nav-links a.current::after { width: 100%; }

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
    .menu-toggle { display: none; }
}

.nav-links.active {
    display: flex;
    position: fixed;
    top: 0;
    inset-inline-end: 0;
    width: min(85%, 320px);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 16px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.nav-links.active a {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--dark);
}
.nav-links.active a:hover {
    color: var(--primary);
}
.nav-links.active a::after {
    background: var(--primary);
}
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 57, 57, 0.45);
    z-index: 999;
}
.nav-overlay.visible { display: block; }

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem 3rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(162, 178, 138, 0.12) 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .hero { padding: 6rem 2rem 4rem; }
}
@media (min-width: 1200px) {
    .hero {
        padding: 7rem 2rem 5rem;
        background: linear-gradient(145deg, var(--bg-light) 0%, rgba(162, 178, 138, 0.1) 40%, rgba(88, 129, 87, 0.06) 70%, var(--bg-light) 100%);
    }
}

.hero::before {
    content: '';
    position: absolute;
    width: min(600px, 90vw);
    height: min(600px, 90vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 129, 87, 0.08) 0%, transparent 70%);
    top: -150px;
    inset-inline-start: -150px;
}
@media (min-width: 1200px) {
    .hero::before {
        width: 500px;
        height: 500px;
        top: -180px;
        inset-inline-start: -120px;
    }
    .hero::after {
        width: 380px;
        height: 380px;
        bottom: -100px;
        inset-inline-end: -80px;
    }
}
.hero::after {
    content: '';
    position: absolute;
    width: min(400px, 70vw);
    height: min(400px, 70vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(162, 178, 138, 0.15) 0%, transparent 70%);
    bottom: -80px;
    inset-inline-end: -80px;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 1200px) {
    .hero-content { max-width: 780px; }
}

.hero h1 {
    font-size: clamp(1.75rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.25;
}
.hero h1 span.highlight,
.hero h1 .highlight { color: var(--primary); }
@media (min-width: 1200px) {
    .hero h1 { font-size: 3.5rem; margin-bottom: 1.25rem; }
    .hero .hero-desc { font-size: 1.2rem; margin-bottom: 2.25rem; }
}

.hero .hero-desc {
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    color: var(--dark);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .hero .hero-desc { margin-bottom: 2rem; }
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.hero-btns .btn { margin: 0; }
.hero-btns .btn-outline {
    margin: 0;
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    background: var(--primary);
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
@media (min-width: 768px) {
    .btn { padding: 0.9rem 2rem; }
}
.btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-outline {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white) !important;
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
    scroll-margin-top: 5rem;
}
@media (min-width: 768px) {
    section { padding: 3rem 1.5rem; }
}
@media (min-width: 1024px) {
    section { padding: 4rem 2rem; }
}
@media (min-width: 1200px) {
    section { max-width: 1280px; padding: 4.5rem 2rem; }
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .section-title { margin-bottom: 3rem; }
}
@media (min-width: 1200px) {
    .section-title { margin-bottom: 3.5rem; }
    .section-title h2 { font-size: 2.25rem; }
    .section-title p { font-size: 1.05rem; }
}
.section-title h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.section-title p {
    color: var(--dark);
    opacity: 0.85;
    font-size: 0.95rem;
}
@media (min-width: 768px) {
    .section-title p { font-size: 1rem; }
}

.about {
    background: var(--white);
    border-radius: 20px;
    margin: 0 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
}
@media (min-width: 768px) {
    .about { margin: 0 1.5rem; padding: 3rem; }
}
@media (min-width: 1024px) {
    .about { margin: 0 2rem; padding: 4rem; border-radius: 24px; }
}
@media (min-width: 1200px) {
    #about .about { max-width: 1280px; margin-left: auto; margin-right: auto; padding: 4.5rem; }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 768px) {
    .about-grid { gap: 3rem; }
}
@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-text h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
    .about-text h3 { font-size: 1.5rem; margin-bottom: 1rem; }
}
.about-text p {
    margin-bottom: 0.75rem;
    opacity: 0.9;
    font-size: 0.95rem;
}
@media (min-width: 768px) {
    .about-text p { font-size: 1rem; margin-bottom: 1rem; }
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
}
@media (min-width: 768px) {
    .about-stats { gap: 2rem; margin-top: 2rem; }
}
.stat {
    text-align: center;
}
.stat span {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}
@media (min-width: 768px) {
    .stat span { font-size: 2rem; }
}
.stat small {
    color: var(--dark);
    opacity: 0.85;
    font-size: 0.85rem;
}

.about-visual {
    background: linear-gradient(145deg, var(--accent-soft), var(--primary));
    border-radius: var(--radius);
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.about-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (min-width: 768px) {
    .about-visual { min-height: 280px; }
}
@media (min-width: 1024px) {
    .about-visual { min-height: 300px; }
}
@media (min-width: 1200px) {
    .about-text h3 { font-size: 1.6rem; }
    .about-text p { font-size: 1.05rem; }
    .stat span { font-size: 2.25rem; }
    .about-visual { min-height: 320px; }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 480px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    #vision .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) {
    .services-grid { gap: 1.75rem; }
    .service-card { padding: 2.25rem; }
    .service-card h4 { font-size: 1.25rem; }
    .service-card p { font-size: 1rem; }
}

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(162, 178, 138, 0.3);
}
@media (min-width: 768px) {
    .service-card { padding: 2rem; }
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 24px rgba(10, 57, 57, 0.1);
    border-color: var(--accent-soft);
}
.service-card .icon {
    width: 48px;
    height: 48px;
    background: var(--accent-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
    .service-card .icon { width: 56px; height: 56px; font-size: 1.5rem; margin-bottom: 1rem; }
}
.service-card h4 {
    color: var(--dark);
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}
@media (min-width: 768px) {
    .service-card h4 { font-size: 1.2rem; }
}
.service-card p {
    color: var(--dark);
    opacity: 0.85;
    font-size: 0.9rem;
}
@media (min-width: 768px) {
    .service-card p { font-size: 0.95rem; }
}

.project-section {
    padding-top: 2rem;
}
.project-content {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(162, 178, 138, 0.25);
}
@media (min-width: 768px) {
    .project-content { padding: 2.5rem 3rem; }
}
.project-content p {
    color: var(--dark);
    opacity: 0.9;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
@media (min-width: 768px) {
    .project-content p { font-size: 1.05rem; margin-bottom: 1.25rem; }
}
.project-lead {
    font-weight: 600;
    color: var(--primary) !important;
}
.project-content p:last-child {
    margin-bottom: 0;
}

.logo-two-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    justify-items: center;
    max-width: 960px;
    margin: 0 auto;
}
.logo-box {
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.25rem;
    border: 1px solid rgba(162, 178, 138, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
@media (max-width: 767px) {
    .logo-two-images {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .logo-box {
        max-width: 100%;
    }
}

.products-lead {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.b2b-section .section-title {
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .b2b-section .section-title { margin-bottom: 2rem; }
}
@media (min-width: 1200px) {
    .b2b-section .section-title { margin-bottom: 2.5rem; }
}
.b2b-inner {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 1.5rem 1rem;
    border: 1px solid rgba(162, 178, 138, 0.25);
}
@media (min-width: 480px) {
    .b2b-inner { padding: 1.75rem 1.25rem; }
}
@media (min-width: 768px) {
    .b2b-inner { padding: 2.5rem 1.5rem; border-radius: 24px; }
}
@media (min-width: 1024px) {
    .b2b-inner { padding: 3rem 2rem; }
}
@media (min-width: 1200px) {
    .b2b-inner { padding: 3.5rem 2.5rem; }
}
.b2b-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 600px) {
    .b2b-grid { gap: 1.75rem; }
}
@media (min-width: 768px) {
    .b2b-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@media (min-width: 1024px) {
    .b2b-grid { gap: 2.5rem; }
}
@media (min-width: 1200px) {
    .b2b-grid { gap: 3rem; }
}
.b2b-card {
    background: var(--bg-light);
    padding: 1.25rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(162, 178, 138, 0.4);
    display: flex;
    flex-direction: column;
}
@media (min-width: 480px) {
    .b2b-card { padding: 1.5rem 1.25rem; }
}
@media (min-width: 768px) {
    .b2b-card { padding: 1.75rem 1.5rem; }
}
@media (min-width: 1024px) {
    .b2b-card { padding: 2rem 1.75rem; }
}
@media (min-width: 1200px) {
    .b2b-card { padding: 2.25rem 2rem; }
}
.b2b-card-icon {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 0.5rem;
    line-height: 1;
}
@media (min-width: 768px) {
    .b2b-card-icon { margin-bottom: 0.75rem; }
}
.b2b-card h3 {
    color: var(--primary);
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    margin-bottom: 0.4rem;
    font-weight: 700;
}
@media (min-width: 768px) {
    .b2b-card h3 { margin-bottom: 0.5rem; }
}
.b2b-card-intro {
    color: var(--dark);
    opacity: 0.9;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
    .b2b-card-intro { margin-bottom: 1rem; }
}
.b2b-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.b2b-list li {
    position: relative;
    padding-inline-start: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    opacity: 0.9;
    line-height: 1.5;
}
@media (min-width: 768px) {
    .b2b-list li { margin-bottom: 0.6rem; font-size: 0.9rem; }
}
@media (min-width: 1200px) {
    .b2b-list li { margin-bottom: 0.65rem; font-size: 0.95rem; }
}
.b2b-list li::before {
    content: 'âœ“';
    position: absolute;
    inset-inline-start: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9em;
}

.values {
    background: linear-gradient(180deg, var(--accent-soft) 0%, rgba(57, 90, 63, 0.25) 100%);
    padding: 3rem 1rem;
}
@media (min-width: 768px) {
    .values { padding: 5rem 2rem; }
}
@media (min-width: 1200px) {
    .values { padding: 6rem 2.5rem; }
    .values-grid { max-width: 1280px; gap: 2rem; }
    .value-item { padding: 2.25rem; }
    .value-item .num { font-size: 2.75rem; }
    .value-item h4 { font-size: 1.15rem; }
    .value-item p { font-size: 0.95rem; }
}
.values .section-title h2 { color: var(--dark); }

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
@media (min-width: 480px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    .values-grid { gap: 1.5rem; }
}
@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.value-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
@media (min-width: 768px) {
    .value-item { padding: 2rem; }
}
.value-item .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.4rem;
}
@media (min-width: 768px) {
    .value-item .num { font-size: 2.5rem; }
}
.value-item h4 {
    color: var(--dark);
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}
.value-item p {
    font-size: 0.85rem;
    opacity: 0.85;
}
@media (min-width: 768px) {
    .value-item p { font-size: 0.9rem; }
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .contact-section {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.cta {
    text-align: center;
    padding: 2rem 1rem;
}
@media (min-width: 768px) {
    .cta { padding: 3rem 2rem; }
}

.cta-box {
    max-width: 100%;
    margin: 0 auto;
    background: var(--dark);
    color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(10, 57, 57, 0.12);
}
@media (min-width: 768px) {
    .cta-box { padding: 3rem; border-radius: 20px; max-width: 540px; }
}
@media (min-width: 1200px) {
    .cta { padding: 3rem 2.5rem; }
    .cta-box { padding: 3.5rem; max-width: 560px; }
    .cta-box h2 { font-size: 2rem; }
    .contact-form-wrap { padding: 3rem; }
    .contact-form-wrap h3 { font-size: 1.35rem; }
}
.cta-box h2 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}
@media (min-width: 768px) {
    .cta-box h2 { font-size: 1.8rem; }
}
.cta-box p {
    opacity: 0.9;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.cta-box .btn {
    background: var(--primary);
}
.cta-box .btn:hover {
    background: var(--accent-soft);
    color: var(--dark) !important;
}

.contact-form-wrap {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}
@media (min-width: 768px) {
    .contact-form-wrap { padding: 2.5rem; }
}
.contact-form-wrap h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--accent-soft);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.25);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.contact-form-wrap .btn {
    width: 100%;
    margin-top: 0.5rem;
}
@media (min-width: 480px) {
    .contact-form-wrap .btn { width: auto; }
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 2rem 1rem 1.5rem;
}
@media (min-width: 768px) {
    footer { padding: 3rem 2rem 2rem; }
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
        padding-bottom: 2rem;
    }
}
@media (min-width: 1200px) {
    footer { padding: 3.5rem 2.5rem 2rem; }
    .footer-inner { max-width: 1280px; gap: 3.5rem; padding-bottom: 2.5rem; }
    .footer-brand p { font-size: 1rem; }
    .footer-links h4 { font-size: 1rem; }
    .footer-links a { font-size: 0.95rem; }
    .footer-bottom { max-width: 1280px; font-size: 0.9rem; padding-top: 1.5rem; }
}
.footer-brand .logo { color: var(--accent-soft); }
.footer-brand p {
    margin-top: 0.75rem;
    opacity: 0.85;
    font-size: 0.9rem;
}
@media (min-width: 768px) {
    .footer-brand p { font-size: 0.95rem; }
}
.footer-links h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--accent-soft);
}
.footer-links ul { list-style: none; }
.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover {
    opacity: 1;
    color: var(--accent-soft);
}
.footer-links li { margin-bottom: 0.35rem; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.25rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}
