/* Tailor-Made Page Styles */

/* ====== HERO SECTION ====== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 122, 131, 0.75) 0%, rgba(6, 90, 97, 0.80) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 1100px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 28px;
    border-radius: 50px;
    color: #F5A623;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: #F5A623;
    display: block;
    margin-top: 8px;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .hero-features {
        grid-template-columns: 1fr;
    }
}

.hero-feature-card {
    background: rgba(11, 122, 131, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-feature-card:hover {
    background: rgba(11, 122, 131, 0.55);
    transform: translateY(-5px);
    border-color: rgba(245, 166, 35, 0.5);
}

.hero-feature-icon {
    color: #F5A623;
    font-size: 32px;
    margin-bottom: 15px;
}

.hero-feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.hero-feature-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ====== FORM SECTION ====== */
.form-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.form-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1568322445389-f64ac2515020?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.form-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 250, 252, 0.92);
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: #0B7A83;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.form-card {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(11, 122, 131, 0.08);
}

@media (max-width: 768px) {
    .form-card {
        padding: 30px 20px;
    }
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.form-section-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0B7A83, #065a61);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(11, 122, 131, 0.2);
}

.form-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0B7A83;
    background: white;
    box-shadow: 0 0 0 4px rgba(11, 122, 131, 0.08);
    outline: none;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 12px;
}

@media (max-width: 1024px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 20px !important;
    padding: 16px 18px;
    background: #f8f9fa;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.checkbox-item:hover {
    border-color: #0B7A83;
    background: rgba(11, 122, 131, 0.05);
    transform: translateY(-2px);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #0B7A83;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked+span {
    color: #0B7A83;
    font-weight: 600;
}

.checkbox-item:has(input:checked) {
    border-color: #0B7A83;
    background: rgba(11, 122, 131, 0.08);
}

.checkbox-item span {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    transition: all 0.3s;
}

.col-span-2 {
    grid-column: span 2;
}

.col-span-3 {
    grid-column: span 3;
}

@media (max-width: 1024px) {
    .col-span-3 {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {

    .col-span-2,
    .col-span-3 {
        grid-column: span 1;
    }
}

.submit-section {
    text-align: center;
    margin-top: 45px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #F5A623, #f7b731);
    color: white;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(245, 166, 35, 0.3);
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.35);
}

.submit-note {
    margin-top: 18px;
    font-size: 13px;
    color: #888;
}

.submit-note i {
    color: #0B7A83;
    margin-right: 5px;
}

/* ====== WHY SECTION ====== */
.why-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.why-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1568322445389-f64ac2515020?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.why-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 250, 252, 0.95);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0B7A83, #F5A623);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: #0B7A83;
    box-shadow: 0 15px 45px rgba(11, 122, 131, 0.12);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.why-card:nth-child(1) .why-icon {
    background: linear-gradient(135deg, #0B7A83, #065a61);
    box-shadow: 0 12px 30px rgba(11, 122, 131, 0.3);
}

.why-card:nth-child(2) .why-icon {
    background: linear-gradient(135deg, #F5A623, #f7b731);
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.3);
}

.why-card:nth-child(3) .why-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.why-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.why-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 48px;
    color: white;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.success-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #0B7A83, #065a61);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(11, 122, 131, 0.3);
}

.home-btn:hover {
    background: #065a61;
    transform: translateY(-2px);
}