/* Global English Exchange Page Styles */

/* Import variables */
@import url('./variables.css');

/* Hero Section Styles */
.hero-section-modern {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s infinite linear;
    z-index: 3;
}

.hero-content-wrapper {
    position: relative;
    z-index: 4;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content-modern {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: white;
}

.title-highlight {
    display: block;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-gold-light));
    border: none;
    color: #333;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    color: #333;
}

.hero-btn-secondary {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn-secondary:hover {
    background: white;
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 1;
}

.hero-visual {
    position: relative;
    z-index: 3;
}

.hero-image-container {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 1rem;
    color: white;
    text-align: center;
    animation: float-card 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 500;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-50px); }
}

@keyframes float-card {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}


/* Overview Section */
.overview-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.overview-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.overview-section .section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Objectives Section */
.objectives-section {
    background: white;
    padding: 80px 0;
}

.objectives-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-navy);
}

.objectives-list {
    list-style: none;
    padding: 0;
}

.objectives-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: #555;
}

.objectives-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.objectives-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.objectives-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
}

.objectives-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
}

.objectives-icon i {
    font-size: 2rem;
    color: white;
}

.objectives-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Programs Section */
.programs-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.programs-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.program-card.featured {
    border: 2px solid var(--primary-gold);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.program-flag {
    font-size: 2rem;
}

.program-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0;
}

.program-details {
    margin-bottom: 1.5rem;
}

.program-details p {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.program-benefits h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.program-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-benefits li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.program-benefits li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.program-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.program-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    color: white;
}

/* Partners Section */
.partners-section {
    background: white;
    padding: 80px 0;
}

.partners-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.partner-country {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid #e9ecef;
}

.partner-country h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.partner-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #666;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.partner-list li:before {
    content: '🏢';
    position: absolute;
    left: 0;
}

.partner-list li:last-child {
    border-bottom: none;
}

/* Strategy Section */
.strategy-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.strategy-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.strategy-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.strategy-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.strategy-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strategy-card li {
    padding: 0.75rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
}

.strategy-card li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Marketing Section */
.marketing-section {
    background: white;
    padding: 80px 0;
}

.marketing-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.marketing-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.marketing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.marketing-card i {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.marketing-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.marketing-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Components Section */
.components-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.components-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.component-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.component-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.component-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.component-icon i {
    font-size: 2rem;
    color: white;
}

.component-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.component-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.component-card li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.component-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 80px 0;
}

.testimonials-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid #e9ecef;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-gold);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--primary-navy);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
    padding: 80px 0;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: #333;
    border: none;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    color: #333;
}

/* Values Section */
.values-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.values-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.value-icon i {
    font-size: 2rem;
    color: #333;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Cultural Exchange Program Section */
.cultural-exchange-section {
    background: white;
    padding: 80px 0;
}

.cultural-exchange-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.cultural-exchange-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 2rem;
}

.exchange-overview-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.exchange-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-gold) 100%);
}

.overview-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.overview-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

.program-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.highlight-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.exchange-benefits {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid #e9ecef;
}

.exchange-benefits h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.call-to-action {
    text-align: center;
    padding-top: 1rem;
}

.call-to-action .btn {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.call-to-action .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
    color: white;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.contact-info h4,
.contact-form h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section-modern {
        padding: 60px 0;
        min-height: 60vh;
    }
    
    .hero-content-wrapper {
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .overview-section .section-title,
    .programs-section .section-header h2,
    .partners-section .section-header h2,
    .contact-section .section-header h2 {
        font-size: 2rem;
    }
    
    .objectives-content h3 {
        font-size: 1.5rem;
    }
    
    .program-card,
    .partner-country,
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .objectives-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section-modern {
        padding: 40px 0;
        min-height: 50vh;
    }
    
    .hero-content-wrapper {
        min-height: 40vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .overview-section .section-title,
    .programs-section .section-header h2,
    .partners-section .section-header h2,
    .contact-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .objectives-list li {
        font-size: 0.9rem;
    }
    
    .program-header h4 {
        font-size: 1.1rem;
    }
    
    .cultural-exchange-section .section-header h2 {
        font-size: 2rem;
    }
    
    .exchange-overview-card {
        padding: 2rem 1.5rem;
    }
    
    .program-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .exchange-benefits {
        padding: 2rem 1.5rem;
    }
}

/* Floating Survey Button */
.floating-survey-btn {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 1000;
}

.btn-floating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.btn-floating::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-floating:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
    color: #333;
}

.btn-floating:hover::before {
    left: 0;
}

.btn-floating i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-floating:hover i {
    transform: scale(1.1);
}

.btn-text {
    font-weight: 600;
    white-space: nowrap;
}

/* Pulse animation for attention */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(30, 58, 138, 0.6), 0 0 0 10px rgba(30, 58, 138, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    }
}

.btn-floating {
    animation: pulse 3s infinite;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-survey-btn {
        bottom: 100px;
        right: 20px;
    }
    
    .btn-floating {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-text {
        display: none;
    }
    
    .btn-floating i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .floating-survey-btn {
        bottom: 105px;
        right: 15px;
    }
    
    .btn-floating {
        padding: 0.75rem;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
}
