/* ── RESET & BASE ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: #2c2c2c;
    background-color: #ffffff;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── NAVIGATION ── */
nav {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    z-index: 100;
    padding: 0 2rem;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #1D9E75;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    color: #666;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1D9E75;
}

.btn-nav {
    background: #1D9E75;
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
}

/* ── BUTTONS ── */
.btn-primary {
    background: #1D9E75;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    display: inline-block;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #0F6E56;
}

.btn-outline {
    background: transparent;
    color: #1D9E75;
    border: 2px solid #1D9E75;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-block;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #1D9E75;
    color: white;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #E1F5EE 0%, #fde8d8 100%);
    padding: 100px 2rem;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1D9E75;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 17px;
    color: #666;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── TRUST STRIP ── */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 2rem;
    border-bottom: 1px solid #e8e8e8;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-number {
    font-size: 24px;
    font-weight: bold;
    color: #1D9E75;
}

.trust-label {
    font-size: 12px;
    color: #999;
}

/* ── SECTION SHARED ── */
.section-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1D9E75;
    margin-bottom: 8px;
}

/* ── SERVICES PREVIEW ── */
.services-preview {
    padding: 80px 2rem;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    text-align: left;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s;
}

.service-card:hover {
    border-color: #1D9E75;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.service-card p {
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #1D9E75;
}

/* ── ABOUT PREVIEW ── */
.about-preview {
    background: #E1F5EE;
    padding: 80px 2rem;
    text-align: center;
}

.about-preview h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.about-preview p {
    font-size: 16px;
    color: #555;
    max-width: 560px;
    margin: 0 auto 32px;
}

/* ── FOOTER ── */
footer {
    background: #2c2c2c;
    color: #aaa;
    padding: 40px 2rem;
    text-align: center;
}

.footer-logo {
    font-size: 20px;
    color: #1D9E75;
    margin-bottom: 8px;
    font-weight: bold;
}

footer p {
    font-size: 13px;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    font-size: 13px;
}

.footer-links a {
    color: #aaa;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #1D9E75;
}
/* ── PAGE HEADER ── */
.page-header {
    background: linear-gradient(135deg, #E1F5EE 0%, #fde8d8 100%);
    padding: 80px 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.page-sub {
    font-size: 15px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* ── SERVICES PAGE ── */
.services-section {
    padding: 60px 2rem;
}

.alt-bg {
    background: #f9f9f9;
}

.services-section-inner {
    max-width: 800px;
    margin: 0 auto;
}

.services-category-header {
    margin-bottom: 32px;
}

.services-category-header h2 {
    font-size: 26px;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.services-category-header p {
    font-size: 14px;
    color: #888;
}

.price-list {
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    background: white;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.price-row:last-child {
    border-bottom: none;
}

.price-name {
    font-size: 15px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 4px;
}

.price-desc {
    font-size: 13px;
    color: #999;
}

.price-amount {
    font-size: 18px;
    font-weight: bold;
    color: #1D9E75;
    white-space: nowrap;
    margin-left: 16px;
}

.popular-badge {
    background: #E1F5EE;
    color: #085041;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 50px;
    margin-left: 8px;
    font-weight: normal;
}

/* ── BOOKING CTA ── */
.booking-cta {
    background: #2c2c2c;
    padding: 80px 2rem;
    text-align: center;
    color: white;
}

.booking-cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.booking-cta p {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 32px;
}/* ── ABOUT PAGE ── */
.about-main {
    padding: 80px 2rem;
}

.about-main-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-photo-wrap {
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
    width: 100%;
}

.about-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 16px;
    display: block;
}

.about-text h2 {
    font-size: 28px;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ── VALUES ── */
.values-section {
    background: #f9f9f9;
    padding: 80px 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 28px;
}

.value-card h3 {
    font-size: 18px;
    color: #1D9E75;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}.about-main {
    overflow: hidden;
}

.about-main-inner {
    padding: 0 2rem;
}/* ── CONTACT PAGE ── */
.contact-section {
    padding: 80px 2rem;
}

.contact-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 26px;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.contact-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: #E1F5EE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 2px;
}

.contact-item-value {
    font-size: 15px;
    color: #2c2c2c;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-btn {
    padding: 10px 24px;
    border: 1.5px solid #1D9E75;
    border-radius: 50px;
    color: #1D9E75;
    font-size: 14px;
    transition: all 0.2s;
}

.social-btn:hover {
    background: #1D9E75;
    color: white;
}

.contact-form-wrap h2 {
    font-size: 26px;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 15px;
    color: #2c2c2c;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1D9E75;
}

.form-group textarea {
    resize: vertical;
}/* ── BOOKING PAGE ── */
.booking-section {
    padding: 80px 2rem;
}

.booking-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input {
    width: auto;
    margin-top: 2px;
    flex-shrink: 0;
}

.sidebar-card {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e8e8e8;
}

.sidebar-card h3 {
    font-size: 16px;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.5;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list li::before {
    content: "✓ ";
    color: #1D9E75;
    font-weight: bold;
}/* ── MOBILE ── */
@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero {
        padding: 60px 1.5rem;
    }

    .about-main-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-photo-wrap {
        height: 360px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-inner {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        gap: 32px;
    }

    .page-header h1 {
        font-size: 30px;
    }
}