/* ===== DESIGN TOKENS ===== */
:root {
    --primary-dark: #1A202C;
    --accent-warm: #F2A365;
    --accent-cool: #7E8C9F;
    --neutral-light: #E4E5E6;
    --text-primary: #1A202C;
    --text-secondary: #666666;
    --bg-light: #FFFFFF;
    --border-color: #D0D1D2;
}

/* ===== RESET & TYPOGRAPHY ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Lora', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

a {
    color: var(--accent-warm);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== HEADER ===== */
.header {
    background-color: var(--primary-dark);
    color: var(--bg-light);
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo .brand-name {
    font-size: 2rem;
    color: var(--accent-warm);
    margin: 0;
}

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

.nav-link {
    color: var(--bg-light);
    font-weight: 500;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-warm);
    text-decoration: none;
    border-bottom-color: var(--accent-warm);
}

.nav-link.active {
    color: var(--accent-warm);
    border-bottom-color: var(--accent-warm);
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

main {
    min-height: calc(100vh - 300px);
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.section-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(26, 32, 44, 0.95) 100%);
    color: var(--bg-light);
    padding: 8rem 0;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.section-hero h1 {
    color: var(--bg-light);
    margin-bottom: 1.5rem;
}

.section-hero p {
    color: var(--neutral-light);
    font-size: 1.1rem;
    max-width: 600px;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.text-block {
    flex: 1;
}

.image-block {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: var(--neutral-light);
    padding: 2rem;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(26, 32, 44, 0.1);
    transform: translateY(-4px);
}

.card h3 {
    color: var(--text-primary);
    margin-top: 0;
}

.card p {
    margin-bottom: 0;
}

/* ===== DISCLAIMER SECTION ===== */
.disclaimer {
    background-color: var(--neutral-light);
    border-left: 4px solid var(--accent-warm);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 2px;
}

.disclaimer h3 {
    color: var(--primary-dark);
    margin-top: 0;
}

.disclaimer p {
    margin-bottom: 0.5rem;
}

/* ===== CTA BUTTONS ===== */
.cta-button {
    display: inline-block;
    background-color: var(--accent-warm);
    color: var(--bg-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 2px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}

.cta-button:hover {
    background-color: var(--accent-cool);
    color: var(--bg-light);
    text-decoration: none;
}

.cta-button-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--primary-dark);
}

.cta-button-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-light);
}

/* ===== BLOG SECTION ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.blog-item {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.blog-image {
    flex: 0 0 40%;
    overflow: hidden;
    border-radius: 4px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-content h3 {
    margin-top: 0;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 600px;
    margin: 2rem 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-warm);
    box-shadow: 0 0 0 3px rgba(242, 163, 101, 0.1);
}

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

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-dark);
    color: var(--bg-light);
    padding: 3rem 0;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(244, 244, 244, 0.1);
}

.footer-section h3 {
    color: var(--accent-warm);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--neutral-light);
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--neutral-light);
}

.footer-links a:hover {
    color: var(--accent-warm);
}

.footer-bottom {
    text-align: center;
    color: var(--neutral-light);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .section-content.reverse {
        direction: ltr;
    }

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

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

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

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-hero {
        padding: 4rem 0;
        min-height: auto;
    }

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

    .blog-item {
        flex-direction: column;
    }

    .blog-image {
        flex: 0 0 auto;
        height: 250px;
    }

    .nav-link {
        padding: 0.25rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent-warm);
}

.bg-accent {
    background-color: var(--accent-warm);
    color: var(--bg-light);
}

.mt-3 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
