* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

:root {

    /* LIGHT THEME */

    --bg-primary: #FAF8F4;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #F5F1E8;

    --text-primary: #1E1E1E;
    --text-secondary: #5E5E5E;
    --text-tertiary: #8A8A8A;

    --accent: #ba9653;
    --accent-hover: #9c7c40;

    --border: rgba(186, 150, 83, 0.25);

    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 5rem;

    --font-base: 'Inter', sans-serif;

    --radius-md: 12px;

    --transition: all .25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* =========================
   CONTAINER
========================= */

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: var(--spacing-3xl) 0;
}

/* =========================
   SECTION HEADER
========================= */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: var(--spacing-sm);
}

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

/* =========================
   NAVBAR (UPDATED)
========================= */

.navbar {
    position: fixed;

    top: 0;

    width: 100%;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);

    z-index: 1000;

    padding: 1rem 0;
}

.navbar .container {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

.nav-menu {
    display: flex;

    gap: 2rem;

    list-style: none;
}

.nav-link {

    position: relative;

    color: #2A2A2A;

    font-size: .95rem;

    font-weight: 600;

    padding-bottom: 4px;

    transition: var(--transition);
}

.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 2px;

    background: var(--accent);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .3s ease;
}

.nav-link:hover {

    color: var(--accent);
}

.nav-link:hover::after {

    transform: scaleX(1);
}

.brand-text {

    font-weight: 700;

    color: var(--accent);
}

.brand-logo {
    height: 36px;
}

/* =========================
   HERO
========================= */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding-top: 8rem;

    background:
        linear-gradient(
            135deg,
            #FAF8F4,
            #F3EDE1
        );
}

.hero-title {

    font-size: 3rem;

    margin-bottom: var(--spacing-lg);
}

.hero-subtitle {

    font-size: 1.1rem;

    color: var(--text-secondary);

    margin-bottom: var(--spacing-xl);
}

/* =========================
   BUTTON
========================= */

.btn {

    padding: .9rem 2rem;

    border-radius: var(--radius-md);

    border: none;

    cursor: pointer;

    font-weight: 600;

    transition: var(--transition);
}

.btn-primary {

    background: var(--accent);

    color: #111;
}

.btn-primary:hover {

    background: var(--accent-hover);

    transform: translateY(-2px);
}

/* =========================
   SERVICES
========================= */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(280px,1fr)
        );

    gap: 2rem;
}

.service-card {

    background: var(--bg-secondary);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    padding: 2.5rem 2.2rem;

    display: flex;

    flex-direction: column;

    gap: 1rem;

    min-height: 190px;

    transition: var(--transition);

    box-shadow:
        0 8px 20px
        rgba(0,0,0,.04);
}

.service-card:hover {

    transform: translateY(-6px);

    border-color: var(--accent);

    background: var(--bg-tertiary);

    box-shadow:
        0 14px 34px
        rgba(0,0,0,.08);
}

/* =========================
   HOW IT WORKS
========================= */

.steps-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 1.5rem;
}

.step {

    background: var(--bg-secondary);

    border: 1px solid var(--border);

    padding: 2rem;

    border-radius: var(--radius-md);

    text-align: center;

    box-shadow:
        0 8px 20px
        rgba(0,0,0,.04);
}

/* =========================
   WHY US
========================= */

.benefits-grid {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(220px,1fr)
        );

    gap: 1.5rem;
}

.benefit {

    background: var(--bg-secondary);

    border: 1px solid var(--border);

    padding: 2rem;

    border-radius: var(--radius-md);

    text-align: center;

    box-shadow:
        0 8px 20px
        rgba(0,0,0,.04);
}

/* =========================
   CONTACT
========================= */

.contact-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 3rem;
}

.contact-form {

    display: flex;

    flex-direction: column;

    gap: 1.4rem;
}

input,
textarea {

    width: 100%;

    padding: 1rem;

    background: #FFFFFF;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    color: var(--text-primary);
}

input:focus,
textarea:focus {

    outline: none;

    border-color: var(--accent);

    box-shadow:
        0 0 0 4px
        rgba(186,150,83,.12);
}

/* =========================
   FOOTER
========================= */

.footer {

    text-align: center;

    padding: 2rem 0;

    border-top: 1px solid var(--border);

    background: #FFFFFF;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:768px){

.nav-menu{
display:none;
}

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

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

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

}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
