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

:root {
    /* Warm Earth Tone Palette */
    --coral: #FF6B6B;
    --coral-dark: #EE5A52;
    --peach: #FFA07A;
    --gold: #FFD93D;
    --sage: #95B8A9;
    --sage-dark: #6B9080;
    --cream: #FFF8E7;
    --sand: #F4E8D8;
    --terracotta: #D97850;
    --mint: #A8E6CF;
    
    /* Neutrals */
    --dark: #2D3436;
    --dark-gray: #4A5568;
    --medium-gray: #718096;
    --light-gray: #CBD5E0;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    
    /* Gradients */
    --gradient-warm: linear-gradient(135deg, #FF6B6B 0%, #FFA07A 50%, #FFD93D 100%);
    --gradient-nature: linear-gradient(135deg, #95B8A9 0%, #A8E6CF 100%);
    
    /* Effects */
    --shadow: 0 10px 40px rgba(45, 52, 54, 0.12);
    --shadow-lg: 0 20px 60px rgba(45, 52, 54, 0.18);
    --radius: 20px;
    --radius-lg: 30px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.7;
    min-height: 100vh;
}

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

/* Header */
header {
    background: var(--white);
    padding: 24px 0;
    box-shadow: 0 2px 20px rgba(255, 107, 107, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transform: rotate(-5deg);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--coral);
    letter-spacing: -0.5px;
}

.back-link {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 107, 107, 0.1);
}

.back-link:hover {
    gap: 12px;
    background: rgba(255, 107, 107, 0.2);
    transform: translateX(-3px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0 60px;
    background: linear-gradient(to bottom, var(--cream) 0%, var(--sand) 100%);
}

.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark);
    letter-spacing: -2px;
}

.page-title-highlight {
    color: var(--coral);
}

.page-subtitle {
    font-size: 20px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    padding: 60px 0;
}

/* Contact Form */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 15px;
}

input,
textarea,
select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--dark);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-warm);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.45);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Info */
.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-box {
    background: linear-gradient(to bottom, var(--sand) 0%, var(--cream) 100%);
    border-radius: var(--radius);
    padding: 35px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.info-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--coral);
}

.info-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-warm);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.info-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.info-text {
    color: var(--dark-gray);
    font-size: 15px;
    line-height: 1.7;
}

.info-text a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--coral-dark);
}

/* FAQ Section */
.faq-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: var(--shadow-lg);
}

.faq-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 48px;
    text-align: center;
    color: var(--dark);
    letter-spacing: -1px;
}

.faq-item {
    background: var(--sand);
    padding: 28px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: var(--peach);
    transform: translateX(5px);
}

.faq-question {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 15px;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--cream);
    padding: 70px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--coral);
}

.copyright {
    font-size: 14px;
    opacity: 0.6;
}

/* Success Message */
.success-message {
    background: var(--gradient-nature);
    padding: 20px 28px;
    border-radius: var(--radius);
    margin-bottom: 28px;
    display: none;
    box-shadow: var(--shadow);
    border: 2px solid var(--sage-dark);
}

.success-message.show {
    display: block;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message p {
    margin: 0;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 0 50px;
    }

    .page-title {
        font-size: 48px;
    }

    .contact-form-card,
    .faq-section {
        padding: 40px 28px;
    }

    .info-box {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .page-title {
        font-size: 40px;
    }

    .brand-name {
        font-size: 22px;
    }

    .brand-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}
