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

:root {
    --primary: #1a1a1a;
    --bg-color: #F5F1E8;
    --accent: #E8B5E8;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --white: #ffffff;
    --border: rgba(0, 0, 0, 0.1);
    --success: #10b981;
}

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

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

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

/* Hero Section */
.hero {
    padding: 30px 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    text-align: center;
}

.hero-label {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
}

/* Info Cards Section */
.info-cards-section {
    padding: 20px 0 60px;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.info-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    border-radius: 50%;
}

.info-icon i {
    font-size: 24px;
    color: var(--primary);
}

.info-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.info-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: var(--accent);
    /* Pink accent from index */
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 80px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--bg-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

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

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.submit-btn {
    padding: 20px 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #000;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px;
}

.success-message.active {
    display: block;
}

.success-message i {
    font-size: 64px;
    color: var(--success);
    margin-bottom: 24px;
}

.success-message h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.success-message p {
    font-size: 18px;
    color: var(--text-light);
}



/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .form-wrapper {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 30vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .submit-btn {
        width: 100%;
    }
}