:root {
    --primary: #1a365d;
    --secondary: #c05621;
    --accent: #2d3748;
    --light: #f7fafc;
    --dark: #2d3748;
    --text: #4a5568;
    --transition: all 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.03em;
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--secondary);
}

.cta-button {
    background-color: var(--secondary);
    color: white;
    padding: 10px 25px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
}

.cta-button:hover {
    background-color: #a14a1c;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    padding: 160px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 3.1rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.secondary-button {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 25px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: var(--primary);
    color: white;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-alt {
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--text);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 26px 24px 24px;
    box-shadow: 0 5px 16px rgba(0,0,0,0.04);
    transition: var(--transition);
    border: 1px solid #edf2f7;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
    border-color: #e2e8f0;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: #f7fafc;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--secondary);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

/* How It Works */
.steps {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #e2e8f0;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 15px;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 18px;
    box-shadow: 0 8px 18px rgba(26, 54, 93, 0.35);
}

.step h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--text);
}

/* Testimonials */
.testimonials {
    background-color: #f8f9fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 26px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
    position: relative;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 22px;
    position: relative;
    padding-left: 12px;
    color: var(--accent);
}

.testimonial-text::before {
    content: "“";
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    color: #e2e8f0;
    position: absolute;
    top: -25px;
    left: -5px;
    line-height: 1;
}

.author-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.author-location {
    font-size: 0.9rem;
    color: #718096;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 18px;
    font-size: 2.1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.02rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: #cbd5e0;
    padding: 60px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.93rem;
}

.footer-column ul li a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #4a5568;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 12px 0;
    }
    
    nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .steps::before {
        display: none;
    }
    
    .step {
        margin-bottom: 35px;
    }
}
