/* --- Global Styles & Variables --- */
:root {
    --bg-primary: #F7F1E5; /* Creamy beige background */
    --bg-secondary: #E9E0D2; /* Slightly darker beige for cards/sections */
    --text-dark: #5D534A; /* Soft, dark brown/grey for text */
    --text-light: #7A6A5D;
    --accent-color: #A98B74; /* Muted, earthy accent for buttons */
    --accent-hover: #8B6F5A;
    /* This font has been changed to support the Georgian language */
    --font-family: 'Noto Sans Georgian', sans-serif;
    --border-radius: 8px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

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

/* --- Utility Classes --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-section {
    padding: 6rem 0;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-hover);
}

/* --- Header & Navigation --- */
.header {
    background-color: rgba(247, 241, 229, 0.8); /* Semi-transparent */
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--bg-secondary);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.5rem;
    height: 70px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-dark);
}

/* --- Hero Section --- */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding-top: 70px; /* Offset for fixed header */
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1.5rem auto 2.5rem;
}

/* --- Card Layout (for Programs, Articles) --- */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--bg-secondary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card-link {
    text-decoration: none;
    font-weight: 600;
    color: var(--accent-color);
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--bg-secondary);
    text-align: center;
    padding: 4rem 0;
}

/* --- About Section --- */
.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex-basis: 40%;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-text {
    flex-basis: 60%;
}

/* --- Reviews Section --- */
.review-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-color);
}

blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

cite {
    font-weight: 600;
    color: var(--text-dark);
}

/* --- Contact Form Section --- */
.contact-section {
    background-color: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--bg-secondary);
    font-family: var(--font-family);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* --- Footer --- */
.footer {
    text-align: center;
    padding: 2rem 0;
    background-color: var(--bg-secondary);
    color: var(--text-light);
    font-size: 0.9rem;
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .navbar {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }

    .nav-menu {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.5rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .review-container {
        grid-template-columns: 1fr;
    }
/* --- Booking & Pricing Section Styles --- */

/* --- Styles for Content Inside Pricing/Booking Cards --- */

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: -2rem auto 4rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* --- Card Layout (for Programs, Articles, and Consultations) --- */

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch; 
}

.card {
    background-color: #fff;
    border: 1px solid var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card .btn {
    margin-top: bottom;
    position: relative;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    color: var(--text-light);
    padding-left: 0; /* Reset default padding */
}

.features-list li {
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
}

/* Adds a nice checkmark before each list item */
.features-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

/* Primary button style for paid packages */
.primary-btn {
    background-color: var(--accent-color);
    color: #fff;
}

.primary-btn:hover {
    background-color: var(--accent-hover);
}

/* "Popular" badge styling */
.card.popular {
    border-color: var(--accent-color);
    border-width: 2px;
    position: relative; /* Required for the badge positioning */
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Card-Based Booking Selection Styles --- */

/* Container for the two service cards */
/* --- Card-Based Booking Selection Styles --- */

/* This is the key change for responsiveness */
.booking-options-container {
    display: grid;
    /* This will fit as many 300px columns as it can, and then wrap */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.booking-option input[type="radio"] {
    /* Hide the actual radio button completely */
    display: none;
}

.booking-option .card {
    /* Make the whole card clickable */
    cursor: pointer;
    border: 2px solid var(--bg-secondary); /* Default border */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure card fills its grid area height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* This helps align content nicely */
    text-align: center;
}

.booking-option .card p {
    flex-grow: 1; /* Allows the paragraph to take up available space */
}

.booking-option .card:hover {
    border-color: #d3c5b2; 
}

/* Style the card WHEN its radio button is checked */
.booking-option input[type="radio"]:checked + .card {
    border-color: red; /* Highlight with the brand red color */
    box-shadow: 10 10px 15px rgba(0, 0, 0, 0.08);
}

.personal-details-fields {
    /* Simple wrapper to keep the fields below the cards organized */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Adjust for mobile: stack the cards on top of each other */
@media (max-width: 600px) {
    .booking-options-container {
        grid-template-columns: 1fr;
    }
}
/* --- Booking Page Styles --- */
.booking-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2/3 for the form, 1/3 for instructions */
    gap: 3rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-options {
    margin-bottom: 1.5rem;
}

.payment-instructions {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.payment-instructions h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.iban-details {
    background-color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border: 1px solid #ddd;
}
.iban-details p {
    margin-bottom: 0.5rem;
}