/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Raleway:wght@400;500;600;700&display=swap');

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #2d3d2d;
    background-color: #fefdfb;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: #fefdfb;
    border-bottom: 1px solid #e8dcc8;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 40px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d7a5a;
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #2d3d2d;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #2d7a5a;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #f5f3ed 0%, #fefdfb 50%, #f9f7f1 100%);
    padding: 80px 40px 60px;
    text-align: center;
    border-bottom: 1px solid #e8dcc8;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3d2d;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #2d7a5a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #2d7a5a;
    color: #fefdfb;
    padding: 16px 45px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #2d7a5a;
}

.cta-button:hover {
    background-color: #1f5a42;
    border-color: #1f5a42;
    transform: translateY(-2px);
}

.cta-button-secondary {
    background-color: transparent;
    color: #2d7a5a;
    border: 2px solid #2d7a5a;
}

.cta-button-secondary:hover {
    background-color: #2d7a5a;
    color: #fefdfb;
}

/* ===== IDEAL CLIENT SECTION ===== */
.ideal-client {
    padding: 50px 40px;
    background-color: #f9f7f1;
    border-top: 1px solid #e8dcc8;
    border-bottom: 1px solid #e8dcc8;
}

.ideal-client h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3d2d;
    font-weight: 700;
}

.client-traits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trait {
    background-color: #fefdfb;
    padding: 1.5rem;
    border-radius: 2px;
    border-left: 4px solid #d4a574;
    transition: all 0.3s ease;
}

.trait:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(45, 122, 90, 0.1);
}

.trait h3 {
    font-size: 1.1rem;
    color: #2d7a5a;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.trait p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== PHILOSOPHY SECTION (My Approach) ===== */
.philosophy {
    padding: 60px 40px;
    background-color: #fefdfb;
    border-top: 1px solid #e8dcc8;
}

.philosophy h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3d2d;
    font-weight: 700;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-text {
    background: linear-gradient(135deg, #f9f7f1 0%, #fefdfb 100%);
    padding: 2rem;
    border-radius: 2px;
    border-left: 5px solid #2d7a5a;
    box-shadow: 0 4px 15px rgba(45, 122, 90, 0.08);
}

.philosophy-text p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.philosophy-text p:last-child {
    margin-bottom: 0;
}

.philosophy-text strong {
    color: #2d7a5a;
    font-weight: 600;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 60px 40px;
    background-color: #f9f7f1;
    border-top: 1px solid #e8dcc8;
    border-bottom: 1px solid #e8dcc8;
}

.how-it-works h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #2d3d2d;
    font-weight: 700;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Connecting line between steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #2d7a5a 0%, #d4a574 50%, #2d7a5a 100%);
    z-index: 0;
}

.step {
    background-color: #fefdfb;
    padding: 1.5rem;
    border-radius: 2px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid #e8dcc8;
}

.step:hover {
    box-shadow: 0 12px 30px rgba(45, 122, 90, 0.15);
    transform: translateY(-8px);
    border-color: #d4a574;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2d7a5a 0%, #1f5a42 100%);
    color: #fefdfb;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(45, 122, 90, 0.2);
}

.step h3 {
    font-size: 1.1rem;
    color: #2d7a5a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== INVESTMENT SECTION ===== */
.investment {
    padding: 60px 40px;
    background-color: #fefdfb;
    border-top: 1px solid #e8dcc8;
}

.investment h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d3d2d;
    font-weight: 700;
}

.investment-intro {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.availability-notice {
    text-align: center;
    background: linear-gradient(135deg, #f9f7f1 0%, #fefdfb 100%);
    padding: 1rem;
    border-left: 4px solid #d4a574;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.availability-notice p {
    color: #2d7a5a;
    font-weight: 600;
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.service-card {
    background: linear-gradient(135deg, #f9f7f1 0%, #fefdfb 100%);
    border: 1px solid #e8dcc8;
    border-radius: 2px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2d7a5a 0%, #d4a574 100%);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 122, 90, 0.2);
    border-color: #d4a574;
}

.service-card.featured {
    border: 2px solid #d4a574;
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.badge {
    display: inline-block;
    background-color: #d4a574;
    color: #fefdfb;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #2d7a5a;
    margin-bottom: 0.8rem;
    margin-top: 0.3rem;
    font-weight: 600;
}

.service-card .price {
    font-size: 2rem;
    color: #d4a574;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.service-card .commitment {
    font-size: 0.9rem;
    color: #2d7a5a;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.service-card .description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-card ul li {
    padding: 0.6rem 0;
    color: #666;
    font-size: 0.9rem;
    border-bottom: 1px solid #e8dcc8;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li:last-child {
    border-bottom: none;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d7a5a;
    font-weight: bold;
}

.quarterly-intensive {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f9f7f1 0%, #fefdfb 100%);
    padding: 2rem;
    border-radius: 2px;
    border-left: 5px solid #d4a574;
    text-align: center;
}

.quarterly-intensive h3 {
    font-size: 1.2rem;
    color: #2d7a5a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.quarterly-intensive .price {
    font-size: 1.6rem;
    color: #d4a574;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.quarterly-intensive p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== APPLICATION SECTION ===== */
.apply {
    padding: 60px 40px;
    background: linear-gradient(135deg, #f5f3ed 0%, #fefdfb 100%);
    border-top: 1px solid #e8dcc8;
}

.apply h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d3d2d;
    font-weight: 700;
}

.apply-intro {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fefdfb;
    padding: 2rem;
    border: 1px solid #e8dcc8;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: #2d3d2d;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e8dcc8;
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fefdfb;
    color: #2d3d2d;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d7a5a;
    box-shadow: 0 0 0 3px rgba(45, 122, 90, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group button {
    background-color: #2d7a5a;
    color: #fefdfb;
    padding: 14px 30px;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group button:hover {
    background-color: #1f5a42;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #2d3d2d;
    color: #e8dcc8;
    padding: 3rem 40px;
    border-top: 1px solid #e8dcc8;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #d4a574;
}

.footer-section p,
.footer-section ul {
    color: #c0b5a0;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e8dcc8;
}

.footer-bottom {
    border-top: 1px solid #3a5a3a;
    padding-top: 1.5rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        transform: scale(1);
    }

    .service-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    nav {
        padding: 1rem 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero {
        padding: 80px 20px 60px;
    }

    .philosophy,
    .how-it-works,
    .investment,
    .apply,
    .ideal-client {
        padding: 60px 20px;
    }

    .philosophy h2,
    .how-it-works h2,
    .investment h2,
    .apply h2,
    .ideal-client h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    footer {
        padding: 2rem 20px;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .step h3 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.9rem;
    }
}
