/* ============================================
   DARK ARMOR WINDOW TINTING — STYLESHEET
   ============================================ */

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

:root {
    --emerald: #047857;
    --emerald-dark: #065F46;
    --emerald-light: #06B6D4;
    --cream: #F5F0E8;
    --cream-dark: #E8E0D0;
    --dark: #0F1A14;
    --dark-soft: #1A2E24;
    --text-primary: #0F1A14;
    --text-secondary: #4A5D52;
    --text-light: #F5F0E8;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(15, 26, 20, 0.08);
    --shadow-md: 0 8px 30px rgba(15, 26, 20, 0.12);
    --shadow-lg: 0 20px 60px rgba(15, 26, 20, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-emerald { color: var(--emerald); }
.text-cream { color: var(--cream); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--emerald-dark);
    border-color: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 120, 87, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

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

.btn-cream {
    background: var(--cream);
    color: var(--emerald-dark);
    border-color: var(--cream);
}

.btn-cream:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 240, 232, 0.5);
}

.btn-outline-cream {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-outline-cream:hover {
    background: var(--cream);
    color: var(--emerald-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.0625rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(4, 120, 87, 0.1);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.375rem;
    letter-spacing: 0.08em;
    color: var(--dark);
}

.nav-logo-icon {
    color: var(--emerald);
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--emerald);
}

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

.btn-nav {
    padding: 10px 22px;
    font-size: 0.875rem;
    background: var(--emerald);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
}

.btn-nav::after { display: none; }

.btn-nav:hover {
    background: var(--emerald-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
}

.mobile-menu.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: var(--dark);
    opacity: 0.97;
}

.mobile-menu-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    color: var(--cream);
    transition: var(--transition);
}

.mobile-menu-link:hover {
    color: var(--emerald-light);
}

.btn-mobile {
    background: var(--emerald);
    color: var(--white);
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
}

.mobile-menu-contact {
    margin-top: 16px;
    text-align: center;
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.875rem;
    line-height: 2;
}

.mobile-menu-contact a {
    color: rgba(245, 240, 232, 0.6);
}

.mobile-menu-contact a:hover {
    color: var(--emerald-light);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--cream);
    padding-top: 72px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: var(--radius-lg);
}

.shape-1 {
    width: 420px;
    height: 420px;
    background: var(--emerald);
    opacity: 0.06;
    top: -80px;
    right: 10%;
    transform: rotate(15deg);
}

.shape-2 {
    width: 260px;
    height: 260px;
    background: var(--emerald);
    opacity: 0.08;
    bottom: 15%;
    left: -60px;
    transform: rotate(-20deg);
    border-radius: 50%;
}

.shape-3 {
    width: 140px;
    height: 140px;
    background: var(--emerald-light);
    opacity: 0.1;
    top: 30%;
    left: 35%;
    transform: rotate(45deg);
}

.shape-4 {
    width: 80px;
    height: 80px;
    background: var(--emerald);
    opacity: 0.12;
    bottom: 25%;
    right: 5%;
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(4, 120, 87, 0.1);
    color: var(--emerald);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(3rem, 5.5vw, 5rem);
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 0.95;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--emerald);
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(4, 120, 87, 0.2);
}

.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--emerald);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
}

.hero-image-wrapper img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-image-badge {
    position: absolute;
    bottom: 32px;
    left: -24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.hero-image-badge svg {
    color: var(--emerald);
    flex-shrink: 0;
}

.hero-image-badge span {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--dark);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    color: var(--dark);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Services --- */
.services {
    padding: 100px 0;
    background: var(--cream);
}

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

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(4, 120, 87, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--emerald);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(4, 120, 87, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--emerald);
    color: var(--white);
}

.service-title {
    font-size: 1.625rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--emerald);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- Why Us --- */
.why-us {
    position: relative;
    padding: 100px 0;
    background: var(--dark);
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.geo-shape {
    position: absolute;
    border-radius: var(--radius-lg);
}

.geo-1 {
    width: 300px;
    height: 300px;
    background: var(--emerald);
    opacity: 0.07;
    top: -50px;
    right: -50px;
    transform: rotate(30deg);
}

.geo-2 {
    width: 200px;
    height: 200px;
    background: var(--emerald-light);
    opacity: 0.05;
    bottom: 10%;
    left: 5%;
    border-radius: 50%;
}

.geo-3 {
    width: 120px;
    height: 120px;
    background: var(--cream);
    opacity: 0.04;
    top: 40%;
    right: 15%;
    transform: rotate(45deg);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-us-content .section-tag {
    color: var(--emerald-light);
}

.why-us-content .section-title {
    color: var(--cream);
    text-align: left;
    margin-bottom: 16px;
}

.why-us-content .section-desc {
    text-align: left;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 40px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature-icon.emerald {
    background: rgba(4, 120, 87, 0.2);
    color: var(--emerald-light);
}

.why-feature-icon.cream {
    background: rgba(245, 240, 232, 0.1);
    color: var(--cream);
}

.why-feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 4px;
}

.why-feature-text {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.6;
}

.why-us-image {
    position: relative;
}

.why-us-image-stack {
    position: relative;
}

.why-us-img-main img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.why-us-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--dark);
}

.why-us-img-float img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.float-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 26, 20, 0.85);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.float-badge-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--emerald-light);
}

.float-badge-label {
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* --- Gallery --- */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 26, 20, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: var(--cream);
    letter-spacing: 0.04em;
}

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-item--large img {
    height: 100%;
    min-height: 480px;
}

.gallery-item:not(.gallery-item--large) img {
    height: 220px;
}

.gallery-item--wide img {
    height: 220px;
}

/* --- About --- */
.about {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.about-bg-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(4, 120, 87, 0.03);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-visual {
    position: relative;
}

.about-shape-emerald {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--emerald);
    opacity: 0.08;
    top: -30px;
    left: -30px;
    border-radius: var(--radius-xl);
    transform: rotate(-15deg);
}

.about-img-group {
    position: relative;
}

.about-img-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}

.about-img-accent img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.about-value-icon {
    width: 48px;
    height: 48px;
    background: rgba(4, 120, 87, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    flex-shrink: 0;
}

.about-value strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.about-value span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* --- Contact --- */
.contact {
    position: relative;
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}

.contact-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
}

.contact-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--emerald);
    opacity: 0.04;
    top: -100px;
    left: -100px;
}

.contact-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--emerald-light);
    opacity: 0.05;
    bottom: -50px;
    right: 10%;
}

.contact-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--emerald);
    opacity: 0.08;
    top: 30%;
    right: 5%;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-detail:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.contact-detail-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon.emerald {
    background: rgba(4, 120, 87, 0.1);
    color: var(--emerald);
}

.contact-detail-icon.cream {
    background: rgba(245, 240, 232, 0.6);
    color: var(--emerald-dark);
}

.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.contact-detail:hover .contact-detail-value {
    color: var(--emerald);
}

.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(4, 120, 87, 0.06);
}

.contact-form-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid rgba(4, 120, 87, 0.12);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(74, 93, 82, 0.4);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

.form-success.active {
    display: flex;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(4, 120, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
}

.form-success h4 {
    font-size: 1.75rem;
    color: var(--dark);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: var(--emerald);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(30deg, rgba(245, 240, 232, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(245, 240, 232, 0.04) 87.5%),
        linear-gradient(150deg, rgba(245, 240, 232, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(245, 240, 232, 0.04) 87.5%),
        linear-gradient(30deg, rgba(245, 240, 232, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(245, 240, 232, 0.04) 87.5%),
        linear-gradient(150deg, rgba(245, 240, 232, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(245, 240, 232, 0.04) 87.5%);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cream);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(245, 240, 232, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-logo svg {
    color: var(--emerald-light);
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.45);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.45);
}

.footer-links a:hover {
    color: var(--emerald-light);
}

.footer-contact p {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.45);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(245, 240, 232, 0.45);
}

.footer-contact a:hover {
    color: var(--emerald-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.3);
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .hero-image-wrapper img {
        height: 560px;
    }

    .why-us-layout,
    .about-layout,
    .contact-layout {
        gap: 48px;
    }

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

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 100px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-right {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image-wrapper img {
        height: 480px;
    }

    .hero-image-accent {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-us-layout {
        grid-template-columns: 1fr;
    }

    .why-us-content .section-title,
    .why-us-content .section-desc {
        text-align: center;
    }

    .why-us-features {
        max-width: 480px;
        margin: 0 auto;
    }

    .why-us-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .why-us-img-float {
        right: -16px;
        bottom: -24px;
    }

    .gallery-item--large {
        grid-column: span 12;
    }

    .gallery-item:not(.gallery-item--large) {
        grid-column: span 6;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-values {
        max-width: 480px;
        margin: 32px auto 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info .section-title {
        text-align: center;
    }

    .contact-desc {
        text-align: center;
    }

    .contact-details {
        max-width: 480px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-image-wrapper img {
        height: 380px;
    }

    .hero-image-badge {
        left: 16px;
        bottom: 20px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .services-grid {
        gap: 16px;
    }

    .service-card {
        padding: 28px;
    }

    .gallery-item:not(.gallery-item--large) {
        grid-column: span 12;
    }

    .gallery-item--large img {
        min-height: 280px;
    }

    .gallery-item:not(.gallery-item--large) img {
        height: 200px;
    }

    .gallery-item--wide img {
        height: 200px;
    }

    .about-img-accent {
        width: 220px;
        right: -16px;
        bottom: -20px;
    }

    .about-img-main img {
        height: 400px;
    }

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

    .contact-form-card {
        padding: 32px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
