:root {
    --primary-red: #C4002F;
    --secondary-white: #FFFFFF;
    --accent-dark: #1a1a1a;
    --charcoal: #2c2c2c;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow-light: rgba(196, 0, 47, 0.1);
    --shadow-medium: rgba(196, 0, 47, 0.2);
    --shadow-heavy: rgba(196, 0, 47, 0.3);
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SECTION 1: HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--secondary-white);
    margin-bottom: 25px;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--secondary-white);
    margin-bottom: 40px;
    line-height: 1.4;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.cta-primary {
    background: var(--primary-red);
    color: var(--secondary-white);
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px var(--shadow-heavy);
    background: #a30026;
}

.cta-secondary {
    background: transparent;
    color: var(--secondary-white);
    border: 2px solid var(--secondary-white);
}

.cta-secondary:hover {
    background: var(--secondary-white);
    color: var(--primary-red);
    transform: translateY(-3px);
}

/* SECTION 2: BRAND TRUST STRIP */
.trust-strip {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.trust-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* SECTION 3: ABOUT THE INSTITUTE */
.about-section {
    padding: 100px 0;
    background: var(--secondary-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--primary-red);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out;
}

.about-image-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary-red);
}

.about-institute-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.about-image-container:hover .about-institute-image {
    transform: scale(1.05);
}

/* SECTION 4: OPEN POSITIONS */
.positions-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.position-card {
    background: var(--secondary-white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    cursor: pointer;
}

.position-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px var(--shadow-light);
    border-color: var(--primary-red);
}

.position-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.position-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.position-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.position-tag {
    display: inline-block;
    padding: 6px 15px;
    background: var(--bg-light);
    color: var(--primary-red);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* SECTION 5: EXPERIENCE REQUIREMENTS */
.experience-section {
    position: relative;
    padding: 100px 0;
    background: var(--primary-red);
    color: var(--secondary-white);
    overflow: hidden;
}

.experience-diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, #a30026 100%);
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    z-index: 1;
}

.experience-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.experience-title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.experience-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 60px;
    opacity: 0.95;
}

.experience-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.experience-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 500;
}

.list-icon {
    min-width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* SECTION 6: TRAINING SPECIFICATIONS */
.training-specs-section {
    padding: 100px 0;
    background: var(--secondary-white);
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.training-item {
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.training-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px var(--shadow-light);
    background: var(--secondary-white);
}

.training-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.training-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.training-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

/* SECTION 7: ROLE RESPONSIBILITIES */
.responsibilities-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.responsibility-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.responsibility-item:hover {
    border-left-color: var(--primary-red);
    transform: translateX(5px);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.responsibility-icon {
    flex-shrink: 0;
}

.responsibility-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.responsibility-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* SECTION 8: WHY JOIN US */
.benefits-section {
    padding: 100px 0;
    background: var(--secondary-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--secondary-white);
    padding: 40px 35px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 50px var(--shadow-light);
}

.benefit-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* SECTION 9: CAREER GROWTH PATH */
.career-path-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.career-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    color: var(--secondary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

.timeline-connector {
    flex: 1;
    height: 3px;
    background: linear-gradient(to right, var(--primary-red), rgba(196, 0, 47, 0.3));
    margin: 0 20px;
    position: relative;
    top: -35px;
}

/* SECTION 10: APPLICATION FORM */
.form-section {
    padding: 100px 0;
    background: var(--secondary-white);
}

.form-card {
    max-width: 650px;
    margin: 0 auto;
    background: var(--secondary-white);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group select {
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--secondary-white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px var(--shadow-light);
}

.form-group input::placeholder {
    color: #999;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-weight: 500;
    background: var(--bg-light);
}

.file-upload-label:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: rgba(196, 0, 47, 0.05);
}

.file-name {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.submit-button {
    padding: 18px 50px;
    background: var(--primary-red);
    color: var(--secondary-white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--shadow-heavy);
    background: #a30026;
}

.submit-button:active {
    transform: translateY(-1px);
}

.success-message {
    margin-top: 30px;
    padding: 25px;
    background: #d4edda;
    border: 2px solid #c3e6cb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #155724;
    animation: slideIn 0.5s ease-out;
}

.success-message svg {
    flex-shrink: 0;
}

.success-message p {
    margin: 0;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.6;
}

.file-attachment-note {
    display: block;
}

.file-download-section a {
    display: inline-block;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.file-download-section a:hover {
    text-decoration: underline;
    transform: translateX(5px);
}

/* SECTION 11: WHATSAPP SECTION */
.whatsapp-section {
    padding: 80px 0;
    background: var(--charcoal);
    color: var(--secondary-white);
    text-align: center;
}

.whatsapp-content h2 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.whatsapp-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.whatsapp-button-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: #25D366;
    color: var(--secondary-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-button-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    background: #20ba5a;
}

.contact-info {
    margin-top: 25px;
    font-size: 1.05rem;
}

.contact-info a {
    color: var(--secondary-white);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-red);
}

.contact-info a:hover {
    border-bottom-color: var(--secondary-white);
}

/* MOBILE STICKY BUTTON */
.mobile-sticky-button {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--secondary-white);
    padding: 12px 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    gap: 10px;
}

.mobile-sticky-button.active {
    display: flex;
}

.sticky-apply-btn,
.sticky-whatsapp-btn {
    flex: 1;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sticky-apply-btn {
    background: var(--primary-red);
    color: var(--secondary-white);
}

.sticky-whatsapp-btn {
    background: #25D366;
    color: var(--secondary-white);
}

.sticky-apply-btn:active,
.sticky-whatsapp-btn:active {
    transform: scale(0.98);
}

/* FOOTER WITH STRIKER */
.footer {
    position: relative;
    background: var(--accent-dark);
    color: var(--secondary-white);
}

.footer-striker {
    background: var(--primary-red);
    padding: 20px 0;
    position: relative;
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.striker-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.striker-text {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-white);
}

.striker-cta {
    padding: 12px 35px;
    background: var(--secondary-white);
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.striker-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.footer-content {
    padding: 40px 0;
}

.footer-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
    text-align: center;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE DESIGN - MOBILE */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
    }

    /* Trust Strip Mobile */
    .trust-strip {
        padding: 40px 0;
    }

    .trust-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* About Section Mobile */
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-image-container {
        height: 300px;
    }

    /* Positions Mobile */
    .positions-section {
        padding: 60px 0;
    }

    .positions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .position-card {
        padding: 30px 25px;
    }

    /* Experience Mobile */
    .experience-section {
        padding: 60px 0;
    }

    .experience-title {
        font-size: 2rem;
    }

    .experience-subtitle {
        font-size: 1.5rem;
    }

    .experience-list li {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* Training Specs Mobile */
    .training-specs-section {
        padding: 60px 0;
    }

    .training-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .training-item {
        padding: 25px 20px;
    }

    .training-item h3 {
        font-size: 1.1rem;
    }

    .training-item p {
        font-size: 0.9rem;
    }

    /* Responsibilities Mobile */
    .responsibilities-section {
        padding: 60px 0;
    }

    .responsibilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .responsibility-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .responsibility-item:hover {
        transform: translateY(-5px);
    }

    /* Benefits Mobile */
    .benefits-section {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .benefit-card {
        padding: 30px 25px;
    }

    /* Career Path Mobile */
    .career-path-section {
        padding: 60px 0;
    }

    .career-timeline {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .timeline-connector {
        width: 3px;
        height: 40px;
        margin: 0;
        top: 0;
        background: linear-gradient(to bottom, var(--primary-red), rgba(196, 0, 47, 0.3));
    }

    .timeline-content p {
        max-width: 100%;
    }

    /* Form Mobile */
    .form-section {
        padding: 60px 0;
    }

    .form-card {
        padding: 40px 25px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .form-subtitle {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select {
        padding: 14px 18px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .submit-button {
        padding: 16px 40px;
        font-size: 1.1rem;
    }

    /* WhatsApp Section Mobile */
    .whatsapp-section {
        padding: 60px 0;
    }

    .whatsapp-content h2 {
        font-size: 1.8rem;
    }

    .whatsapp-button-large {
        padding: 18px 35px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 100%;
    }

    /* Footer Mobile */
    .striker-content {
        flex-direction: column;
        text-align: center;
    }

    .striker-text {
        font-size: 1.2rem;
    }

    .striker-cta {
        width: 100%;
    }

    /* Mobile Sticky Button */
    .mobile-sticky-button {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .whatsapp-content h2 {
        font-size: 1.5rem;
    }

    .striker-text {
        font-size: 1rem;
    }

    .training-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll behavior */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
