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

:root {
    --navy-900: #0a1628;
    --navy-800: #111d35;
    --navy-700: #1a2a4a;
    --navy-600: #243b65;
    --navy-500: #2e4d80;
    --gold-400: #c9a96e;
    --gold-300: #d4b97a;
    --gold-200: #e0cb94;
    --gold-100: #f0e4c4;
    --cream: #f5f0e8;
    --text-primary: #f0ede8;
    --text-secondary: #a8b4c8;
    --text-muted: #7a8aa4;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.07);
    --error: #e74c3c;
    --success: #27ae60;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy-900);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 77, 128, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    position: relative;
    z-index: 10;
    padding: 2rem 2rem 1.5rem;
    text-align: center;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 600;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-200) 50%, var(--gold-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.brand-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-200) 50%, var(--gold-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.brand-link:hover {
    opacity: 0.8;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.back-link:hover {
    color: var(--gold-400);
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    color: var(--gold-400);
    border-color: var(--gold-400);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.15);
}

.social-link.youtube:hover { color: #FF0000; border-color: #FF0000; box-shadow: 0 8px 25px rgba(255, 0, 0, 0.15); }
.social-link.instagram:hover { color: #E4405F; border-color: #E4405F; box-shadow: 0 8px 25px rgba(228, 64, 95, 0.15); }
.social-link.tiktok:hover { color: #fff; border-color: #69C9D0; box-shadow: 0 8px 25px rgba(105, 201, 208, 0.15); }
.social-link.facebook:hover { color: #1877F2; border-color: #1877F2; box-shadow: 0 8px 25px rgba(24, 119, 242, 0.15); }

main {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 3rem 4rem;
    margin: 1rem auto 0;
    max-width: 1200px;
    gap: 4rem;
}

.hero-content {
    flex: 1.2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.25;
    font-weight: 600;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.hero-content .highlight-text {
    background: var(--glass-bg);
    border-left: 3px solid var(--gold-400);
    padding: 1rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: var(--gold-200);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.btn, .back-btn {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary, .back-btn {
    background: linear-gradient(135deg, var(--gold-400) 0%, #b8944f 100%);
    color: var(--navy-900);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
}

.btn-primary:hover, .back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.35);
    background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 100%);
    color: var(--navy-900);
}

.btn-secondary {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--gold-400);
    color: var(--gold-400);
    background: rgba(201, 169, 110, 0.08);
}

.hero-image {
    flex: 0.85;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(201, 169, 110, 0.2);
    border-radius: 20px;
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-400), transparent);
    border-radius: 12px;
    opacity: 0.3;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.section {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 5rem 2rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2.5rem;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.step-card::before, .step-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-400), transparent);
    transition: all 0.5s ease;
    opacity: 1;
}

.step-card::before {
    top: 0;
    transform-origin: left;
}

.step-card::after {
    bottom: 0;
    background: linear-gradient(-90deg, var(--gold-400), transparent);
    transform-origin: right;
}

.step-card:hover {
    background: var(--glass-hover);
    border-color: rgba(201, 169, 110, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-card:hover::before, .step-card:hover::after {
    opacity: 0;
    transform: scaleX(0);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
    border: 1px solid rgba(201, 169, 110, 0.25);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-400);
}

.step-content {
    flex: 1;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
}

.step-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

.cta-banner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3.5rem;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, rgba(201, 169, 110, 0.02) 100%);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 25px;
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-banner p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2rem;
    font-weight: 300;
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cta-feature i {
    color: var(--gold-400);
    font-size: 0.8rem;
}

footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--gold-400);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    color: var(--gold-400);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:nth-child(2) { transition-delay: 0.1s; }
.step-card:nth-child(3) { transition-delay: 0.2s; }
.step-card:nth-child(4) { transition-delay: 0.3s; }

.form-wrapper {
    width: 100%;
    max-width: 650px;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header .form-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.form-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
}

.contact-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.form-group label .required {
    color: var(--gold-400);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-400);
    background: rgba(201, 169, 110, 0.05);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

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

.radio-group-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.radio-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-option label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

.radio-option input[type="radio"]:checked + label {
    background: rgba(201, 169, 110, 0.12);
    border-color: var(--gold-400);
    color: var(--gold-400);
}

.radio-option label:hover {
    border-color: rgba(201, 169, 110, 0.4);
    background: rgba(201, 169, 110, 0.06);
}

.consent-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--gold-400) 0%, #b8944f 100%);
    color: var(--navy-900);
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.3);
    background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 100%);
}

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

.success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
    border: 2px solid rgba(201, 169, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--gold-400);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px 10px rgba(201, 169, 110, 0.1); }
}

main h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

main h1 span {
    color: var(--gold-400);
}

.subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.contact-info {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--gold-400);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.contact-info i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 2rem 1.5rem 3rem;
        gap: 2.5rem;
    }

    .hero-content .highlight-text {
        text-align: left;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-group {
        justify-content: center;
    }

    .hero-image {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-image::before {
        top: -10px;
        right: -10px;
    }

    .steps-container {
        max-width: 100%;
    }

    .step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }

    .step-number {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-banner {
        padding: 2.5rem 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .cta-features {
        flex-direction: column;
        align-items: flex-start;
        width: max-content;
        margin: 0 auto 2rem auto;
        gap: 0.8rem;
    }

    header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }

    main {
        padding: 1.5rem 1rem;
    }

    .back-link {
        position: static;
        transform: none;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
    }
    
    header {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .btn, .back-btn {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
        width: 100%;
    }

    .btn-group {
        flex-direction: column;
    }
}
