/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --accent-color: #dc2626;
    --accent-light: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

* {
    max-width: 100%;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

::selection {
    background: var(--primary-color);
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Top Bar */
.top-bar {
    background: #FF914D !important;
    color: white;
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    z-index: 100;
    margin-bottom: 0 !important;
    margin: 0;
}

.top-bar-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.top-bar-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    gap: 40px;
    align-items: center;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-weight: 600;
    color: white;
    text-decoration: none;
    gap: 6px;
    transition: var(--transition);
    font-size: 14px;
}

.marquee-item:hover {
    opacity: 0.9;
}

.marquee-item a {
    color: white;
    text-decoration: none;
}

.marquee-item i {
    font-size: 13px;
}

.marquee-separator {
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
    font-size: 14px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Remove gap between top bar and navbar */
.top-bar + .navbar {
    margin-top: 0 !important;
}

/* Remove gap between navbar and hero */
.navbar + .hero,
.navbar + section.hero {
    margin-top: 0 !important;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    margin-top: 0 !important;
    margin: 0;
}

.navbar-brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar-logo:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 8px 12px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 24px);
}

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

.btn-danger {
    background: var(--accent-color);
    border: none;
    transition: var(--transition);
}

.btn-danger:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: transparent;
    margin-top: 0 !important;
    margin: 0;
    padding: 0 !important;
}

section.hero {
    padding: 0 !important;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920');
}

.hero-slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?w=1920');
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-text {
    max-width: 700px;
    color: var(--text-dark);
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    color: white;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    color: var(--text-dark);
}

.hero-actions .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 14px 28px;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 2;
}

.hero-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* Inquiry Section */
.inquiry-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}

.inquiry-content {
    margin-bottom: 2.5rem;
}

.inquiry-content h2 {
    font-size: 3.5rem !important;
    line-height: 1.1;
    color: #dc2626 !important;
    font-weight: 800;
    margin-bottom: 1rem !important;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.inquiry-content .lead {
    font-size: 1.25rem;
    font-style: italic;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

.inquiry-section .card {
    max-width: 100%;
    margin: 0;
    position: relative;
    border: none;
}

.inquiry-section .row {
    position: relative;
    align-items: flex-start;
}

.inquiry-form .form-control,
.inquiry-form .form-select,
.inquiry-form textarea {
    padding: 8px 12px;
    font-size: 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: #ffffff;
    max-width: 100%;
}

.inquiry-form .form-control:focus,
.inquiry-form .form-select:focus,
.inquiry-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    outline: none;
    background-color: #ffffff;
}

.inquiry-form .form-control:hover,
.inquiry-form .form-select:hover {
    border-color: #cbd5e1;
}

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

.inquiry-form .form-label {
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 0.8px;
    color: var(--text-dark);
    font-weight: 700;
}

.inquiry-form .btn {
    font-size: 15px;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.inquiry-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* Popup Form Styling - Narrower inputs with equal width */
#popupFormModal .modal-dialog {
    max-width: 450px;
}

#popupFormModal .modal-body {
    padding: 25px 30px;
}

#popupFormModal .inquiry-form .form-control,
#popupFormModal .inquiry-form .form-select {
    width: 100%;
    max-width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    box-sizing: border-box;
}

#popupFormModal .inquiry-form .d-flex.gap-2 {
    width: 100%;
    display: flex;
}

#popupFormModal .inquiry-form .d-flex.gap-2 .form-select {
    flex: 0 0 auto;
    width: 100px;
    max-width: 100px;
}

#popupFormModal .inquiry-form .d-flex.gap-2 .form-control {
    flex: 1;
    min-width: 0;
    width: auto;
}

#popupFormModal .inquiry-form .row .col-md-6 .form-select {
    width: 100%;
}

.inquiry-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-top: 60px;
}

.inquiry-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    object-fit: contain;
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Welcome Section */
.welcome-section {
    background: white;
}

.intro-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-dark);
}

.feature-list li i {
    color: var(--accent-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Career Option Cards */
.career-option-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.career-option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.career-option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.career-option-card:hover .career-option-icon {
    transform: scale(1.1);
}

.career-option-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.career-option-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* About Exam Section */
.about-exam-section {
    background: var(--bg-light);
}

.about-exam-content {
    padding: 20px 0;
}

.image-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.image-card i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.image-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.image-card p {
    font-size: 16px;
    opacity: 0.9;
}

/* About AME Section */
.about-ame-section {
    background: white;
}

.content-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
}

.highlight-box h3,
.highlight-box h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.highlight-box i {
    color: var(--accent-color);
    margin-right: 8px;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* AAE Section */
.aae-section {
    background: var(--bg-light);
}

.aae-card {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.aae-details {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* Comparison Section */
.comparison-section {
    background: white;
}

.comparison-card {
    transition: var(--transition);
    border-radius: 20px;
    overflow: hidden;
    background: white !important;
    border: 1px solid var(--border-color);
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl) !important;
    border-color: var(--primary-color);
}

.comparison-card.featured {
    background: white !important;
}

.comparison-card .card-body {
    text-align: center;
}

.card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.comparison-card:hover .card-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.comparison-card .card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.comparison-card .card-text {
    text-align: left;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.career-prospects {
    text-align: left;
}

.career-prospects h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.career-prospects p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
}

/* Comparison Section Alert */
.comparison-section .alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 74, 172, 0.1);
}

.comparison-section .alert-info p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.comparison-section .alert-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* AIR Rank Section */
.air-rank-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.air-rank-section .section-title,
.air-rank-section .section-subtitle {
    color: white;
}

.table {
    background: white;
    color: var(--text-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.table thead {
    background: var(--primary-color);
    color: white;
}

.table thead th {
    padding: 20px;
    font-weight: 700;
    font-size: 18px;
    border: none;
}

.table tbody td {
    padding: 20px;
    font-size: 16px;
    border-color: var(--border-color);
}

.table tbody tr:hover {
    background: var(--bg-light);
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.section-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 2px solid transparent;
    text-align: center;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.mission-card.featured::before {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(1);
}

.mission-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.mission-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mission-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.mission-card.featured .mission-card-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}


.mission-card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(30, 64, 175, 0.1);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.mission-card.featured .mission-card-number {
    color: rgba(255, 255, 255, 0.1);
}

.mission-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.mission-card.featured .mission-card-title {
    color: white;
}

.mission-card-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mission-card.featured .mission-card-text {
    color: rgba(255, 255, 255, 0.9);
}

.mission-card-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.mission-card.featured .mission-card-text strong {
    color: white;
}

.mission-card-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.mission-card.featured .mission-card-highlight {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.mission-card-highlight i {
    color: var(--accent-color);
    font-size: 18px;
}

.mission-card.featured .mission-card-highlight i {
    color: white;
}

.mission-cta-box {
    background: white;
    padding: 35px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.mission-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-light));
}

.mission-cta-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-cta-title i {
    color: var(--accent-color);
    font-size: 28px;
}

.mission-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mission-step {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.mission-step:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.mission-cta-actions {
    position: sticky;
    top: 100px;
}

.mission-cta-actions .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 15px;
}

.mission-cta-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mission-cta-actions .btn.mb-3 {
    margin-bottom: 12px !important;
}

/* Why Choose Us Section */
.why-choose-section {
    background: white;
}

.feature-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    background: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Success Section */
.success-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.stat-desc {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 60px 0 !important;
}

.google-reviews-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.google-icon {
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.google-icon svg {
    width: 24px;
    height: 24px;
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rating-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 2px;
}

.rating-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 320px;
}

.testimonial-card {
    background: white;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition);
    position: absolute;
    width: 100%;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.quote-icon {
    font-size: 36px;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.author-info p {
    color: var(--text-light);
    font-size: 13px;
}

.testimonial-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.testimonial-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    pointer-events: all;
}

.testimonial-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

/* Exam Info Section */
.exam-info-section {
    background: var(--bg-light);
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
}

.info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--bg-light);
    font-size: 16px;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px;
    background: white;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Footer */
footer {
    background: #1f2937 !important;
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    color: white !important;
    padding-left: 5px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 160px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Floating Action Buttons */
.floating-action-buttons {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    position: relative;
    border: none;
    cursor: pointer;
}

.fab-phone {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.fab-button:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.fab-button:active {
    transform: scale(0.95);
}

.fab-tooltip {
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    font-weight: 500;
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--text-dark);
}

.fab-button:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .inquiry-content h2 {
        font-size: 2.5rem !important;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container, .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .top-bar {
        padding: 10px 0;
        font-size: 12px;
        width: 100%;
        max-width: 100vw;
        margin: 0;
    }
    
    .top-bar-content {
        width: 100%;
        padding: 0 15px;
    }
    
    .top-bar-marquee-wrapper {
        width: 100%;
        overflow: hidden;
    }
    
    .marquee-content {
        animation: marquee 25s linear infinite;
        gap: 25px;
    }
    
    .marquee-item {
        font-size: 12px;
    }
    
    .marquee-separator {
        font-size: 12px;
    }
    
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        padding-left: 0;
        padding-right: 0;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
    }
    
    .hero {
        height: 500px;
        width: 100%;
        max-width: 100vw;
        margin: 0;
        padding: 0;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .navbar {
        padding: 10px 0;
        width: 100%;
        max-width: 100vw;
        margin: 0;
    }
    
    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .navbar-brand, .navbar-nav {
        max-width: 100%;
    }
    
    .navbar-logo {
        height: 40px;
        max-width: 100%;
    }
    
    footer {
        width: 100%;
        max-width: 100vw;
        margin: 0;
    }
    
    footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer-logo {
        height: 50px;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .section-subtitle-large {
        font-size: 20px;
    }
    
    .inquiry-content h2 {
        font-size: 1.75rem !important;
        white-space: normal;
    }
    
    .inquiry-content .lead {
        font-size: 1rem;
    }
    
    .inquiry-image {
        margin-top: 30px;
        padding-top: 0;
    }
    
    .inquiry-image img {
        max-width: 100% !important;
        width: 100%;
    }
    
    .inquiry-section {
        padding: 60px 0 !important;
    }
    
    .inquiry-content {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .inquiry-form .form-control,
    .inquiry-form .form-select {
        font-size: 16px;
        padding: 14px 16px;
    }
    
    .inquiry-form .form-label {
        font-size: 10px;
    }
    
    .career-option-card {
        padding: 20px 15px;
    }
    
    .career-option-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .career-option-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .career-option-text {
        font-size: 12px;
    }
    
    .mission-card {
        padding: 30px 20px;
    }
    
    .mission-card.featured {
        transform: scale(1);
    }
    
    .mission-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .mission-card-number {
        font-size: 48px;
    }
    
    .mission-card-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .career-option-card {
        padding: 20px 15px;
    }
    
    .career-option-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .career-option-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .career-option-text {
        font-size: 12px;
    }
    
    .mission-cta-box {
        padding: 25px 20px;
    }
    
    .mission-cta-title {
        font-size: 22px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .mission-cta-title i {
        font-size: 24px;
    }
    
    .mission-steps {
        gap: 12px;
    }
    
    .mission-step {
        padding: 16px 18px;
        gap: 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .step-content h4 {
        font-size: 18px;
    }
    
    .mission-cta-actions {
        position: static;
        margin-top: 30px;
    }
    
    .contact-section .card {
        margin-bottom: 20px;
    }
    
    .contact-section .row {
        flex-direction: column-reverse;
    }
    
    .testimonials-section {
        padding: 50px 0 !important;
    }
    
    .testimonials-slider {
        min-height: 280px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .quote-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .author-info h4 {
        font-size: 15px;
    }
    
    .testimonial-indicators {
        margin-top: 25px;
    }
    
    .google-icon {
        width: 42px;
        height: 42px;
    }
    
    .google-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .rating-number {
        font-size: 24px;
    }
    
    .rating-label {
        font-size: 10px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .image-card {
        padding: 40px 30px;
    }
    
    .image-card i {
        font-size: 60px;
    }
    
    .floating-action-buttons {
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        gap: 12px;
    }
    
    .fab-button {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .fab-tooltip {
        display: none;
    }
    
    .back-to-top {
        bottom: 140px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container, .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .top-bar {
        padding: 8px 0;
        font-size: 11px;
        width: 100%;
        max-width: 100vw;
    }
    
    .top-bar-content {
        padding: 0 12px;
    }
    
    section {
        width: 100%;
        max-width: 100vw;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    [class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .top-bar-marquee-wrapper {
        width: 100%;
        overflow: hidden;
    }
    
    .marquee-content {
        animation: marquee 20s linear infinite;
        gap: 20px;
    }
    
    .marquee-item {
        font-size: 11px;
    }
    
    .marquee-separator {
        font-size: 11px;
    }
    
    .hero {
        height: 450px;
    }
    
    .hero-title {
        font-size: 22px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-badge {
        font-size: 9px;
        padding: 5px 12px;
    }
    
    .hero-actions .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 22px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .footer-logo {
        height: 45px;
    }
    
    .inquiry-content h2 {
        font-size: 1.5rem !important;
        white-space: normal;
    }
    
    .inquiry-content .lead {
        font-size: 0.95rem;
    }
    
    .mission-card {
        padding: 25px 15px;
    }
    
    .mission-card-number {
        font-size: 40px;
        top: 15px;
        left: 15px;
    }
    
    .mission-card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .mission-card-title {
        font-size: 20px;
    }
    
    .mission-cta-box {
        padding: 20px 15px;
    }
    
    .mission-cta-title {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .career-option-card {
        padding: 18px 12px;
    }
    
    .career-option-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .career-option-title {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .career-option-text {
        font-size: 11px;
    }
    
    .inquiry-form .form-control,
    .inquiry-form .form-select {
        font-size: 16px;
        padding: 12px 14px;
    }
    
    .inquiry-section {
        padding: 50px 0 !important;
    }
    
    .inquiry-content {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .contact-section .card {
        padding: 20px 15px;
    }
    
    .contact-section .card h3 {
        font-size: 20px;
    }
    
    .mission-steps {
        gap: 10px;
    }
    
    .mission-step {
        padding: 14px 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: 0 auto;
    }
    
    .step-content h4 {
        font-size: 15px;
    }
    
    .step-content p {
        font-size: 12px;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .testimonials-section {
        padding: 40px 0 !important;
    }
    
    .testimonials-slider {
        min-height: 250px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .quote-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .author-info h4 {
        font-size: 14px;
    }
    
    .author-info p {
        font-size: 12px;
    }
    
    .testimonial-indicators {
        margin-top: 20px;
    }
    
    .google-icon {
        width: 38px;
        height: 38px;
    }
    
    .google-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .rating-number {
        font-size: 22px;
    }
    
    .rating-label {
        font-size: 9px;
    }
    
    .google-reviews-badge {
        gap: 10px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .floating-action-buttons {
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        gap: 10px;
    }
    
    .fab-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .back-to-top {
        bottom: 130px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}
