


.meeting-section {
    padding: 10rem 0 5rem;
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.meeting-section-success {
    padding: 7rem 0 10rem;
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.hero-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-sphere-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58, 157, 251, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    left: -100px;
}

.hero-sphere-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(9, 105, 194, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    top: 100px;
    right: -100px;
}


.meeting-header {
    margin-bottom: 3rem;
}

.meeting-header h1 {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 50px;
    margin-top: 50px;
}

.intro-text {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.heading-gradient {
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #3a9dfb;
}


.meeting-form-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(58, 157, 251, 0.1);
}

.form-step {
    margin-bottom: 2.5rem;
}


.meeting-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.meeting-type-card {
    position: relative;
    cursor: pointer;
}

.meeting-type-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.card-content {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3a9dfb, #0969c2);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(58, 157, 251, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #3a9dfb;
    transition: all 0.3s ease;
}

.meeting-type-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.meeting-type-card p {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin: 0;
}


.meeting-type-card:hover .card-content {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(58, 157, 251, 0.15);
}

.meeting-type-card:hover .card-content::before {
    transform: scaleX(1);
}

.meeting-type-card input:checked+.card-content {
    border-color: #3a9dfb;
    background: #fff;
    box-shadow: 0 15px 40px rgba(58, 157, 251, 0.1);
}

.meeting-type-card input:checked+.card-content::before {
    transform: scaleX(1);
}

.meeting-type-card input:checked+.card-content .icon-wrapper {
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(58, 157, 251, 0.3);
}


.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-control-custom {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #f0f2f5;
    border-radius: 16px;
    font-size: 1rem;
    color: #2c3e50;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-control-custom:focus {
    outline: none;
    border-color: #3a9dfb;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(58, 157, 251, 0.1);
    transform: translateY(-2px);
}

textarea.form-control-custom {
    resize: vertical;
}


.submit-btn {
    padding: 1.2rem 4rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    color: white;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(58, 157, 251, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(58, 157, 251, 0.5);
    filter: brightness(1.1);
    color: white;
}

.submit-btn:active {
    transform: translateY(-1px);
}


@media (max-width: 768px) {
    .meeting-header h1 {
        font-size: 2.5rem;
    }

    .meeting-form-container {
        padding: 1.5rem;
    }

    .meeting-types-grid {
        grid-template-columns: 1fr;
    }
}
