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

:root {
    /* Colors */
    --taupe: #a6a194;
    --taupe-dark: #8a8477;
    --taupe-light: #b8b0a4;
    --cream: #f5f4f0;
    --warm: #fdfbe8;
    --white: #ffffff;
    --text-dark: #3d3a35;
    --text-muted: #6b6660;

    /* Fonts */
    --font-main: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;

    /* Spacing Scale */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 28px;
    --space-xl: 40px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 10px;

    /* Shadows */
    --shadow-sm: 0 1px 6px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 6px 18px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition-base: 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== Header ===== */
header {
    background: var(--taupe);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 4px;
}

.logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

.logo-location {
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.7;
    font-style: italic;
}

nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--white);
    height: 2px;
    width: 24px;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    top: -7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    padding: var(--space-xs) 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: background var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.15);
}

/* Dropdown menu */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--taupe-dark);
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-top: 0;
    padding-top: 4px;
    overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.lang-switch {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-switch .flag {
    opacity: 1;
    transition: opacity 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    border-radius: 3px;
    overflow: hidden;
    border: 2px solid transparent;
}

.lang-switch .flag:hover {
    border-color: var(--white);
}

/* ===== Utility Classes ===== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) 32px;
    box-shadow: var(--shadow-md);
}

.btn {
    display: inline-block;
    border: none;
    background: var(--taupe);
    color: var(--white);
    padding: var(--space-sm) 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition-base), transform var(--transition-base);
}

.btn:hover {
    background: var(--taupe-dark);
    transform: translateY(-1px);
}

.btn-full {
    display: block;
    width: 100%;
}

.section-heading {
    font-family: var(--font-heading);
    color: var(--taupe-dark);
    font-weight: 400;
    letter-spacing: 2px;
}

/* ===== Main Content ===== */
main {
    flex: 1;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Hero Section ===== */
.hero {
    background: var(--taupe);
    margin: 0 -24px;
    padding: 0 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-brand {
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.hero-brand .tagline {
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 600;
}

.hero-brand .location {
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* ===== Section Titles ===== */
.section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--taupe-dark);
    text-align: center;
    padding: var(--space-xl) 0 24px;
    letter-spacing: 2px;
    font-weight: 400;
}

/* ===== Service Links ===== */
.service-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.service-link {
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 26px 28px;
    border: 1px solid rgba(138, 132, 119, 0.15);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-link h3 {
    font-family: var(--font-heading);
    color: var(--taupe-dark);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.service-link p {
    color: #4a4640;
    font-size: 0.95rem;
}

.service-link .service-cta {
    margin-top: auto;
    font-weight: 600;
    color: var(--taupe);
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.service-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(138, 132, 119, 0.15);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl) var(--space-xl);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.cta-section p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.cta-section p:last-child {
    margin-bottom: 0;
}

/* ===== Service Cards & Content Sections ===== */
.services {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
}

.service-page .service-intro {
    max-width: 780px;
    margin: 0 auto 18px;
    color: #4a4640;
    font-size: 0.98rem;
    text-align: center;
}

.service-card,
.about-section {
    margin-bottom: 24px;
}

.service-card h3,
.about-section h2 {
    font-family: var(--font-heading);
    color: var(--taupe-dark);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.about-section h2 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cream);
}

.about-section:first-of-type {
    margin-top: var(--space-md);
}

.service-card .duration {
    color: var(--taupe);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p,
.about-section p {
    color: #444;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.about-section p {
    margin-bottom: 14px;
}

.service-card p:last-child,
.about-section p:last-child {
    margin-bottom: 0;
}

.service-card .combo {
    font-weight: 600;
    color: var(--taupe-dark);
    font-size: 0.9rem;
}

.service-card .note {
    font-style: italic;
    color: var(--taupe);
    font-size: 0.85rem;
    margin-top: var(--space-xs);
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
}

.service-card ul li {
    font-size: 0.85rem;
    color: #555;
    padding: 2px 0 2px 16px;
    position: relative;
}

.service-card ul li::before {
    content: '·';
    position: absolute;
    left: 4px;
    color: var(--taupe-dark);
    font-weight: bold;
}

/* ===== Info Banner ===== */
.info-banner {
    background: var(--taupe);
    color: var(--white);
    text-align: center;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    margin: var(--space-md) 0 var(--space-xl);
    font-size: 0.9rem;
    line-height: 1.8;
}

.info-banner strong {
    display: block;
    font-size: 1rem;
}

/* ===== About Page ===== */
.about-image {
    text-align: center;
    padding: 30px 0;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-profile-image-container {
    float: left;
    margin: 0 var(--space-lg) var(--space-lg) 0;
    max-width: 300px;
}

.about-profile-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== Contact Page ===== */
.contact-section {
    text-align: center;
    padding: 15px 0 80px;
}

.contact-section .cta-section {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 15px;
}

.contact-section h2 {
    font-family: var(--font-heading);
    color: var(--taupe-dark);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.contact-section .contact-text {
    color: var(--taupe);
    font-size: 1rem;
    margin-bottom: var(--space-xl);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-sm) 14px;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.contact-form .form-title {
    font-family: var(--font-heading);
    color: var(--taupe-dark);
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 18px;
}

.contact-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.contact-form .form-row-hidden {
    display: none;
}

.contact-form label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--taupe);
}

.contact-form label .required {
    color: #b24a4a;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #d7d1c6;
    border-radius: var(--radius-sm);
    padding: var(--space-sm) 14px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    color: var(--text-dark);
    background: #fbfaf7;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--taupe);
    box-shadow: 0 0 0 2px rgba(166, 161, 148, 0.2);
    background: var(--white);
}

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

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    padding: var(--space-sm) 14px;
    min-width: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-item a {
    color: var(--taupe-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    word-break: break-word;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.contact-icon {
    color: var(--taupe);
    display: inline-flex;
    align-items: center;
}

/* WhatsApp green (slightly muted) */
.contact-item a[href^="https://wa.me"] .contact-icon {
    color: #40C860;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ===== Success Page ===== */
.success-section {
    text-align: center;
    padding: 70px 0 90px;
}

.success-section h2 {
    font-family: var(--font-heading);
    color: var(--taupe-dark);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.success-section p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

/* ===== Footer ===== */
footer {
    background: var(--taupe);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: auto;
}

/* ===== Responsive ===== */
@media (max-width: 700px) {
    .header-inner {
        flex-wrap: wrap;
        padding: 10px 16px;
        gap: var(--space-xs);
    }

    .nav-toggle-label {
        display: block;
        order: 2;
    }

    .lang-switch {
        order: 3;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        order: 4;
        flex-direction: column;
        gap: 0;
        padding-top: var(--space-xs);
    }

    .nav-toggle:checked~.nav-links {
        display: flex;
    }

    .nav-links a {
        padding: 10px 16px;
        font-size: 0.9rem;
        text-align: center;
        border-radius: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Mobile dropdown */
    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        display: block;
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 0;
        background: rgba(0, 0, 0, 0.1);
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-toggle:checked~.nav-links .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu a {
        padding-left: 32px;
        font-size: 0.85rem;
    }

    main {
        padding: 0 16px;
    }

    .hero {
        margin: 0 -16px;
        padding: 0 16px;
    }

    .hero-logo {
        max-width: 300px;
    }

    .section-title {
        font-size: 1.3rem;
        padding: 30px 0 16px;
    }

    .service-card,
    .about-section {
        padding: var(--space-md) 18px;
    }

    .about-image img {
        max-width: 100%;
    }

    .about-profile-image-container {
        float: none;
        margin: var(--space-md) auto;
        max-width: 280px;
        text-align: center;
    }

    .contact-section {
        padding: var(--space-xl) 0 60px;
    }

    .contact-grid {
        gap: 22px;
    }

    .contact-form {
        padding: var(--space-sm) 14px;
    }

    .contact-item {
        min-width: auto;
        width: 100%;
        padding: 16px 18px;
    }

    .contact-item a {
        font-size: 0.95rem;
        word-break: break-all;
    }

    .success-section {
        padding: 50px 0 70px;
    }

    .info-banner {
        margin: 16px 0 30px;
        padding: 16px;
    }
}