@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* ===================================
   PK Enterprises - Modern Stylesheet
   Elegant scrap / recycling theme
   =================================== */

:root {
    /* Brand palette */
    --primary-color: #2d5016;
    --primary-dark: #1a3009;
    --primary-light: #4a7c2a;
    --secondary-color: #10b981;
    --accent-color: #c9a961;
    --accent-light: #e3cd9a;
    --accent-dark: #8b6914;

    /* Neutrals */
    --ink: #15231a;
    --text-dark: #1f2937;
    --text-light: #5b6573;
    --bg-light: #f4f7ef;
    --bg-subtle: #fafbf6;
    --bg-white: #ffffff;
    --bg-hero: #142608;
    --border-color: #e7e9e2;

    /* Radii */
    --radius-sm: 0.625rem;
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --radius-pill: 999px;

    /* Shadows (soft, layered) */
    --shadow-xs: 0 1px 2px rgba(16, 24, 16, 0.06);
    --shadow-sm: 0 4px 16px -6px rgba(16, 24, 16, 0.12);
    --shadow-md: 0 14px 34px -16px rgba(16, 24, 16, 0.22);
    --shadow-lg: 0 28px 56px -22px rgba(16, 24, 16, 0.30);
    --shadow-xl: 0 36px 70px -24px rgba(16, 24, 16, 0.36);
    --shadow-accent: 0 16px 38px -14px rgba(201, 169, 97, 0.55);

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--bg-hero) 0%, var(--primary-color) 55%, var(--primary-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 50%, var(--accent-dark) 100%);
    --gradient-tile: linear-gradient(135deg, rgba(201, 169, 97, 0.16), rgba(74, 124, 42, 0.12));

    /* Typography */
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Motion */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.65;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

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

ul {
    list-style: none;
}

:focus-visible {
    outline: 3px solid rgba(201, 169, 97, 0.6);
    outline-offset: 3px;
    border-radius: 4px;
}

::selection {
    background: rgba(201, 169, 97, 0.3);
    color: var(--ink);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Navigation (glass)
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    backdrop-filter: saturate(180%) blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(16, 24, 16, 0.06);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-sm);
    border-bottom-color: rgba(201, 169, 97, 0.35);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-img {
    height: 46px;
    width: auto;
    display: block;
}

.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 2.25rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.4rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 2.5px;
    background-color: var(--ink);
    transition: var(--transition);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 71px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 71px);
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 2.5rem;
        gap: 1.75rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.25rem;
    }
}

/* ===================================
   Hero
   =================================== */
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    background: var(--gradient-brand);
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="scrapPattern" width="200" height="200" patternUnits="userSpaceOnUse"><rect width="200" height="200" fill="%23142608"/><rect x="20" y="20" width="30" height="15" fill="%23c9a961" opacity="0.1" transform="rotate(45 35 27.5)"/><rect x="150" y="30" width="25" height="12" fill="%23c9a961" opacity="0.1" transform="rotate(-30 162.5 36)"/><rect x="30" y="150" width="20" height="20" fill="%23c9a961" opacity="0.1" transform="rotate(60 40 160)"/><rect x="160" y="160" width="28" height="14" fill="%23c9a961" opacity="0.1" transform="rotate(15 174 167)"/><circle cx="100" cy="100" r="3" fill="%23c9a961" opacity="0.15"/><circle cx="50" cy="50" r="2" fill="%23c9a961" opacity="0.15"/><circle cx="150" cy="150" r="2.5" fill="%23c9a961" opacity="0.15"/></pattern></defs><rect width="200" height="200" fill="url(%23scrapPattern)"/></svg>');
    opacity: 0.35;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(60% 55% at 50% -10%, rgba(201, 169, 97, 0.22), transparent 70%),
        radial-gradient(55% 60% at 100% 110%, rgba(74, 124, 42, 0.45), transparent 70%),
        rgba(0, 0, 0, 0.28);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem 0;
    animation: heroRise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title {
    font-size: clamp(2.25rem, 5.2vw, 3.75rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    margin: 0 auto 2.25rem;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

@media (max-width: 640px) {
    .hero {
        min-height: 540px;
    }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    will-change: transform;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-weight: 700;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px -14px rgba(201, 169, 97, 0.7);
    color: var(--primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1rem 2.75rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ===================================
   Sections
   =================================== */
section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.section-title {
    font-size: clamp(1.85rem, 3.6vw, 2.5rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ===================================
   Features
   =================================== */
.features {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 2.25rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-slow);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 97, 0.5);
}

.feature-icon {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    font-size: 2.25rem;
    border-radius: var(--radius);
    background: var(--gradient-tile);
    box-shadow: inset 0 0 0 1px rgba(201, 169, 97, 0.25);
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--ink);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.65;
}

/* ===================================
   Services Preview
   =================================== */
.services-preview {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 97, 0.5);
}

.service-image {
    height: 200px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 70% at 30% 20%, rgba(201, 169, 97, 0.3), transparent 70%);
}

.service-placeholder {
    font-size: 4rem;
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-placeholder {
    transform: scale(1.12) rotate(-4deg);
}

.service-card .service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 0.75rem;
    color: var(--ink);
}

.service-description {
    color: var(--text-light);
    margin: 0 1.5rem 1.5rem;
    line-height: 1.65;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-display);
    margin: 0 1.5rem 1.5rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-dark);
    gap: 0.6rem;
}

/* ===================================
   Services Detail
   =================================== */
.services-detail {
    background-color: var(--bg-light);
}

.service-detail-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-gold);
}

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

.service-detail-icon {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-radius: var(--radius);
    background: var(--gradient-tile);
    box-shadow: inset 0 0 0 1px rgba(201, 169, 97, 0.25);
    margin-bottom: 1.5rem;
}

.service-detail-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ink);
}

.service-detail-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.service-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-list li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.7;
    list-style-type: disc;
}

.service-list strong {
    color: var(--ink);
}

.service-note {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
}

/* ===================================
   Process
   =================================== */
.process {
    background-color: var(--bg-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 68px;
    height: 68px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-accent);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1.5px dashed rgba(201, 169, 97, 0.45);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--ink);
}

.step-description {
    color: var(--text-light);
    line-height: 1.65;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: var(--gradient-brand);
    color: white;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="headerPattern" width="200" height="200" patternUnits="userSpaceOnUse"><rect width="200" height="200" fill="%23142608"/><rect x="20" y="20" width="30" height="15" fill="%23c9a961" opacity="0.08" transform="rotate(45 35 27.5)"/><rect x="150" y="30" width="25" height="12" fill="%23c9a961" opacity="0.08" transform="rotate(-30 162.5 36)"/></pattern></defs><rect width="200" height="200" fill="url(%23headerPattern)"/></svg>');
    opacity: 0.3;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 50% -20%, rgba(201, 169, 97, 0.22), transparent 70%);
}

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

.page-title {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.page-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    opacity: 0.92;
    max-width: 620px;
    margin: 0 auto;
}

/* ===================================
   About
   =================================== */
.about-content {
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-text {
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

.content-title {
    font-size: clamp(1.6rem, 3.4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    width: 100%;
    height: 420px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 70% 20%, rgba(201, 169, 97, 0.28), transparent 70%);
}

.placeholder-content {
    font-size: 6rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ===================================
   Mission & Vision
   =================================== */
.mission-vision {
    background-color: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.mv-card {
    background-color: var(--bg-white);
    padding: 2.75rem 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-slow);
}

.mv-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.5);
}

.mv-icon {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-radius: var(--radius);
    background: var(--gradient-tile);
    box-shadow: inset 0 0 0 1px rgba(201, 169, 97, 0.25);
    margin: 0 auto 1.5rem;
}

.mv-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ink);
}

.mv-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   Values
   =================================== */
.values {
    background-color: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
}

.value-card {
    text-align: center;
    padding: 2.25rem 2rem;
    background-color: var(--bg-subtle);
    border-radius: var(--radius);
    transition: var(--transition-slow);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.5);
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    border-radius: var(--radius);
    background: var(--gradient-tile);
    box-shadow: inset 0 0 0 1px rgba(201, 169, 97, 0.25);
    margin: 0 auto 1.25rem;
}

.value-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--ink);
}

.value-description {
    color: var(--text-light);
    line-height: 1.65;
}

/* ===================================
   Contact
   =================================== */
.contact-section {
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.contact-title {
    font-size: clamp(1.6rem, 3.4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ink);
}

.contact-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: var(--radius);
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(201, 169, 97, 0.5);
    transform: translateY(-3px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border-radius: var(--radius-sm);
    background: var(--gradient-tile);
    box-shadow: inset 0 0 0 1px rgba(201, 169, 97, 0.25);
    flex-shrink: 0;
}

.contact-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--ink);
}

.contact-item-text {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    background-color: var(--bg-subtle);
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-form-wrapper:hover {
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--ink);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-input::placeholder {
    color: #9aa3ad;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.18);
}

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

.form-message {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    display: block;
}

/* ===================================
   Map
   =================================== */
.map-section {
    background-color: var(--bg-light);
}

.map-wrapper {
    width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.map-link {
    text-align: center;
    margin-top: 1.5rem;
}

.map-link a {
    text-decoration: none;
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 350px;
    }
}

/* ===================================
   CTA
   =================================== */
.cta {
    background: var(--gradient-brand);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 80% at 50% 0%, rgba(201, 169, 97, 0.25), transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.85rem, 3.8vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.cta-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    margin-bottom: 2.25rem;
    opacity: 0.92;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(180deg, #18271b 0%, #0d150f 100%);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo .logo-img {
    height: 54px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #fff;
    letter-spacing: 0.02em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    width: fit-content;
}

.footer-links a:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-light);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

@media (max-width: 520px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Scroll reveal animations
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero-content {
        animation: none;
    }
}

/* ===================================
   Utilities
   =================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
