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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(to bottom right, #f8fafc, #dbeafe);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: capitalize;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
}

.mobile-link {
    display: block;
    padding: 0.5rem 0;
    color: #4b5563;
    text-decoration: none;
    text-transform: capitalize;
}

.mobile-link:hover {
    color: #2563eb;
}

/* Hero Section */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-content {
    text-align: center;
    padding: 5rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-highlight {
    display: block;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

/* Standard Button Size - Professional */
.btn-standard {
    padding: 0.875rem 1.75rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
}

.btn-outline:hover {
    background: #eff6ff;
}

.btn-full {
    width: 100%;
}

.btn-half {
    flex: 1;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Form Divider */
.contact-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.contact-divider-text {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    color: #4b5563;
    margin-top: 0.5rem;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
}

/* Services Section */
.services-section {
    background: white;
}

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

.service-card {
    background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
    padding: 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #4b5563;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.why-choose-us {
    background: linear-gradient(to bottom right, #2563eb, #4f46e5);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
}

.why-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-list li {
    padding-left: 1.5rem;
    position: relative;
}

.why-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
}

/* Contact Section styling */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.contact-detail {
    color: #4b5563;
}

.office-hours {
    background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.office-hours-title {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.office-hours-text {
    color: #374151;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}


.blog-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.blog-image {
    height: 12rem;
    background: linear-gradient(to bottom right, #60a5fa, #6366f1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.blog-excerpt {
    color: #4b5563;
    margin-bottom: 1rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-link:hover {
    color: #1d4ed8;
}

.blog-link svg {
    width: 1rem;
    height: 1rem;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    color: #60a5fa;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    color: #9ca3af;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-links li {
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Form Status Messages - Add these styles at the END of your styles.css */

.form-status {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-status-success {
    background: linear-gradient(to right, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 2px solid #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.form-status-error {
    background: linear-gradient(to right, #fee2e2, #fecaca);
    color: #991b1b;
    border: 2px solid #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.status-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Mobile responsiveness for status messages */
@media (max-width: 480px) {
    .form-status {
        font-size: 0.875rem;
        padding: 0.875rem 1rem;
    }
    
    .status-icon {
        width: 20px;
        height: 20px;
    }
}
/* Partner Preview Section */
.partner-preview-section {
    background: white;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.partner-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partner-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
}

.partner-illustration {
    width: 100%;
    height: 20rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, #60a5fa, #6366f1);
}

/* Partner Hero Section */
.partner-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

/* Larger, more prominent subtitle */
.partner-hero .hero-subtitle {
    font-size: 1.625rem; /* 26px */
    line-height: 1.6;
}

@media (max-width: 768px) {
    .partner-hero .hero-subtitle {
        font-size: 1.375rem; /* 22px - Better for mobile! */
    }
}

@media (max-width: 480px) {
    .partner-hero .hero-subtitle {
        font-size: 1.25rem; /* 20px - For very small phones */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

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

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

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

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

    .partner-illustration {
        height: 15rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .btn-half {
        width: 100%;
    }
}

/* Clickable Stat Cards */
.stat-card-link {
    text-decoration: none;
    color: inherit;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.stat-card-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card-link:hover::before {
    opacity: 1;
}

.stat-card-link:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.stat-card-link > * {
    position: relative;
    z-index: 1;
}

/* Remove underline and enforce clean clickable stat cards */
.stat-card-link,
.stat-card-link * {
    text-decoration: none !important;
    color: inherit;
}

.stat-arrow {
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.stat-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.stat-card-link:hover .stat-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* University & Destination Cards */
.university-rank {
    display: inline-block;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.university-location {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

.destination-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.destination-card {
    text-align: left;
}

.destination-stats {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.destination-stats span {
    padding-left: 0.5rem;
}

/* Step Numbers */
.step-number {
    display: inline-block;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* Footer Links Hover */
.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .destination-flag {
        font-size: 2.5rem;
    }
    
    .university-rank,
    .step-number {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

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

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