/* ================================
   Light Theme Overrides
   ================================ */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    color: #333;
    padding: 80px 0;
    min-height: 700px;
    display: flex;
    align-items: center;
    text-align: left;
    /* border-radius: 10px 10px 0 0; */
}
.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.6);
}
.hero-section p.lead {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 30px;
}
.hero-icon {
    font-size: 180px;
    opacity: 0.15;
    color: #007bff;
}

/* Process Section */
.process-section {
    background: #fdfdfd;
}
.process-card {
    background: #ffffff;
    border: 1px solid #e0e6f1;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}
.process-number {
    background: #a1c4fd;
    color: #333;
}
.process-icon {
    color: #007bff;
}

/* Info Section */
.info-section {
    background: #f8fbff;
}
.info-card {
    background: #ffffff;
    border: 1px solid #e0e6f1;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.info-card h4 {
    color: #007bff;
}

/* Documents Section */
.document-card {
    background: #ffffff;
    border: 1px solid #e0e6f1;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.document-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Waitlist Section */
.waitlist-section {
    background: linear-gradient(135deg, #c2e9fb 0%, #e0c3fc 100%);
    color: #333;
}
.waitlist-section h2,
.waitlist-section p.lead {
    color: #222;
}
.card {
    border: 1px solid #e0e6f1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Buttons */
.btn-lg {
    padding: 14px 32px;
    font-size: 18px;
    border-radius: 10px;
    transition: background 0.3s ease;
}
.btn-success {
    background-color: #28a745;
    border: none;
}
.btn-success:hover {
    background-color: #218838;
}
.btn-primary {
    background-color: #007bff;
    border: none;
}
.btn-primary:hover {
    background-color: #0069d9;
}
