/* Registration Forms Page Specific Styles - Premium Redesign */

:root {
    --form-teal: #006064;
    --form-orange: #ff6f00;
    --form-light: #e0f2f1;
    --card-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.section-padding {
    padding: 50px 0;
}

/* Inner Banner */
.inner-banner {
    min-height: 240px;
    height: 240px;
    max-height: 240px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;

    background-size: cover;
    background-position: center 12%;
    background-repeat: no-repeat;}

.inner-banner .container {
    position: relative;
    z-index: 5;
}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.45));
    z-index: 1;
}

.inner-banner .breadcrumb {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    margin-bottom: 12px;
    font-weight: 500;
    position: relative;
    z-index: 5;
    color: rgba(255, 255, 255, 0.7);
}

.inner-banner .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-banner .breadcrumb a:hover {
    color: var(--form-orange, #ff6f00);
}

.inner-banner .breadcrumb span {
    color: var(--white);
}

.banner-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    z-index: 5;
    margin: 0;
}

/* Grid Layout */
.forms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.form-card {
    background: var(--white);
    border-radius: 25px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.form-card:hover {
    transform: translateY(-10px);
    border-color: var(--form-teal);
}

.form-card-image {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f1f5f9;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
}

.form-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-card:hover .form-card-image img {
    transform: scale(1.06);
}

.form-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--form-orange);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.form-card h4 {
    color: var(--form-teal);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: var(--form-light);
    color: var(--form-teal);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--form-teal);
    color: var(--white);
}

/* Instruction Section */
.guide-box {
    background: var(--form-teal);
    color: var(--white);
    padding: 60px;
    border-radius: 40px;
}

.guide-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: var(--form-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .forms-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .forms-grid { grid-template-columns: 1fr; }
    .banner-title { font-size: 38px; }
    .guide-box { padding: 30px; }
}
