/* ===================================
   Registration Page Specific Styles
   =================================== */

.registration-section {
    background-color: var(--bg-light);
}

.registration-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover,
.pricing-card.selected {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li i {
    color: var(--success-color);
}

.pricing-card .price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Form Container */
.form-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.form-container h2 {
    margin-bottom: 2rem;
    text-align: center;
}

/* ===================================
   Contact Page Specific Styles
   =================================== */

/* Page Header Enhancements */
.page-header {
    background: #070708;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    text-align: center;
    padding: 80px 0 40px;
    padding-top: 120px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(228, 50, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(94, 152, 67, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1,
.page-header .speakers-heading {
    margin-bottom: 1.5rem;
}

.page-header .section-description {
    color: #999999;
    font-size: 1.1rem;
    font-family: 'Geist Mono', monospace;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    letter-spacing: -0.32px;
    line-height: 1.5;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Wrapper for Equal Height Layout */
.contact-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.contact-wrapper .contact-form-section,
.contact-wrapper .contact-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Contact Form Section */
.contact-form-section {
    background: #070708;
}

.contact-form-section .contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* =============================================
   Let's Start a Conversation Section - Modern Design
   ============================================= */

.contact-conversation-section {
    background: #070708;
    position: relative;
    overflow: hidden;
}

.contact-conversation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(228, 50, 39, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(94, 152, 67, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.conversation-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.conversation-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(228, 50, 39, 0.2), rgba(148, 66, 33, 0.2));
    border: 1px solid rgba(228, 50, 39, 0.3);
    border-radius: 50px;
    color: #E43227;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease-out;
}

.conversation-title {
    margin-bottom: 20px;
    line-height: 1.2;
}

.conversation-subtitle {
    font-size: 1.1rem;
    color: #999999;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Contact Methods Grid - Bento Box Layout */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Contact Method Cards - Glassmorphism */
.contact-method-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out both;
}

.email-card {
    animation-delay: 0.2s;
}

.phone-card {
    animation-delay: 0.4s;
}

.social-card {
    animation-delay: 0.6s;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(228, 50, 39, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    border-color: rgba(228, 50, 39, 0.3);
    box-shadow: 0 20px 60px rgba(228, 50, 39, 0.15), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.contact-method-card:hover::before {
    opacity: 1;
}

/* Method Icon */
.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E43227, #944221);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(228, 50, 39, 0.3);
}

.method-icon i {
    font-size: 32px;
    color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method-card:hover .method-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(228, 50, 39, 0.4);
}

.contact-method-card:hover .method-icon i {
    transform: scale(1.15);
}

/* Method Title & Description */
.method-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
}

.method-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Method Details */
.method-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.detail-value {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.detail-value:hover {
    color: #E43227;
}

a.detail-value {
    text-decoration: none;
    position: relative;
}

a.detail-value::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E43227, #944221);
    transition: width 0.3s ease;
}

a.detail-value:hover::after {
    width: 100%;
}

/* Method Badge */
.method-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(94, 152, 67, 0.15);
    border: 1px solid rgba(94, 152, 67, 0.3);
    border-radius: 50px;
    color: #5E9843;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 4px;
}

.method-badge i {
    font-size: 0.75rem;
}

.status-available {
    background: rgba(94, 152, 67, 0.2);
}

.status-available i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

/* =============================================
   Social Media Grid - Modern Platform Colors
   ============================================= */

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-btn i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.social-btn span {
    flex: 1;
    text-align: left;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Platform-Specific Colors */
.social-btn.facebook::before {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
}

.social-btn.twitter::before {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.social-btn.linkedin::before {
    background: linear-gradient(135deg, #0a66c2, #004182);
}

.social-btn.instagram::before {
    background: linear-gradient(135deg, #e4405f, #833ab4, #fd1d1d);
}

.social-btn.youtube::before {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-btn:hover::before {
    opacity: 1;
}

.social-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.social-btn:hover span {
    position: relative;
    z-index: 1;
}

.social-btn.facebook:hover {
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

.social-btn.twitter:hover {
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}

.social-btn.linkedin:hover {
    box-shadow: 0 10px 30px rgba(10, 102, 194, 0.4);
}

.social-btn.instagram:hover {
    box-shadow: 0 10px 30px rgba(228, 64, 95, 0.4);
}

.social-btn.youtube:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

/* Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form container holds the illustration and the visual card */
.contact-form-container {
    /* Visual card that contains header + illustration + form */
    background: var(--bg-white);
    padding: 2.25rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
    max-width: 1100px; /* constrain card width on wide screens */
    margin: 0 auto; /* center card */
}

/* Inner area that holds the form itself (no extra card styling) */
.contact-form-inner {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

/* Illustration beside form */
.contact-hero {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: stretch; /* ensure children can stretch to same height */
}

.contact-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin: 0;
    align-self: stretch; /* stretch to match form height */
    overflow: hidden; /* hide any tiny overflow when aspect ratios differ */
    background: transparent;
    border-radius: 8px;
}
.contact-illustration img {
    /* Preserve full image content: scale to fit height while keeping aspect ratio */
    height: 100%;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain; /* show entire image without cropping */
}

.contact-form-container:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(228, 50, 39, 0.2);
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.form-header .speakers-heading {
    margin-bottom: 0.5rem;
}

.form-header .section-description {
    color: #999999;
    font-family: 'Geist Mono', monospace;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18); /* stronger border for contrast */
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.03); /* subtle light surface on dark bg */
    color: #ffffff;
    backdrop-filter: blur(10px);
}

/* Improved select styling with custom arrow and readable options */
.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 44px; /* space for custom arrow */
    cursor: pointer;
}

/* Dropdown option styling (may be limited by browser but helps where supported) */
.form-group select option {
    background: #0b0b0c;
    color: #ffffff;
}

/* Wrapper to allow clickable arrow-free interactions on some devices */
.select-wrapper {
    position: relative;
}

.select-container {
    position: relative;
    display: block;
}

.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    transition: var(--transition);
}

.select-wrapper:focus-within .select-arrow {
    color: var(--secondary-color);
    transform: translateY(-50%) rotate(180deg);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.55); /* improved placeholder contrast */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 6px 18px rgba(0,0,0,0.45), 0 0 0 4px rgba(228,50,39,0.12);
    transform: translateY(-2px);
}

/* Form Validation States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error-color);
    background-color: rgba(228, 50, 39, 0.05);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: var(--success-color);
    background-color: rgba(94, 152, 67, 0.05);
}

.form-group .error-message {
    display: block;
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group .error-message i {
    font-size: 0.9rem;
}

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

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

.form-consent {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    line-height: 1.5;
    user-select: none;
}

.checkbox-label:hover {
    color: rgba(255, 255, 255, 0.95);
}

.checkbox-label:hover .checkmark {
    border-color: rgba(255, 255, 255, 0.5);
}

.checkbox-label .checkbox-text {
    flex: 1;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.btn-primary {
    background: linear-gradient(135deg, #E43227 0%, #944221 100%);
    background-size: 200% 200%;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(228, 50, 39, 0.4), 0 3px 6px rgba(0, 0, 0, 0.3);
    width: 100%;
    text-decoration: none;
    min-height: 58px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #944221 0%, #E43227 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(228, 50, 39, 0.5), 0 5px 10px rgba(0, 0, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 5px 15px rgba(228, 50, 39, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    background: linear-gradient(135deg, rgba(228, 50, 39, 0.4) 0%, rgba(148, 66, 33, 0.4) 100%);
    box-shadow: none;
}

.btn-primary:disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-primary:disabled::before {
    opacity: 0;
}

.btn-primary .btn-text,
.btn-primary .btn-icon {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Alert Messages */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: none;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: slideIn 0.3s ease-out;
}

.alert.show {
    display: flex;
}

.alert i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.alert.alert-success {
    background-color: rgba(94, 152, 67, 0.15);
    border: 1px solid rgba(94, 152, 67, 0.3);
    color: #5E9843;
}

.alert.alert-error {
    background-color: rgba(228, 50, 39, 0.15);
    border: 1px solid rgba(228, 50, 39, 0.3);
    color: #E43227;
}

.alert.alert-info {
    background-color: rgba(60, 172, 168, 0.15);
    border: 1px solid rgba(60, 172, 168, 0.3);
    color: #3CACA8;
}

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

.btn-icon {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px) rotate(-15deg);
}

.btn-primary:active .btn-icon {
    transform: translateX(3px) rotate(-10deg);
}

.form-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.privacy-note i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #0d0d0e 0%, var(--bg-light) 50%, #0d0d0e 100%);
    padding: 60px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.faq-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.06); /* increase contrast for question row */
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.04); /* slightly stronger so text reads clearly */
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.faq-answer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-cta p {
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.map-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.venue-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.venue-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.venue-detail i {
    color: var(--secondary-color);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.map-container iframe {
    display: block;
    filter: saturate(0.9);
}

.map-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* =============================================
   Loading Spinner & Micro-interactions
   ============================================= */

.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Focus States */
.form-group.focused label {
    color: var(--secondary-color);
}

/* Smooth Height Transition for Textarea */
.form-group textarea {
    transition: height 0.2s ease, border-color 0.3s ease, background-color 0.3s ease;
}

/* Button Loading State Improvements */
.btn-primary:disabled {
    background: linear-gradient(135deg, rgba(228, 50, 39, 0.5), rgba(148, 66, 33, 0.5));
    cursor: not-allowed;
    transform: none;
}

/* Success State Checkmark Animation */
@keyframes checkmark {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(45deg);
        opacity: 1;
    }
}

.form-group input.success::after,
.form-group select.success::after,
.form-group textarea.success::after {
    animation: checkmark 0.4s ease-out;
}

/* Improved Select Dropdown Animation */
.select-wrapper select {
    transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
}

.select-wrapper:hover select {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Accessibility: Focus Visible States */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(228, 50, 39, 0.5);
    outline-offset: 3px;
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 8px 20px rgba(228, 50, 39, 0.5), 0 3px 6px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(228, 50, 39, 0.3);
}

/* Placeholder Animation */
@keyframes placeholderShimmer {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    animation: placeholderShimmer 2s ease-in-out infinite;
}
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .venue-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
    
    .contact-form-section .contact-form-container {
        max-width: 100%;
        padding: 1.5rem;
        min-height: auto;
    }

    /* keep illustration stacked under form on small screens */
    .contact-hero {
        flex-direction: column;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .form-header {
        margin-bottom: 2rem;
    }
    
    .form-header .speakers-heading {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* Additional small-screen tweaks for contact page */
@media (max-width: 600px) {
    .contact-form-container {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .page-header {
        padding-top: 90px;
        padding-bottom: 24px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .social-icons a {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

/* On larger screens place illustration beside form */
@media (min-width: 900px) {
    .contact-hero {
        flex-direction: row;
        align-items: stretch; /* stretch so image and form match heights */
    }

    /* keep the outer container as a vertical card; only the hero becomes a row */

    .contact-illustration {
        flex: 0 0 360px;
        margin-right: 1.5rem; /* space between image (left) and form (right) */
        margin-top: 0;
    }

    .contact-form-inner {
        flex: 1 1 auto;
    }

    /* place image on the left visually (already before form in DOM); ensure no rounding gap */
    .contact-illustration img {
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .contact-form-section .contact-form-container {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .form-header {
        margin-bottom: 1.5rem;
    }
    
    .form-header .speakers-heading {
        font-size: 1.3rem;
    }
    
    .form-row {
        gap: 0.75rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
}

/* Medium screens (tablets) */
@media (max-width: 1024px) and (min-width: 769px) {
    .contact-form-section .contact-form-container {
        padding: 2rem;
        min-height: 500px;
    }
    
    .form-row {
        gap: 1rem;
    }
    
    .contact-grid {
        gap: 2rem;
    }
}

/* Small tablets and large phones */
@media (max-width: 900px) and (min-width: 769px) {
    .contact-form-section .contact-form-container {
        padding: 1.5rem;
        min-height: 450px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .form-row {
        gap: 1rem;
    }
    
    .contact-grid {
        gap: 2rem;
    }
}

/* ===================================
   Waitlist Page Specific Styles
   =================================== */

.waitlist-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.waitlist-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Form Side */
.waitlist-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.form-header i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.form-header .speakers-heading {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.waitlist-form .form-group {
    margin-bottom: 25px;
}

.waitlist-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.waitlist-form label i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.required {
    color: var(--error-color);
    font-weight: 700;
}

.waitlist-form input,
.waitlist-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
    font-family: var(--font-primary);
}

.waitlist-form input:focus,
.waitlist-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(228, 50, 39, 0.1);
}

.waitlist-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(228, 50, 39, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.form-message.success {
    background-color: rgba(94, 152, 67, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.form-message.error {
    background-color: rgba(228, 50, 39, 0.1);
    color: var(--error-color);
    border: 1px solid var(--error-color);
}

.form-message i {
    font-size: 1.3rem;
}

/* Package Details Side */
.package-details-wrapper {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.package-details {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

.package-placeholder {
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.package-placeholder i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.5;
}

.package-placeholder h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.package-placeholder p {
    color: var(--text-light);
    max-width: 300px;
}

.package-card {
    padding: 40px;
    border-left: 4px solid;
    animation: fadeInUp 0.5s ease;
}

.package-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.package-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.package-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.package-features {
    margin-top: 30px;
}

.package-features h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.package-features ul {
    list-style: none;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    font-size: 1.1rem;
    margin-top: 3px;
}

.package-features li span {
    flex: 1;
    color: var(--text-light);
    line-height: 1.6;
}

.package-badge {
    margin-top: 30px;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Waitlist Benefits */
.waitlist-benefits {
    margin-top: 80px;
    text-align: center;
}

.waitlist-benefits h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.benefit-item {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Responsive Styles for Waitlist Page */
@media screen and (max-width: 1024px) {
    .waitlist-container {
        grid-template-columns: 1fr;
    }
    
    .package-details-wrapper {
        position: static;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .waitlist-form-wrapper {
        padding: 25px;
    }
    
    .form-header .speakers-heading {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        padding: 25px;
    }
    
    .package-title {
        font-size: 1.5rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
}

/* ===================================
   Waitlist Page Styles
   =================================== */

.waitlist-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    min-height: 80vh;
}

.waitlist-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Form Wrapper */
.waitlist-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-header .icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #320802 0%, #E43227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-header .icon-wrapper i {
    font-size: 30px;
    color: #ffffff;
}

.form-header .speakers-heading {
    font-size: 2rem;
    color: #0d0d0e;
    margin-bottom: 10px;
}

.form-header p {
    color: #78716c;
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Styles */
.waitlist-form .form-group {
    margin-bottom: 25px;
}

.waitlist-form label {
    display: block;
    font-weight: 600;
    color: #292524;
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.waitlist-form label i {
    color: #E43227;
    font-size: 0.9rem;
}

.waitlist-form .required {
    color: #E43227;
}

.waitlist-form input,
.waitlist-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: #ffffff;
    color: #0d0d0e;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
    outline: none;
    border-color: #E43227;
    box-shadow: 0 0 0 3px rgba(228, 50, 39, 0.1);
}

.waitlist-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23292524' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

.waitlist-form input::placeholder {
    color: #9ca3af;
}

/* Package Details Card */
.package-details {
    margin-top: 30px;
    animation: slideDown 0.4s ease-out;
}

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

.package-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #fbbf24;
}

.package-header {
    margin-bottom: 20px;
}

.package-header h3 {
    font-size: 1.4rem;
    color: #78350f;
    margin-bottom: 10px;
}

.package-price {
    margin-top: 10px;
}

.package-price .price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #78350f;
    font-family: var(--font-display);
}

.package-price .contact-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #78350f;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
}

.package-price .price-compare {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-price .original {
    text-decoration: line-through;
    color: #92400e;
    font-size: 1rem;
}

.package-price .discount {
    background: #78350f;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-features h4 {
    font-size: 1rem;
    color: #78350f;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-features h4 i {
    color: #16a34a;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #78350f;
}

.package-features li i {
    color: #16a34a;
    margin-top: 4px;
    flex-shrink: 0;
}

.package-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #78350f;
    font-weight: 500;
}

.package-note i {
    color: #2563eb;
    font-size: 1.2rem;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #320802 0%, #E43227 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(228, 50, 39, 0.3);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 50, 39, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit i {
    font-size: 1rem;
}

/* Success and Error Messages */
.success-message,
.error-message {
    margin-top: 25px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    animation: slideDown 0.4s ease-out;
}

.success-message {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
}

.success-message i {
    font-size: 3rem;
    color: #059669;
    margin-bottom: 15px;
}

.success-message h3 {
    color: #065f46;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.success-message p {
    color: #047857;
    margin: 0;
}

.error-message {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #ef4444;
}

.error-message i {
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 10px;
}

.error-message p {
    color: #991b1b;
    margin: 0;
    font-weight: 500;
}

/* Right Side Info */
.waitlist-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.info-card .info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-card .info-icon i {
    font-size: 26px;
    color: #78350f;
}

.info-card h3 {
    color: #0d0d0e;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #57534e;
}

.info-card li i {
    color: #E43227;
    margin-top: 4px;
    flex-shrink: 0;
}

.info-card p {
    color: #78716c;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #320802 0%, #E43227 100%);
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 50, 39, 0.3);
}

.trust-badges {
    display: flex;
    gap: 15px;
}

.trust-badges .badge {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    text-align: center;
}

.trust-badges .badge i {
    font-size: 1.8rem;
    color: #16a34a;
}

.trust-badges .badge span {
    font-size: 0.85rem;
    color: #475569;
    font-weight: 600;
}

/* Responsive Styles for Waitlist */
@media screen and (max-width: 992px) {
    .waitlist-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .waitlist-info {
        order: -1;
    }
}

@media screen and (max-width: 767px) {
    .waitlist-section {
        padding: 60px 0;
    }

    .waitlist-form-wrapper {
        padding: 30px 20px;
    }

    .form-header .speakers-heading {
        font-size: 1.5rem;
    }

    .package-card {
        padding: 20px;
    }

    .package-price .price-main {
        font-size: 2rem;
    }

    .info-card {
        padding: 25px 20px;
    }

    .trust-badges {
        flex-direction: column;
    }
}

/* Privacy Policy Page Styles */
.privacy-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.privacy-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.privacy-intro h2 {
    color: #E43227;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.privacy-text {
    margin-bottom: 3rem;
}

.privacy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.privacy-text p:last-child {
    margin-bottom: 0;
}

.privacy-contact {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.privacy-contact h3 {
    color: #E43227;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.privacy-contact p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-methods {
    display: grid;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.contact-method i {
    color: #E43227;
    font-size: 1.2rem;
    min-width: 20px;
}

.contact-method a {
    color: #E43227;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

.privacy-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-privacy-contact,
.btn-privacy-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-privacy-contact {
    background: var(--secondary-color);
    color: white;
}

.btn-privacy-contact:hover {
    background: var(--white);
    transform: translateY(-2px);
    color: var(--secondary-color)
}

.btn-privacy-home {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-privacy-home:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    border: none;
}

/* Responsive Privacy Policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }

    .privacy-intro h2 {
        font-size: 2rem;
    }

    .privacy-text p {
        font-size: 1rem;
    }

    .privacy-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-privacy-contact,
    .btn-privacy-home {
        width: 100%;
        justify-content: center;
    }
}
