:root {
    --primary-teal: #617D86;
    --primary-dark: #4A5C62;
    --accent-gold: #D4AF37;
    --text-main: #2D3436;
    --text-muted: #636E72;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-light: #EBEEF0;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 10px 30px rgba(75, 121, 134, 0.08);
    --radius-lg: 20px;
    --radius-md: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-white);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Header */
header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-teal);
}

.main-logo {
    height: 110px; /* Further increased for prominence */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-primary-top {
    background: var(--primary-teal);
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
}

.btn-menu-dots {
    display: none; /* Hidden unless needed for mobile burger */
}

/* Hero Section */
#hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F4F5 100%);
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-image-side {
    flex: 1;
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-image-side img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: var(--transition);
    display: block;
}

.hero-image-side:hover img {
    transform: scale(1.03);
}

.accreditation-floating {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #e1edf0;
    color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.acc-text strong {
    display: block;
    font-size: 0.9rem;
}

.acc-text span {
    font-size: 0.75rem;
    color: var(--text-grey);
}

.hero-content-side {
    flex: 1.4;
}

.hero-badges-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-badge {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    line-height: normal;
}

.hero-badge.accredited {
    background: #f8fafc;
    color: #4b7986;
    border-color: #e2e8f0;
}

.hero-badge.accredited i {
    color: #4b7986;
    width: 18px;
    height: 18px;
}

.hero-badge.bonus-badge {
    background: #FF4757;
    color: white;
    border-color: #ffdde1;
    animation: hero-pulse 2s infinite;
}

@keyframes hero-pulse {
    0% { transform: scale(1); box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3); }
    50% { transform: scale(1.03); box-shadow: 0 5px 25px rgba(255, 71, 87, 0.5); }
    100% { transform: scale(1); box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3); }
}

h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 25px;
    line-height: 1.3;
}

h1 span {
    color: var(--primary-teal);
    position: relative;
}

h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 100%;
    height: 8px;
    background: rgba(75, 121, 134, 0.1);
    z-index: -1;
}

p {
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 1.1rem;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-teal {
    background: var(--primary-teal);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(75, 121, 134, 0.2);
}

.btn-teal:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(75, 121, 134, 0.3);
}

.btn-light {
    background: var(--bg-light);
    color: var(--text-main);
    padding: 16px 36px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-light:hover {
    background: #E2E2E2;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-top: 60px;
    box-shadow: var(--shadow-soft);
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.4;
}

.stat-icon {
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.stat-icon img {
    width: 24px;
    height: 24px;
}

/* Sections General */
section {
    padding: 70px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Why Section */
#why {
    padding: 100px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-list {
    list-style: none;
    margin-top: 30px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-teal);
    font-size: 1.1rem;
}

.list-icon {
    color: var(--accent-gold);
    width: 24px;
    height: 24px;
}

.why-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

/* Curriculum Grid */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-teal);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    color: var(--primary-teal);
}

.card:hover .card-icon {
    background: var(--primary-teal);
    color: white;
}

.card-icon i, .card-icon svg {
    width: 32px;
    height: 32px;
    transition: var(--transition);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Plan Card */
.plan-card {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    margin-top: 40px;
}

/* Modern Plan Card */
.plan-modern-card {
    display: flex;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
    min-height: 400px;
}

.plan-visual-pane {
    flex: 1;
    background: linear-gradient(135deg, #4B7986 0%, #355862 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    color: white;
    position: relative;
    overflow: hidden;
}

.plan-visual-pane::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    filter: blur(50px);
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    z-index: 5;
}

.v-icon {
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.visual-main {
    text-align: center;
    margin-bottom: 30px;
    z-index: 5;
}

.v-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.v-label {
    font-size: 1.5rem;
    font-weight: 600;
}

.visual-steps {
    margin-bottom: 40px;
    z-index: 5;
}

.v-step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.v-step span {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.visual-footer-stats {
    display: flex;
    gap: 10px;
    margin-top: auto;
    z-index: 5;
}

.v-stat {
    flex: 1;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 15px 10px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.v-stat strong {
    display: block;
    font-size: 1.4rem;
}

.v-stat span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.plan-info-pane {
    flex: 1.5;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plan-info-pane h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.plan-info-pane p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 100%;
}

.plan-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-plan-filled {
    background: var(--primary-teal);
    color: white;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-plan-filled:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-plan-outline {
    background: #F8F9FA;
    color: var(--primary-teal);
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E9ECEF;
    transition: var(--transition);
}

.btn-plan-outline:hover {
    background: #EBEEF0;
}

@media (max-width: 992px) {
    .plan-modern-card {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .plan-visual-pane {
        padding: 25px 15px; /* Reduced padding */
        align-items: center;
        text-align: center;
        min-height: auto; /* Allow it to shrink */
    }

    .visual-header {
        justify-content: center;
        margin-bottom: 10px; /* Reduced margin */
    }

    .v-number {
        font-size: 3.5rem; /* Slightly smaller */
    }

    .visual-main {
        margin-bottom: 15px; /* Reduced margin */
    }

    .visual-steps {
        margin-bottom: 20px; /* Reduced margin */
    }

    .v-step {
        justify-content: center;
        margin-bottom: 8px;
        font-size: 1rem;
    }

    .visual-footer-stats {
        width: 100%;
        gap: 6px;
    }

    .v-stat {
        padding: 8px 4px;
    }

    .v-stat strong {
        font-size: 1rem;
    }

    .v-stat span {
        font-size: 0.65rem;
    }
    
    .plan-info-pane {
        padding: 40px 20px;
        text-align: center;
    }

    .plan-info-pane h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .plan-info-pane p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .btn-plan-filled, .btn-plan-outline {
        padding: 15px;
        font-size: 1rem;
    }
}

.plan-image {
    flex: 1;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-info {
    flex: 2;
    padding: 50px;
}

.plan-numbers {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 25px 0;
}

.p-num .big {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-teal);
    display: block;
}

.p-num .medium {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
}

.p-num p {
    margin: 5px 0 0;
    font-size: 0.9rem;
}

.p-divider {
    width: 1px;
    height: 50px;
    background: #ddd;
}

.plan-desc {
    font-size: 0.95rem;
    margin-top: 20px;
}

.btn-teal-full {
    background: var(--primary-teal);
    color: white;
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 30px;
}

/* Career Section */
.career-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-top: 40px;
}

.career-list {
    flex: 1;
}

.career-box {
    background: #f8f9fa;
    padding: 22px 25px;
    border-radius: 15px;
    margin-bottom: 18px;
    font-weight: 700;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.career-box::before {
    content: '•';
    color: var(--primary-teal);
    font-size: 1.5rem;
}

.career-box:hover {
    background: white;
    border-color: var(--primary-teal);
    transform: translateX(-5px);
    box-shadow: var(--shadow-soft);
}

.career-images {
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.single-career-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.single-career-img:hover {
    transform: scale(1.02);
}

/* Dark Section */
.dark-section {
    background: #1A202C;
    border-radius: 40px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.dark-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(75, 121, 134, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

.req-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.req-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.req-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(-5px);
}

/* Requirements Styles */
.dark-section .section-title {
    color: white !important;
}

.dark-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

.req-icon {
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.req-text h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.req-text p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Footer Styles */
footer {
    padding: 40px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    height: 100px; /* Increased footer logo size */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.footer-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.final-cta {
    background: var(--primary-teal);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 50px rgba(75, 121, 134, 0.2);
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.final-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.final-cta p {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.btn-white {
    background: white;
    color: var(--primary-teal) !important;
    padding: 18px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background: #f8f9fa;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid #eee;
    margin-top: 40px;
    color: #999;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 1.2rem;
}

/* --- Mobile Responsiveness --- */

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .hero-wrapper {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-content-side p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 15px;
        margin-top: 40px;
        gap: 15px;
    }
    
    .stat-item {
        font-size: 0.75rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .plan-card {
        flex-direction: column;
    }
    
    .plan-info {
        padding: 25px;
    }
    
    .section-title, .section-subtitle {
        text-align: center;
    }
    
    .section-subtitle {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }
    
    .why-content {
        text-align: center;
    }
    
    .why-list {
        display: inline-block;
        text-align: right;
        margin: 20px auto;
    }
    
    .why-list li {
        justify-content: flex-start;
    }

    .career-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .career-images {
        width: 100%;
    }

    .career-list {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .career-box {
        margin-bottom: 0;
        text-align: center;
        padding: 15px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .header-left .btn {
        display: none;
    }
    
    header {
        padding: 5px 0 !important;
    }

    nav {
        padding: 0;
    }

    .main-logo {
        height: 60px; 
    }
    
    body {
        padding-top: 50px !important; /* Prevent text hiding behind bar */
    }
    
    .header-container {
        justify-content: center;
        padding: 5px 15px;
    }
    
    #hero {
        padding-top: 0;
        margin-top: -20px;
    }

    .hero-wrapper {
        flex-direction: column;
        padding: 0 15px;
        gap: 15px;
    }

    .hero-content-side {
        order: 2;
        padding: 10px 0;
        text-align: center;
    }

    .hero-image-side {
        order: 1;
        max-width: 90%;
        width: 100%;
        margin: 0 auto;
        border-radius: 20px;
    }

    .hero-image-side img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .hero-btns {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 400px;
        margin: 20px auto 0;
        gap: 10px;
    }

    .hero-btns .btn {
        width: 100% !important;
        display: block;
        text-align: center;
        padding: 16px;
    }

    .hero-badges-container {
        justify-content: center;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
    
    .hero-highlights li {
        justify-content: center;
    }

    .stats-bar {
        padding: 20px 15px;
    }
    
    .stat-item {
        flex: 1 1 100%; /* Single column for very small screens */
        justify-content: flex-start;
    }
    
    .career-images {
        width: 100%;
    }

    .single-career-img {
        height: 250px;
    }

    .final-cta {
        padding: 50px 20px;
        border-radius: 20px;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }

    .final-cta p {
        font-size: 1rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Floating Contact & Animations */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.fab:hover {
    transform: scale(1.1);
}

.fab.whatsapp {
    background-color: #25D366;
}

.fab.call {
    background-color: var(--primary-teal);
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

