/* Style.css - Web Max Academy Landing Page */

/* --- Fonts & Root Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #070913;
    --bg-card: rgba(15, 22, 42, 0.65);
    --bg-card-hover: rgba(23, 33, 61, 0.85);
    --primary: #00f2fe;
    --primary-alt: #4facfe;
    --secondary: #8800ff;
    --secondary-alt: #0072ff;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.07);
    --glow-primary: rgba(0, 242, 254, 0.25);
    --glow-secondary: rgba(136, 0, 255, 0.25);
    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-ar);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background grid & blob animation */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(136, 0, 255, 0.06) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    z-index: -2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-alt);
}

/* --- Layout Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-alt) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Section Title --- */
.section-header {
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* --- Custom Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-ar);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-alt) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 4px 15px var(--glow-secondary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(136, 0, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* --- Navigation Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 9, 19, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.logo span {
    font-family: var(--font-en);
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
    text-shadow: 0 0 10px var(--glow-primary);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-collab {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.collab-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.collab-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.collab-badge i {
    color: #f59e0b; /* Gold star */
}

/* Floating tech graphics in hero right */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-globe {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, var(--secondary-alt) 0%, transparent 70%);
    opacity: 0.2;
    position: absolute;
    filter: blur(40px);
    z-index: -1;
    animation: pulse 6s infinite alternate;
}

.visual-image-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 20px 50px rgba(0, 242, 254, 0.15);
}

.visual-image {
    border-radius: 20px;
    display: block;
    object-fit: cover;
    width: 100%;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(15, 22, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: float 4s infinite ease-in-out;
}

.floating-card.c1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-card.c2 {
    bottom: 30px;
    left: -30px;
    animation-delay: 2s;
}

.floating-card i {
    font-size: 1.5rem;
    padding: 10px;
    background: rgba(0, 242, 254, 0.1);
    border-radius: 8px;
    color: var(--primary);
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 700;
}

.floating-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- About & Specialized Area Section --- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.about-card:hover::before {
    opacity: 1;
}

.about-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.about-quote {
    grid-column: 1 / -1;
    margin-top: 20px;
    background: linear-gradient(90deg, rgba(0, 242, 254, 0.03) 0%, rgba(136, 0, 255, 0.03) 100%);
    border-right: 4px solid var(--primary);
    padding: 20px;
    border-radius: 4px 12px 12px 4px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-quote i {
    font-size: 1.5rem;
    color: var(--primary);
}

.about-quote p {
    font-weight: 500;
    font-size: 1rem;
}

/* --- Why Us Section --- */
.why-us {
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: scale(1.03);
    border-color: var(--primary-alt);
}

.why-badge {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 254, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-badge {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 15px var(--primary);
}

.why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

/* --- Target Audience Section --- */
.targets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.target-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.target-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--secondary);
    box-shadow: 0 15px 30px rgba(136,0,255,0.15);
}

.target-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(136, 0, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.target-card:hover .target-avatar {
    background: var(--secondary);
    color: white;
}

.target-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.target-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Courses Section (Tabs & Detailed layout) --- */
.courses-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-muted);
    font-family: var(--font-ar);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-alt) 100%);
    color: #070913;
    border-color: transparent;
    font-weight: 700;
}

.courses-container {
    position: relative;
    min-height: 400px;
}

.course-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.course-content.active {
    display: block;
}

.course-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.course-info-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.course-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.course-title i {
    color: var(--primary);
}

.course-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.meta-item i {
    color: var(--primary-alt);
}

.course-price-box {
    margin-top: 25px;
    padding: 15px 25px;
    background: rgba(0, 242, 254, 0.05);
    border: 1px dashed var(--primary-alt);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.price-value span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.course-learn-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.panel-block h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-alt);
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-block h4 i {
    font-size: 1.1rem;
}

.list-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.list-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.list-items li i {
    color: var(--primary);
    font-size: 1rem;
}

.course-levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.level-badge {
    padding: 10px 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
}

.level-badge.pro {
    background: rgba(136,0,255,0.1);
    border-color: rgba(136,0,255,0.3);
}

.level-name {
    font-weight: 600;
}

.level-tag {
    color: var(--text-muted);
}

/* --- Certificates Section --- */
.certs {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 22, 42, 0.3) 50%, var(--bg-dark) 100%);
    position: relative;
}

.certs-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.certs-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.certs-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.certs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.certs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.certs-list li i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 4px;
}

.certs-list li h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.certs-list li p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.certs-visual {
    position: relative;
}

.certs-badge-overlay {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.certs-badge-overlay i {
    font-size: 3.5rem;
    color: #f59e0b;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.certs-badge-overlay h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.certs-badge-overlay p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.certs-partners {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.partner-logo {
    padding: 10px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

/* --- Payment & Offers Section --- */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.payment-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.payment-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 30px var(--glow-primary);
}

.payment-card.featured::after {
    content: 'عرض خاص';
    position: absolute;
    top: 25px;
    left: -35px;
    background: var(--primary);
    color: black;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 5px 35px;
    transform: rotate(-45deg);
}

.payment-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 20px;
    border: 1px solid var(--border-color);
}

.payment-card.featured .payment-icon {
    background: rgba(0, 242, 254, 0.1);
    border-color: var(--primary);
}

.payment-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.payment-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Registration Form Section --- */
.register {
    position: relative;
}

.register-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.form-group label span.required {
    color: #ef4444;
    margin-right: 4px;
}

.form-control {
    background: rgba(7, 9, 19, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    color: white;
    font-family: var(--font-ar);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--glow-primary);
}

/* For parent phone field which is shown conditionally */
.conditional-field {
    display: none;
}

.conditional-field.active {
    display: flex;
}

.form-error {
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 4px;
}

.submit-btn-wrapper {
    margin-top: 30px;
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

.submit-btn-wrapper .btn {
    width: 100%;
    max-width: 300px;
}

/* Loading Spinner on button */
.btn-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    display: none;
}

/* Success/Error Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: translateY(30px);
    transition: var(--transition);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.modal-icon.success {
    color: #10b981;
}

.modal-icon.error {
    color: #ef4444;
}

.modal-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.modal-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* --- Contact & Location Section --- */
.contact {
    background: rgba(15,22,42,0.2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--bg-card-hover);
    transform: scale(1.02);
}

.contact-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-card-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-card-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-card-details a {
    color: var(--primary);
    font-weight: 700;
}

.map-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    height: 350px;
}

/* --- Footer --- */
.footer {
    background: #04050a;
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 900;
}

.footer-logo span {
    font-family: var(--font-en);
}

.footer-logo i {
    color: var(--primary);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.15; }
    100% { transform: scale(1.1); opacity: 0.25; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-badge, .hero-description, .hero-actions, .hero-collab {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    .hero-visual {
        order: -1;
    }
    .course-detail-grid {
        grid-template-columns: 1fr;
    }
    .certs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .targets-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-dark);
        border-top: 1px solid var(--border-color);
        flex-direction: column;
        padding: 50px 20px;
        transition: var(--transition);
        z-index: 998;
    }
    .nav-menu.active {
        left: 0;
    }
    .menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .register-card {
        padding: 30px 20px;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}
