/* ============================================
   YAF ED - Custom CSS with Theme Support
   Colors from Logo: Navy Blue (#1a2b52) & Red (#c8102e)
   ============================================ */
/* ========== CSS Variables for Theming ========== */
:root {
    /* Brand Colors from Logo */
    --navy-primary: #1a2b52;
    --navy-deep: #0a1628;
    --red-accent: #c8102e;
    --red-bright: #dc3545;
    /* Cyan/Teal from Flyer */
    --cyan-bright: #00d4ff;
    --cyan-glow: #00ffcc;
    /* Light Theme Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #0a1628;
    --text-secondary: #495057;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --shadow: rgba(26, 43, 82, 0.1);
    --shadow-lg: rgba(26, 43, 82, 0.15);
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    /* Spacing */
    --section-padding: 100px;
}
/* Dark Theme Variables */
[data-theme="dark"] {
    --bg-primary: #0a1628;
    --bg-secondary: #1a2b52;
    --bg-tertiary: #243356;
    --text-primary: #ffffff;
    --text-secondary: #e9ecef;
    --text-muted: #adb5bd;
    --border-color: #2d3e5f;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-lg: rgba(0, 0, 0, 0.5);
    --cyan-bright: #00e6ff;
    --cyan-glow: #00ffdd;
}
/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}
/* RTL Support for Arabic */
body.rtl {
    direction: rtl;
    text-align: right;
}
body.rtl .navbar-nav {
    margin-right: auto;
    margin-left: 0;
}
/* ========== Navigation ========== */
.navbar {
    background-color: var(--bg-primary);
    box-shadow: 0 2px 10px var(--shadow);
    padding: 1rem 0;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: var(--bg-primary);
}
.navbar-brand .logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}
.navbar-brand .logo:hover {
    transform: scale(1.05);
}
.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--red-accent);
    background-color: var(--bg-secondary);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red-accent), var(--cyan-bright));
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after {
    width: 80%;
}
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 43, 82, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
[data-theme="dark"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Language & Theme Toggle Buttons */
.btn-lang,
.btn-theme {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-lang:hover,
.btn-theme:hover {
    background: var(--red-accent);
    color: white;
    border-color: var(--red-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}
.btn-theme i {
    font-size: 1.1rem;
}
/* ========== Hero Section ========== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-primary) 50%, #1e3a5f 100%);
    overflow: hidden;
    padding: 100px 0 50px;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.15), transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(200, 16, 46, 0.15), transparent 60%),
                radial-gradient(circle at 50% 100%, rgba(0, 255, 204, 0.08), transparent 70%);
    z-index: 0;
}
/* Animated Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cyan-bright);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan-bright);
    animation: float-particles 15s infinite ease-in-out;
    opacity: 0.6;
}
.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { top: 40%; left: 30%; animation-delay: 2s; animation-duration: 14s; width: 3px; height: 3px; }
.particle:nth-child(3) { top: 60%; left: 50%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 6s; animation-duration: 13s; width: 5px; height: 5px; }
.particle:nth-child(5) { top: 30%; left: 80%; animation-delay: 1s; animation-duration: 15s; }
.particle:nth-child(6) { top: 50%; left: 20%; animation-delay: 3s; animation-duration: 17s; width: 3px; height: 3px; }
.particle:nth-child(7) { top: 70%; left: 40%; animation-delay: 5s; animation-duration: 14s; }
.particle:nth-child(8) { top: 15%; left: 60%; animation-delay: 7s; animation-duration: 16s; width: 4px; height: 4px; }
@keyframes float-particles {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-60px) translateX(-10px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-40px) translateX(30px) scale(1.1);
        opacity: 0.7;
    }
}
/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}
.icon-float {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 3rem;
    animation: icon-float 8s ease-in-out infinite;
}
.icon-float:nth-child(1) { animation-delay: 0s; }
.icon-float:nth-child(2) { animation-delay: 2s; }
.icon-float:nth-child(3) { animation-delay: 4s; }
.icon-float:nth-child(4) { animation-delay: 6s; }
@keyframes icon-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.2;
    }
}
.hero-content,
.hero-image {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease, pulse-glow 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 212, 255, 0.5);
    }
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.text-gradient-hero {
    background: linear-gradient(135deg, #ffffff 0%, var(--cyan-bright) 50%, var(--cyan-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% auto;
}
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}
.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--cyan-bright);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-subtitle i {
    color: var(--cyan-glow);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}
.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 650px;
    animation: fadeInUp 0.8s ease 0.6s both;
    line-height: 1.8;
}
.hero-description strong {
    color: var(--cyan-bright);
    font-weight: 700;
}
/* Hero Feature Highlights */
.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.7s both;
}
.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}
.hero-feature-item i {
    color: var(--cyan-bright);
    font-size: 1.1rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.9s both;
}
.hero-image {
    animation: fadeInRight 1s ease 0.5s both;
}
.floating-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(0, 212, 255, 0.3);
}
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    animation: rotate-glow 10s linear infinite;
    pointer-events: none;
}
@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.floating-card img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}
/* Trust Badge */
.trust-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: slideInRight 1s ease 1.5s both;
    z-index: 2;
}
.trust-badge i {
    color: #ffc107;
    font-size: 1.5rem;
}
.trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.trust-text strong {
    color: var(--navy-primary);
    font-size: 1.2rem;
    font-weight: 800;
}
.trust-text span {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.scroll-indicator p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}
.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--cyan-bright);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}
.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--cyan-bright);
    border-radius: 2px;
    animation: scroll 2s infinite;
    box-shadow: 0 0 5px var(--cyan-bright);
}
/* ========== Buttons ========== */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--red-accent), var(--red-bright));
    color: white;
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--red-bright), var(--red-accent));
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200, 16, 46, 0.4);
    color: white;
}
.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-outline:hover {
    background: white;
    color: var(--navy-primary);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}
/* ========== Sections ========== */
section {
    padding: var(--section-padding) 0;
}
.section-header {
    margin-bottom: 4rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--red-accent), var(--cyan-bright));
    border-radius: 2px;
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}
/* ========== Features Section ========== */
.features-section {
    background: var(--bg-secondary);
}
.feature-card {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-lg),
        0 0 40px rgba(0, 212, 255, 0.2);
}
.feature-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}
.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.feature-card:hover .feature-image img {
    transform: scale(1.1);
}
.feature-content {
    padding: 2rem;
    flex-grow: 1;
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red-accent), var(--red-bright));
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.3);
}
.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}
.feature-list li i {
    color: var(--cyan-bright);
    font-size: 0.9rem;
}
/* ========== About Section ========== */
.about-section {
    background: var(--bg-primary);
}
.about-content h2 {
    margin-bottom: 1.5rem;
}
.about-content>p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.highlight-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--red-accent);
}
.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px var(--shadow);
}
.highlight-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-deep));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}
.highlight-icon img {
    width: 40px;
    height: auto;
    border-radius: 4px;
}
.highlight-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.highlight-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}
/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.stat-card {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-deep));
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(200, 16, 46, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.stat-card:hover::before {
    opacity: 1;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 43, 82, 0.4);
}
.stat-icon {
    font-size: 2.5rem;
    color: var(--cyan-bright);
    margin-bottom: 1rem;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.stat-number::after {
    content: '+';
    margin-left: 5px;
    font-size: 2rem;
}
.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}
/* ========== Contact Section ========== */
.contact-section {
    background: var(--bg-secondary);
}
.contact-info {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 10px 40px var(--shadow);
}
.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red-accent), var(--red-bright));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.contact-text h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}
.contact-text p,
.contact-text a {
    color: var(--text-secondary);
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-text a:hover {
    color: var(--red-accent);
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}
.social-link:hover {
    background: linear-gradient(135deg, var(--red-accent), var(--red-bright));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.3);
}
/* Contact Form */
.contact-form {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--red-accent);
    box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
.form-message {
    padding: 1rem;
    border-radius: 12px;
    display: none;
}
.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}
.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}
/* ========== Footer ========== */
.footer {
    background: var(--navy-deep);
    color: white;
    padding: 4rem 0 2rem;
}
.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}
.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    line-height: 1.8;
}
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}
.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.75rem;
}
.footer-links ul li a,
.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: var(--cyan-bright);
    transform: translateX(5px);
}
.footer-contact ul li i {
    color: var(--cyan-bright);
    width: 20px;
}
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
/* ========== Animations ========== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}
/* ========== Responsive Design ========== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.4rem;
    }
    .section-title {
        font-size: 2.25rem;
    }
    .hero-image {
        margin-top: 3rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
    }
}
@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .feature-card {
        margin-bottom: 2rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
}
/* ========== Dark Mode Specific Adjustments ========== */
[data-theme="dark"] .feature-card {
    border: 1px solid var(--border-color);
}
[data-theme="dark"] .stat-card {
    background: linear-gradient(135deg, var(--navy-primary), #2d3e5f);
}
[data-theme="dark"] .contact-info,
[data-theme="dark"] .contact-form {
    border: 1px solid var(--border-color);
}
[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, #000000, var(--navy-deep));
}
/* ========== Utility Classes ========== */
.text-gradient {
    background: linear-gradient(90deg, var(--red-accent), var(--cyan-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.glow {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}
/* ========== AOS Animation Setup ========== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}
[data-aos].aos-animate {
    opacity: 1;
}