:root {
    --primary: #2d3e2a;
    /* Deep Forest Green for maximum readability */
    --primary-light: #5c7457;
    /* Professional Sage */
    --accent: #f9c470;
    /* Warm Gold from Logo */
    --text-main: #1a1a1a;
    /* Pure professional dark text */
    --text-light: #4a5a48;
    --bg-white: #ffffff;
    --bg-soft: #f4f6f3;
    /* Subtle Moss Tint */
    --border: rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container: 1200px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    background: var(--bg-white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-soft);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
}

header.scrolled .logo img {
    height: 60px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-light);
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-link:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    padding: 200px 0 100px;
    position: relative;
    background: #000;
    color: var(--white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('images/hero-final.png');
    background-size: cover;
    background-position: center 30%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
    max-width: 900px;
    margin-bottom: 2rem;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.4rem;
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

/* Utility Design Blocks */
.utility-bar {
    background: var(--primary);
    color: #fff;
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.utility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.utility-item {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* About Us */
.about {
    padding: 100px 0;
    background: var(--bg-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--accent);
    color: var(--primary);
    padding: 1.5rem 4rem 1.5rem 1.5rem;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    transform: rotate(-5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge strong {
    font-size: 1.5rem;
    display: block;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.about-lead {
    margin-top: 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    padding: 1.5rem;
    background: var(--bg-white);
    border-left: 4px solid var(--accent);
    border-radius: 0 20px 20px 0;
    line-height: 1.4;
    font-style: italic;
}

.about-lead span {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
}

.about-feature .bullet {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.about-feature strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-tag {
    color: var(--primary-light);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.section-head {
    margin-bottom: 5rem;
}

.section-head h2 {
    font-size: 3rem;
    color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.service-box {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: var(--bg-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.service-icon-box svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
}

.service-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    text-decoration: underline;
}

/* Conversion Section */
.cta-block {
    margin: 100px 0;
    background: var(--primary);
    border-radius: 40px;
    padding: 6rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-block h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Form Styling */
.form-intro {
    color: #f8f9f7;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.form-intro strong {
    color: var(--accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row:last-of-type {
    grid-template-columns: 1fr;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(92, 116, 87, 0.1);
}

.form-row textarea {
    height: 150px;
    resize: vertical;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(249, 196, 112, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-main);
}

.cookie-content a {
    color: var(--primary);
    font-weight: 600;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* Mobile Responsive Overrides */
@media (max-width: 992px) {
    .nav-right {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: 1;
    }

    .about-text {
        order: 2;
    }

    .utility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-card {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cta-block {
        padding: 3rem 1.5rem;
    }

    .cta-block h2 {
        font-size: 2.2rem;
    }

    .form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-head h2 {
        font-size: 2.2rem;
    }

    .logo img {
        height: 60px;
    }

    .phone-link {
        font-size: 1rem;
    }
}