@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary: #3f6087;
    --secondary: #2b4562;
    --accent-coral: #f57e6c;
    --accent-lavender: #e2ccff;
    --accent-teal: #3a8a9e;
    --bg-light: #fef7f2;
    --bg-white: #ffffff;
    --text-dark: #1c2b36;
    --text-muted: #6b7a8a;
    --nav-height: 80px;
    --border-radius-lg: 24px;
    --border-radius-sm: 12px;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-coral { color: var(--accent-coral); }
.text-teal { color: var(--accent-teal); }
.text-primary { color: var(--primary); }
.section-subtitle {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Header & Nav */
header {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(254, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.02);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-coral);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
}
.nav-cta:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Sections */
section {
    padding: 6rem 0;
}
section:nth-child(even) {
    background-color: var(--bg-white);
}

/* Hero Section */
.hero {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.hero-content h1 i {
    color: var(--accent-coral);
}
.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-coral);
    color: var(--bg-white);
    box-shadow: 0 10px 20px rgba(245, 126, 108, 0.2);
}
.btn-primary:hover {
    background-color: #e56d5b;
    transform: translateY(-2px);
    color: white;
}

.hero-image {
    position: relative;
}
.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--accent-lavender);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

/* Cards & Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.stat-card {
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    color: var(--text-dark);
}
.stat-card.coral { background-color: var(--accent-coral); color: white;}
.stat-card.lavender { background-color: var(--accent-lavender); }
.stat-card.teal { background-color: var(--accent-teal); color: white;}

.stat-card h3 {
    font-size: 3.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}
.stat-card.coral h3, .stat-card.teal h3 { color: white; }

/* General Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

/* Service Card */
.service-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}
.service-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.04);
}
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-lavender);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-dark);
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Images block */
.image-block img {
    border-radius: var(--border-radius-lg);
    width: 100%;
    object-fit: cover;
}

/* Section Titles */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}
.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}
.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--bg-light);
}
.form-control:focus {
    outline: none;
    border-color: var(--accent-coral);
    background: white;
}
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 2rem 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer-col h4 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.footer-col .logo {
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a:hover {
    color: var(--accent-coral);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}
.footer-bottom a {
    color: var(--accent-lavender);
    font-weight: 600;
}
.footer-bottom a:hover {
    color: var(--accent-coral);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .grid-2 {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none; /* Hide for slide menu */
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--bg-white);
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        transition: transform 0.4s ease;
    }
    
    .nav-links.active .nav-cta {
        display: inline-block;
        text-align: center;
        margin-top: 1rem;
    }

    .grid-3, .stats-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        margin-top: 2rem;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    section {
        padding: 4rem 0;
    }
}

/* Overlay for mobile menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Page Headers */
.page-header {
    background-color: var(--bg-white);
    padding: calc(var(--nav-height) + 4rem) 0 4rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 2rem;
}
.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.value-card .icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-teal);
}

/* Team Card */
.team-card {
    text-align: center;
}
.team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--bg-light);
}
.team-card h3 {
    margin-bottom: 0.5rem;
}
.team-card p {
    color: var(--text-muted);
    font-weight: 500;
}
