/* ==================== GLOBAL STYLES ==================== */
:root {
    --primary-color: #b32117;
    --primary-dark: #8a1912;
    --primary-light: #d63027;
    --secondary-color: #1a1a1a;
    --accent-color: #f39c12;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #28a745;
    --shadow: none;
    --shadow-lg: none;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.bg-light {
    background-color: var(--bg-light);
}

.bg-light-red {
    background-color: #ffffff;
}

/* ==================== TYPOGRAPHY ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    letter-spacing: -0.015em;
}

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

.section-title {
    font-size: 2.25rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 400;
    line-height: 1.6;
}

.highlight {
    color: var(--white);
    font-weight: 600;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.005em;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 5px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.logo-text-black {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.logo-tagline {
    font-size: 0.8rem;
    color: black;
    font-weight: 500;
    margin-top: 0px;
    letter-spacing: 0.5px;
    line-height: 0;
    margin-left: 55px;
}

@media (max-width: 600px) {
    .logo-tagline {
        font-size: 0.92rem;
        margin-left: 0;
        text-align: left;
    }
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,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>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.feature-item i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== INFO BAR ==================== */
.info-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ==================== INTERNATIONAL OFFICES SECTION ==================== */
.international-offices-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.office-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.office-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.office-card.featured-office {
    border: 2px solid var(--primary-color);
    background: linear-gradient(to bottom, rgba(179, 33, 23, 0.02) 0%, var(--white) 100%);
}

.flag-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1;
}

.office-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.office-address {
    margin: 20px 0;
    min-height: 110px;
}

.office-address p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 6px 0;
    font-size: 0.95rem;
}

.office-address p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.office-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 0.02em;
}

.featured-office .office-badge {
    background: var(--primary-color);
    color: var(--white);
}

/* ==================== ABOUT SECTION ==================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.credentials {
    margin: 30px 0;
}

.credential-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
}

.credential-item i {
    font-size: 1.5rem;
    color: var(--success-color);
}

.credential-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.credential-item p {
    margin: 0;
    font-size: 0.9rem;
}

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

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
}

.stat-card h3 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.stat-card p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 5px;
}

.experience-badge p {
    margin: 0;
    font-size: 1rem;
}

/* ==================== SERVICES SECTION ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(to bottom, #fff9f8 0%, var(--white) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.service-features i {
    color: var(--success-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ==================== COURSES SECTION ==================== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-card.featured-course {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 5;
}

.course-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-header h3 {
    color: var(--white);
    font-size: 1.4rem;
}

.course-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.course-body {
    padding: 25px;
}

.course-body p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.course-list {
    list-style: none;
    margin-bottom: 20px;
}

.course-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.course-list i {
    color: var(--success-color);
}

.course-formats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.course-formats span {
    background: var(--bg-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.course-footer {
    padding: 0 25px 25px;
}

.course-footer .btn {
    width: 100%;
    text-align: center;
}

/* ==================== VISA GUIDE SECTION ==================== */
.visa-content {
    max-width: 1000px;
    margin: 0 auto;
}

.visa-alert {
    display: flex;
    gap: 20px;
    background: #fff3cd;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.visa-alert i {
    font-size: 2rem;
    color: var(--accent-color);
}

.visa-alert h4 {
    margin-bottom: 10px;
}

.visa-section {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.visa-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.visa-section h3 i {
    color: var(--primary-color);
}

.visa-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.requirement-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
}

.req-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.requirement-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.requirement-card ul {
    list-style: none;
    margin-top: 10px;
}

.requirement-card ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.requirement-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.fee-table {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-row span {
    font-size: 1.1rem;
}

.fee-row strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -43px;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 4px solid var(--bg-light);
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.work-rights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.work-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.work-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.work-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.work-card ul {
    list-style: none;
    text-align: left;
}

.work-card ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
}

.work-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.policy-list {
    list-style: none;
    margin-top: 20px;
}

.policy-list li {
    padding: 12px 20px;
    background: var(--bg-light);
    margin-bottom: 10px;
    border-radius: 5px;
    padding-left: 50px;
    position: relative;
}

.policy-list li::before {
    content: '→';
    position: absolute;
    left: 20px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.refusal-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.reason-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 20px;
    background: #fff3cd;
    border-radius: 10px;
}

.reason-item i {
    color: #dc3545;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reason-item p {
    margin: 0;
    color: var(--text-dark);
}

.visa-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.visa-cta h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.visa-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
}

/* ==================== WHY CHOOSE US ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-box {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==================== CONTACT SECTION ==================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    width: 100%;
    border: none;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-credentials p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
}

.footer-licenses {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 15px;
    /* background: rgba(255, 255, 255, 0.05); */
    border-radius: 8px;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.license-badge {
    height: 150px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    background: var(--white);
    padding: 8px;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.license-badge:hover {
    transform: scale(1.05);
}

.license-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-align: center;
    white-space: nowrap;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        transition: left 0.3s ease;
        padding: 50px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-btn .btn-primary {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-licenses {
        gap: 15px;
        justify-content: center;
    }

    .license-badge {
        height: 40px;
        max-width: 120px;
    }

    .license-item span {
        font-size: 0.75rem;
    }

    .requirements-grid,
    .work-rights,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .service-card,
    .course-card {
        padding: 25px 20px;
    }

    .visa-section {
        padding: 25px 20px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    border-color: rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    animation: shake 1s infinite;
}

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

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-10deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(10deg);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        left: 20px;
    }
}

/* ==================== IELTS OVERVIEW SECTION ==================== */
/* ==================== ENGLISH REQUIREMENTS SECTION ==================== */
.english-requirements-section {
    background: #fafafa;
}

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

.test-option-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.test-option-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.test-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.test-icon i {
    font-size: 2rem;
    color: var(--white);
}

.test-option-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.test-score {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.test-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.test-features li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.test-features i {
    color: var(--success-color);
    margin-right: 10px;
}

.requirements-note {
    background: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.requirements-note i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.requirements-note p {
    margin: 0;
    color: var(--text-dark);
}

/* Old IELTS styles - keeping for compatibility */
.ielts-overview-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ielts-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.ielts-description {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.subsection-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 60px 0 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* IELTS Versions */
.ielts-versions {
    margin-bottom: 60px;
}

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

.version-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

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

.version-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.version-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.version-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.version-badge.academic {
    background: var(--primary-color);
}

.version-badge.general {
    background: var(--secondary-color);
}

.ielts-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.ielts-note i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 3px;
}

.ielts-note p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Test Structure */
.ielts-structure {
    margin-bottom: 60px;
}

.structure-info {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.test-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.module-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.module-header {
    padding: 25px 20px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.module-header i {
    font-size: 2.5rem;
}

.module-header h4 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.module-card.listening .module-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.module-card.reading .module-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.module-card.writing .module-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.module-card.speaking .module-header {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.module-body {
    padding: 25px 20px;
}

.module-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.module-detail:last-of-type {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: var(--primary-color);
    font-weight: 600;
}

.module-note {
    margin-top: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Scoring System */
.ielts-scoring {
    margin-bottom: 60px;
}

.scoring-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.scoring-intro p {
    font-size: 1.15rem;
    color: var(--text-dark);
}

.band-scale {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.band-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-width: 120px;
    transition: transform 0.3s;
}

.band-item:hover {
    transform: scale(1.05);
}

.band-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.band-item.band-9 .band-number {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.band-item.band-8 .band-number {
    background: linear-gradient(135deg, #3b41c5 0%, #a981bb 100%);
}

.band-item.band-7 .band-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.band-item.band-6 .band-number {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.band-item.band-5 .band-number {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.band-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.scoring-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.scoring-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.scoring-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.scoring-card h4 i {
    font-size: 1.5rem;
}

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

.assessment-criteria {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.criteria-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.criteria-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 10px;
    border-top: 3px solid var(--primary-color);
}

.criteria-item h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.criteria-item h5 i {
    font-size: 1.3rem;
}

.criteria-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.criteria-item ul {
    list-style: none;
    padding: 0;
}

.criteria-item ul li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.criteria-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Administration */
.ielts-administration {
    margin-bottom: 60px;
}

.admin-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.admin-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.admin-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.admin-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.admin-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.admin-card ul li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.admin-card ul li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

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

/* IELTS CTA */
.ielts-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    color: white;
    box-shadow: var(--shadow-lg);
}

.ielts-cta h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.ielts-cta p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.ielts-cta .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
}

.ielts-cta .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for IELTS Section */
@media (max-width: 768px) {
    .subsection-title {
        font-size: 1.6rem;
    }

    .versions-grid,
    .test-modules-grid,
    .scoring-details,
    .criteria-grid,
    .admin-info {
        grid-template-columns: 1fr;
    }

    .band-scale {
        gap: 10px;
    }

    .band-item {
        min-width: 100px;
        padding: 15px;
    }

    .band-number {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .band-label {
        font-size: 0.75rem;
    }

    .ielts-cta {
        padding: 40px 20px;
    }

    .ielts-cta h3 {
        font-size: 1.5rem;
    }

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

    .assessment-criteria {
        padding: 25px 20px;
    }

    .ielts-description {
        font-size: 1rem;
        padding: 15px;
    }

    .footer-logo-img {
        max-width: 100px;
    }

    .license-badge {
        max-width: 140px;
    }

    .footer-licenses {
        justify-content: center;
    }
}