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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --primary-red: #DC143C;
    --dark-red: #B41230;
    --black: #1a1a1a;
    --dark-gray: #2c2c2c;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: #ffffff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    box-sizing: border-box;
}

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

.logo-flag {
    position: absolute;
    top: 50%;
    right: -60px;
    width: 60px;
    height: 45px;
    z-index: 10;
    border-radius: 4px;
    transform: translateY(-50%);
}

.logo-img {
    height: 60px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--black) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-top: -2px;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white !important;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.4);
}

.nav-cta::after {
    display: none;
}

/* Dropdown Menu Styles */
.nav-menu li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown li {
    display: block;
}

.dropdown a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    transform: translateX(5px);
}

.dropdown a::after {
    display: none;
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-menu li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
    position: relative;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger:nth-child(1) {
    transform-origin: 0% 0%;
}

.hamburger:nth-child(2) {
    transform-origin: 0% 50%;
}

.hamburger:nth-child(3) {
    transform-origin: 0% 100%;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(0px, -1px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(0px, 1px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 10000;
    transition: left 0.3s ease;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    max-width: 100%;
    box-sizing: border-box;
}

.mobile-menu.active {
    left: 0 !important;
    transform: translateX(0) !important;
}

/* Force mobile menu to be visible when active */
.mobile-menu.active {
    left: 0 !important;
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    /* background: var(--primary-red); */
    color: white;
    border-bottom: 1px solid #eee;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu-header .logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu ul {
    padding: 30px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu > ul > li {
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    display: block;
    padding: 20px 30px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu a:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
}

.mobile-dropdown {
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: none;
}

.mobile-dropdown.active {
    max-height: 300px;
    display: block !important;
}

.mobile-dropdown a {
    padding: 15px 50px;
    font-size: 16px;
    color: #666;
}

.mobile-dropdown-toggle {
    position: relative;
}

.mobile-dropdown-toggle::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active::after {
    transform: translateY(-50%) rotate(45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--black) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.shape3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 10;
    color: white;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    animation: slideInLeft 1s ease;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: slideInLeft 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInLeft 1s ease 0.4s both;
}

.btn-primary, .btn-secondary {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--light-gray);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-red);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features Section */
.features {
    background: var(--light-gray);
    padding: 100px 50px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: white;
}

.feature-icon i {
    font-size: 3rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background: var(--light-gray);
    padding: 100px 50px;
    position: relative;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.3);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--black) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 120px 50px;
    background: white;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 30px;
    z-index: -1;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--black) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.feature-item:hover .feature-icon {
    background: white;
}

.feature-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Programs Section */
.programs {
    padding: 120px 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--black) 100%);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 20px;
    opacity: 0.9;
}

.programs-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.program-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: white;
}

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

.program-icon {
    font-size: 56px;
    margin-bottom: 25px;
    display: block;
}

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

.program-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
}

.program-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.program-link:hover {
    gap: 15px;
}

/* Success Stories */
.success {
    padding: 120px 50px;
    background: white;
}

.success-container {
    max-width: 1400px;
    margin: 0 auto;
}

.success-header {
    text-align: center;
    margin-bottom: 80px;
}

.success-header h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--black) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.success-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.success-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 150px;
    color: rgba(220, 20, 60, 0.15);
    font-family: Georgia, serif;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.success-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.profile-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    font-weight: 700;
}

.profile-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.profile-info p {
    font-size: 14px;
    color: #666;
}

.success-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 120px 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--black) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 30px;
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 50px;
    opacity: 0.95;
}

/* Inner Pages Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--black) 100%);
    color: white;
    padding: 120px 50px 80px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px;
    background: white;
}

.content-section h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--black) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--primary-red);
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.info-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Pricing Table */
.pricing-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white !important;
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white !important;
}

.pricing-item {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item span {
    color: #333;
    font-weight: 500;
}

.pricing-item strong {
    color: var(--primary-red);
    font-weight: 700;
}

/* FAQ Styles */
.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px 30px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Pathway Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--black) 100%);
    color: white;
    padding: 120px 50px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.content-section {
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--black);
    text-align: center;
}

.content-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.content-section ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.content-section li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.info-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--black) 100%);
    color: white;
    padding: 80px 50px;
    text-align: center;
    margin: 50px 0;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.cta-section * {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-primary, .btn-secondary {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    position: relative;
    z-index: 9999 !important;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    background-clip: padding-box;
}

.btn-primary {
    background: white;
    color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-red);
}

/* Contact Form Styles */
.form-section {
    background: #f8f9fa;
    padding: 80px 50px;
}

.form-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.form-section .section-title h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--black) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-section .section-title p {
    font-size: 18px;
    color: #666;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    position: relative;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.checkbox-group input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-group a {
    color: var(--primary-red);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-btn.primary-btn {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
}

.floating-btn.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.floating-btn.secondary-btn {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.3);
}

.floating-btn.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

.btn-text {
    white-space: nowrap;
}

.btn-icon {
    font-size: 20px;
}

/* Mobile floating buttons */
@media (max-width: 768px) {
    .floating-contact-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 9999;
        flex-direction: row;
        gap: 10px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .floating-btn {
        flex: 1;
        justify-content: center;
        padding: 15px 10px;
        font-size: 14px;
        flex-direction: column;
        gap: 5px;
    }
    
    .floating-btn span {
        display: block;
        font-size: 12px;
        font-weight: 600;
    }
    
    .floating-btn i {
        font-size: 18px;
    }
}

/* Footer Styles */
.elite-footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #2d1b69 100%);
    color: white;
    padding: 80px 50px 40px;
    position: relative;
    overflow: hidden;
}

.elite-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    max-width: 200px;
    height: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-logo .logo-img:hover {
    transform: scale(1.05);
}

.footer-logo-text {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.footer-logo-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -2px;
    letter-spacing: 0.5px;
}

.footer-brand p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    position: relative;
}

.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover::before {
    width: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -50px -40px;
    padding: 30px 50px 40px;
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .programs-grid, .success-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobilde yatay scroll sorununu önle */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .nav-container {
        padding: 15px 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .logo-flag {
        width: 45px;
        height: 33px;
        top: 50%;
        right: -45px;
        transform: translateY(-50%);
    }
    
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 10001;
        margin-left: auto;
    }
    
    .mobile-menu {
        display: block;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 10px;
    }

    .dropdown a {
        padding: 10px 0;
        border-bottom: none;
        color: #666;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 15px 30px;
    }
    
    .stats {
        padding: 60px 20px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-box {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .about {
        padding: 60px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
    
    .about-content p {
        font-size: 16px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .programs {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .section-header p {
        font-size: 16px;
    }

    .programs-grid, .success-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .program-card {
        padding: 30px 25px;
    }
    
    .program-icon {
        font-size: 48px;
    }
    
    .program-card h3 {
        font-size: 24px;
    }
    
    .success {
        padding: 60px 20px;
    }
    
    .success-header h2 {
        font-size: 36px;
    }
    
    .success-card {
        padding: 30px 25px;
    }
    
    .success-profile {
        flex-direction: row;
        align-items: center;
    }
    
    .profile-img {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .page-header {
        padding: 100px 20px 60px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .content-section {
        padding: 60px 20px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .page-header {
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .cta-section {
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .content-section h2 {
        font-size: 32px;
    }
    
    .content-section h3 {
        font-size: 24px;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .btn-primary, .btn-secondary {
        min-height: 48px;
        min-width: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
        z-index: 99999 !important;
        position: relative !important;
        pointer-events: auto !important;
        background-clip: padding-box;
    }
    
    .cta-section a {
        z-index: 99999 !important;
        position: relative !important;
        pointer-events: auto !important;
    }
    
    /* Mobil tıklama sorunu için özel kurallar */
    .cta-section a.btn-primary,
    .cta-section a.btn-secondary {
        z-index: 999999 !important;
        position: relative !important;
        pointer-events: auto !important;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        cursor: pointer !important;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .elite-footer {
        padding: 60px 20px 80px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo-text {
        font-size: 24px;
    }
    
    /* Mobilde resimlerin yazının altında kalmasını önle */
    .content-section img {
        display: block !important;
        float: none !important;
        clear: both !important;
        margin: 20px auto !important;
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        position: static !important;
    }
    
    /* 30+ Yıl Tecrübe kısmındaki resimler için özel düzenleme */
    .content-section div[style*="text-align: center"] {
        display: block !important;
        clear: both !important;
        margin: 30px 0 !important;
        text-align: center !important;
    }
    
    .content-section div[style*="text-align: center"] img {
        display: block !important;
        margin: 0 auto !important;
        float: none !important;
        clear: both !important;
        position: static !important;
    }
    
    /* Başarı Hikayelerimiz kısmındaki resimler için mobil düzenleme */
    .success-card::after {
        display: block !important;
        height: 80px !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1 !important;
    }
    
    .success-card {
        padding-top: 100px !important;
    }
    
    .success-card > * {
        position: relative !important;
        z-index: 10 !important;
    }
}
        
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .program-card h3 {
        font-size: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    /* Mobilde resimlerin yazının altında kalmasını önle */
    .content-section img {
        display: block !important;
        float: none !important;
        clear: both !important;
        margin: 20px auto !important;
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        position: static !important;
    }
    
    /* 30+ Yıl Tecrübe kısmındaki resimler için özel düzenleme */
    .content-section div[style*="text-align: center"] {
        display: block !important;
        clear: both !important;
        margin: 30px 0 !important;
        text-align: center !important;
    }
    
    .content-section div[style*="text-align: center"] img {
        display: block !important;
        margin: 0 auto !important;
        float: none !important;
        clear: both !important;
        position: static !important;
    }
    
    /* Başarı Hikayelerimiz kısmındaki resimler için mobil düzenleme (480px altı) */
    .success-card::after {
        display: block !important;
        height: 60px !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1 !important;
    }
    
    .success-card {
        padding-top: 80px !important;
    }
    
    .success-card > * {
        position: relative !important;
        z-index: 10 !important;
    }
}
