@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
    --bg-color: #050a12;
    --card-bg: #0d1624;
    --primary-pink: #ff5a79;
    --text-white: #ffffff;
    --text-muted: #a0aec0;
    --font-main: 'Inter', sans-serif;
    --accent-glow: rgba(255, 90, 121, 0.2);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Header */
header {
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 10, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-pink);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-white);
}

.nav-links a:hover {
    color: var(--primary-pink);
}

.btn-nav {
    border: 1px solid var(--text-muted);
    padding: 8px 20px;
    border-radius: 4px;
}

.nav-links a.btn-nav:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: #ffffff !important;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: radial-gradient(circle at 70% 30%, rgba(255, 90, 121, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 10% 70%, rgba(255, 90, 121, 0.05) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-text h4 {
    color: var(--primary-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 30px;
}

.date-badge {
    display: inline-block;
    color: var(--primary-pink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form */
.form-card {
    background: rgba(13, 22, 36, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 90, 121, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: 0.3s ease;
}

.form-card:hover {
    border-color: var(--primary-pink);
    box-shadow: 0 0 30px rgba(255, 90, 121, 0.1);
}

.form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    color: white;
    border-radius: 6px;
    outline: none;
}

.form-group select option {
    background-color: var(--card-bg);
    color: white;
}

.form-group input:focus {
    border-color: var(--primary-pink);
}

.btn-submit {
    width: 100%;
    background: var(--primary-pink);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-submit:disabled {
    background: #4a5568;
    color: #a0aec0;
    cursor: not-allowed;
    filter: none;
    box-shadow: none;
    opacity: 0.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-pink);
    margin: 0 auto 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(13, 22, 36, 0.5);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 90, 121, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-pink);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Specialist Section */
.specialist {
    padding: 100px 0;
}

.specialist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.specialist-img {
    position: relative;
}

.specialist-img img {
    width: 100%;
    border-radius: 20px;
}

.specialist-text h4 {
    color: var(--primary-pink);
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.specialist-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.quote {
    border-left: 4px solid var(--primary-pink);
    padding-left: 20px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.bio {
    margin-bottom: 40px;
    color: var(--text-muted);
}

.stats-grid {
    display: flex;
    gap: 50px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--text-white);
}

.stat-item p {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(13, 22, 36, 0.5);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(13, 22, 36, 0.8);
    border-color: rgba(255, 90, 121, 0.3);
}

.stars {
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-style: italic;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.user-info h5 {
    font-size: 0.9rem;
}

.user-info span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle, rgba(255, 90, 121, 0.1) 0%, transparent 70%);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta h2 span {
    color: var(--primary-pink);
    display: block;
}

.cta p {
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    background: #f7b7bb; /* Lighter pink from bottom button */
    color: #1a1a1a;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
}

.btn-large:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo h2 {
    font-size: 1.2rem;
}

.footer-logo p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 18, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2001;
    transition: 0.3s;
}

.modal-close:hover {
    background: var(--primary-pink);
    color: white;
    transform: rotate(90deg);
}

/* Trigger Button Styles */
.btn-trigger {
    font-size: 1.2rem;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 90, 121, 0.3);
    animation: pulse 2s infinite;
    display: inline-block;
    text-align: center;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 90, 121, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 90, 121, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 90, 121, 0);
    }
}

@media (max-width: 968px) {
    .hero-content, .specialist-content, .features-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 3.5rem;
    }
    .hero {
        padding-top: 100px;
    }
    .modal-content {
        max-width: 90%;
    }
}

