/* ===================================================================
   FINAL CSS FILE
   =================================================================== */

/* Desktop Spacing and Typography Improvements */
.section {
    padding: 70px 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 18px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 45px;
    line-height: 1.5;
}

/* Better paragraph spacing for desktop */
p {
    line-height: 1.6;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Improved content spacing */
.process-step p,
.visa-card p,
.requirements-section-card p {
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Better list spacing */
.visa-features li,
.requirements-list li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* 1. BASIC SETUP & COLOR VARIABLES */
:root {
    --primary-blue: #162b47;
    --accent-orange: #f2541d;
    --white: #ffffff;
    --text-color-light: #d0e0ff;
    --text-color-dark: #333;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background-color: #f8f9fa; color: var(--text-color-dark); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* 2. HEADER & NAVIGATION */
.main-header { background-color: var(--white); padding: 10px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06); transition: all 0.3s ease; }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 60px; transition: transform 0.3s ease; }
.logo:hover img { transform: scale(1.05); }
.nav-links { display: flex; gap: 35px; }
.nav-links a { color: var(--primary-blue); font-weight: 600; transition: all 0.3s ease; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background-color: var(--accent-orange); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--accent-orange); }
.nav-links a:hover::after { width: 100%; }
.cta-button { background-color: var(--accent-orange); color: var(--white); padding: 10px 24px; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; position: relative; overflow: hidden; }
.cta-button::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s; }
.cta-button:hover::before { left: 100%; }
.cta-button:hover { background-color: #e04a10; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(242, 84, 29, 0.3); }

/* 3. HERO SECTION */
.hero-section { 
    background: linear-gradient(115deg, rgba(22, 43, 71, 0.92) 48%, rgba(242, 84, 29, 0.88) 100%), url('images/bali-visa.jpg') no-repeat center center/cover; 
    background-attachment: fixed; 
    padding: 30px 0 35px 0; 
    color: var(--white); 
    position: relative;
    z-index: 1;
    min-height: 65vh;
    display: flex;
    align-items: center;
}
.hero-grid { display: grid; grid-template-columns: 60% 40%; align-items: center; gap: 20px; }
.hero-content h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.2; margin-bottom: 18px; }
.hero-content h1 span { color: var(--accent-orange); display: block; }
.hero-content p { font-size: 0.7rem; max-width: 480px; margin-bottom: 22px; color: var(--text-color-light); line-height: 1.5; }
.hero-content .hero-lead { font-size: 1rem; line-height: 1.45; color: var(--text-color-light); max-width: 520px; margin-bottom: 16px; display: inline-block; padding: 10px 14px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 14px; backdrop-filter: blur(4px); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12); }
.hero-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; font-weight: 600; font-size: 1rem; }
.hero-feature { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 14px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 0 6px 18px rgba(0,0,0,0.12); width: fit-content; }
.hero-features .checkmark { color: var(--accent-orange); margin-right: 0; font-size: 1.1rem; background: rgba(242,84,29,0.15); border-radius: 50%; width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; }
.trust-elements { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    margin-top: 8px; 
    position: relative;
    z-index: 50;
}
.google-review-img { 
    height: 45px; 
    position: relative;
    z-index: 100;
}
.cta-button-large { background-color: var(--accent-orange); color: var(--white); padding: 12px 30px; border-radius: 50px; font-size: 1rem; font-weight: 700; transition: all 0.3s ease; box-shadow: 0 5px 20px rgba(0,0,0,0.15); }
.cta-button-large:hover { background-color: #fff; color: var(--accent-orange); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.hero-image-wrapper { display: flex; align-items: center; justify-content: center; }
.hero-image-wrapper img { width: 100%; max-width: 350px; margin: 0 auto; display: block; border-radius: 16px; filter: drop-shadow(20px 10px 30px rgba(0,0,0,0.25)); }

/* Inline disclaimer under hero actions */
.disclaimer-inline {
  font-size: 0.5rem;
  line-height: 1.2;
  color: var(--text-color-light);
  margin-top: 10px;
  max-width: 720px;
  display: block;
}


/* 4. "WHY US" SECTION */
.why-us-section { 
    padding: 80px 0 60px 0; 
    background: var(--white); 
    position: relative;
    z-index: 5;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.2rem; font-weight: 800; color: var(--primary-blue); margin-bottom: 15px; position: relative; display: inline-block; }
.section-header h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background-color: var(--accent-orange); border-radius: 2px; }
.section-header p { font-size: 1.1rem; color: #666; max-width: 600px; margin: 0 auto; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 40px; }
.comparison-card { padding: 40px; border-radius: 20px; display: flex; flex-direction: column; }
.comparison-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 30px; }
.comparison-card ul { list-style: none; flex-grow: 1; }
.comparison-card ul li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 1.05rem; font-weight: 500; line-height: 1.5; }
.comparison-card ul li::before { flex-shrink: 0; font-family: 'Poppins', sans-serif; display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; font-weight: 700; }
.card-pain { background: #fff; border: 2px solid #162b47; box-shadow: 0 10px 30px -15px rgba(22, 43, 71, 0.15); transition: border-color 0.3s ease, transform 0.3s ease; }
.card-pain:hover { transform: translateY(-5px); border-color: #2E5BBA; box-shadow: 0 15px 35px -10px rgba(74, 144, 226, 0.25); }
.card-pain h3 { color: #162b47; }
.card-pain ul li { color: #666; text-decoration: line-through; }
.card-pain ul li::before { content: '×'; background-color: #f8f9fa; color: #162b47; border: 2px solid #162b47; }
.card-gain { background: radial-gradient(circle at 100% 0%, rgba(242, 84, 29, 0.4) 0%, transparent 50%), var(--primary-blue); color: var(--white); border: 2px solid var(--primary-blue); transition: transform 0.4s ease, box-shadow 0.4s ease; box-shadow: 0 20px 40px -15px rgba(22, 43, 71, 0.4); }
.card-gain:hover { transform: translateY(-12px); box-shadow: 0 30px 60px -15px rgba(242, 84, 29, 0.35); }
.card-gain h3 { color: var(--white); }
.card-gain ul li { color: var(--text-color-light); }
.card-gain ul li::before { content: '✓'; background-color: var(--accent-orange); color: var(--white); }
.cta-button-card { 
    display: inline-block; 
    background-color: var(--accent-orange); 
    color: var(--white); 
    padding: 14px 35px; 
    border-radius: 50px; 
    font-weight: 700; 
    margin-top: 30px; 
    text-align: center; 
    transition: all 0.3s ease-in-out;
    border: 2px solid var(--accent-orange);
}
.cta-button-card:hover { 
    background-color: #ffffff !important; 
    color: var(--accent-orange) !important; 
    transform: scale(1.05) !important; 
    box-shadow: 0 8px 25px rgba(242, 84, 29, 0.3) !important;
    border: 2px solid var(--accent-orange) !important;
}

/* 5. "4 STEPS" PROCESS SECTION */
.process-section { padding: 90px 0; background-color: var(--white); }
.process-minimalist-container { position: relative; width: 100%; padding-top: 50px; }
.minimalist-pathway { position: absolute; top: 70px; left: 12.5%; right: 12.5%; height: 2px; }
.pathway-track { width: 100%; height: 100%; background-color: #e9ecef; }
.pathway-fill { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--accent-orange); transform: scaleX(0); transform-origin: left; transition: transform 3.5s cubic-bezier(0.65, 0, 0.35, 1); transition-delay: 0.3s; }
.process-section.in-view .pathway-fill { transform: scaleX(1); }
.process-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 2; }
.process-step-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-circle { width: 100px; height: 100px; background-color: var(--white); border: 2px solid #e9ecef; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color 0.5s ease; margin-bottom: 25px; padding: 10px; }
.step-circle img { width: 40px; height: 40px; }
.step-text h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary-blue); margin-bottom: 10px; }
.step-text p { font-size: 1rem; color: #666; line-height: 1.6; }
.process-step-item { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.process-section.in-view .step-circle { border-color: var(--accent-orange); }
.process-section.in-view .process-step-item { opacity: 1; transform: translateY(0); }
.process-section.in-view .process-step-item:nth-child(1) { transition-delay: 0.2s; }
.process-section.in-view .process-step-item:nth-child(2) { transition-delay: 1.2s; }
.process-section.in-view .process-step-item:nth-child(3) { transition-delay: 2.2s; }
.process-section.in-view .process-step-item:nth-child(4) { transition-delay: 3.2s; }

/* 6. VISA SERVICES SECTION */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.visa-cards-grid { 
    display: grid !important; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 15px;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.6s ease-out;
    visibility: visible !important;
}

/* Services section visa cards */
.services-section .visa-card { 
    background-color: var(--white); 
    border-radius: 25px; 
    padding: 40px 30px; 
    display: flex !important; 
    flex-direction: column; 
    text-align: center; 
    border: 2px solid #e9ecef; 
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.1); 
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    height: 100%;
    min-height: 550px;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
    justify-content: space-between;
}

/* Visa cards container visa cards */
.visa-cards-container .visa-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    border: 3px solid #e9ecef;
    box-shadow: 0 15px 35px -10px rgba(22, 43, 71, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    min-height: 500px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    display: none;
}

/* Fix for services section visa cards - make them visible and clickable */
.services-section .visa-card {
    opacity: 1 !important;
    pointer-events: all !important;
    visibility: visible !important;
    display: block !important;
}

.services-section .visa-card:hover { 
    transform: translateY(-20px) scale(1.03) !important; 
    border-color: var(--accent-orange) !important; 
    box-shadow: 0 30px 60px -15px rgba(22, 43, 71, 0.25) !important; 
    background-color: #ffffff !important;
}
.services-section .visa-card.featured { 
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%); 
    color: var(--white); 
    transform: scale(1.05); 
    border-color: transparent; 
    box-shadow: 0 25px 50px -15px rgba(22, 43, 71, 0.4);
    position: relative;
}

.services-section .visa-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-blue) 100%);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-section .visa-card.featured:hover::before {
    opacity: 1;
}

.services-section .visa-card.featured:hover { 
    transform: scale(1.05) translateY(-10px) !important; 
    box-shadow: 0 35px 70px -15px rgba(242, 84, 29, 0.4) !important; 
}

.services-section .visa-card.featured .cta-button-card {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    order: 4;
}

.services-section .visa-card.featured .cta-button-card:hover {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    transform: scale(1.05);
}
.services-section .visa-card.featured h3, .services-section .visa-card.featured .visa-price { color: var(--white); }
.services-section .visa-card.featured .visa-description, .services-section .visa-card.featured .visa-price .price-currency, .services-section .visa-card.featured .visa-price .price-prefix, .services-section .visa-card.featured .visa-features-list { color: rgba(255, 255, 255, 0.9); }
.services-section .visa-card h3 { 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: var(--primary-blue); 
    margin-bottom: 20px; 
    min-height: 60px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-section .visa-description { 
    color: #666; 
    margin-bottom: 30px; 
    flex-grow: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.services-section .visa-price { 
    font-size: 4.5rem; 
    font-weight: 900; 
    color: var(--primary-blue); 
    margin: 30px 0; 
    line-height: 1;
    order: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.services-section .visa-price .price-currency { 
    font-size: 2.2rem; 
    font-weight: 700; 
    color: var(--primary-blue); 
    vertical-align: super; 
    margin-right: 8px; 
}

.services-section .visa-price .price-prefix { 
    display: block; 
    font-size: 1.1rem; 
    font-weight: 600; 
    color: #888; 
    margin-bottom: 8px; 
}

.services-section .visa-features-list { 
    list-style: none; 
    margin-bottom: 0; 
    margin-top: auto;
    text-align: left; 
    color: #555; 
    font-weight: 500;
    order: 3;
    padding: 20px 0 0 0;
    border-top: 1px solid #f0f0f0;
}
.services-section .visa-features-list li { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    padding: 12px 0; 
    border-bottom: none;
    font-size: 0.95rem;
}

.services-section .visa-card.featured .visa-features-list li { 
    border-bottom: none; 
}

.services-section .visa-features-list li:last-child { 
    border-bottom: none; 
}

.services-section .visa-features-list li svg.feat-icon { 
    width: 18px; 
    height: 18px; 
    stroke-width: 2.5px; 
    stroke: var(--accent-orange); 
    flex-shrink: 0; 
    fill: none; 
}

.services-section .visa-card.featured .visa-features-list li svg.feat-icon { 
    stroke: var(--white); 
}

.services-section .visa-card:not(.featured) .cta-button-card { 
    background-color: var(--accent-orange);
    color: var(--white);
    border: 2px solid var(--accent-orange);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    order: 4;
}

.services-section .visa-card:not(.featured) .cta-button-card:hover { 
    background-color: var(--primary-blue) !important; 
    color: var(--white) !important;
    border: 2px solid var(--primary-blue) !important;
    box-shadow: 0 8px 25px rgba(22, 43, 71, 0.3) !important;
    transform: scale(1.05) !important;
}

/* 7. REQUIREMENTS SECTION */
.requirements-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.requirements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(242, 84, 29, 0.05) 0%, transparent 50%);
}

.requirements-grid {
    display: grid;
    grid-template-columns: 650px 600px;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 1;
    justify-content: center;
    max-width: 1350px;
    margin: 0 auto;
}

/* Left Side - Image */
.requirements-image-side {
    position: relative;
    display: flex;
    flex-direction: column;
}

.requirements-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(22, 43, 71, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    width: 650px;
    flex: 1;
}

.requirements-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(22, 43, 71, 0.25);
}

.requirements-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.requirements-image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 43, 71, 0.8) 0%, rgba(242, 84, 29, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.requirements-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 40px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.requirements-image-wrapper:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button-overlay {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent-orange);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(242, 84, 29, 0.3);
}

.cta-button-overlay:hover {
    background: #e6531a;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(242, 84, 29, 0.4);
}

/* Right Side - Content */
.requirements-content-side {
    padding-left: 0;
    width: 600px;
}

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

.requirements-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    line-height: 1.2;
}

.requirements-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

/* Toggle Buttons */
.visa-toggle-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    background: rgba(22, 43, 71, 0.05);
    padding: 8px;
    border-radius: 50px;
    width: fit-content;
}

.toggle-btn {
    padding: 12px 25px;
    border: none;
    background: transparent;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.toggle-btn.active {
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 5px 15px rgba(242, 84, 29, 0.3);
}

.toggle-btn:hover:not(.active) {
    background: rgba(242, 84, 29, 0.1);
    color: var(--accent-orange);
}

/* Visa Cards Container */
.visa-cards-container {
    position: relative;
    min-height: 500px;
    overflow: visible;
    width: 100%;
    max-width: 600px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0;
}

.visa-card {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 500px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateX(0) scale(1);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    visibility: hidden;
    overflow-y: auto;
    display: none;
    flex-direction: column;
    z-index: 1;
}

.visa-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
    visibility: visible;
    display: flex;
    border-color: var(--accent-orange);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.visa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 15px 15px 0 0;
}

.visa-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.visa-info {
    flex: 1;
}

.visa-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-top: 2px;
}

.visa-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.visa-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.duration-badge {
    background: var(--accent-orange);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.duration-badge.quick {
    background: #28a745;
}

.visa-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.requirements-section-card {
    background: linear-gradient(135deg, rgba(242, 84, 29, 0.08) 0%, rgba(22, 43, 71, 0.05) 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.requirements-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-blue), #28a745);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.requirements-section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.requirements-section-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.requirements-list li svg {
    color: #28a745;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.visa-additional-info {
    background: rgba(40, 167, 69, 0.05);
    border-radius: 8px;
    padding: 15px;
    border-left: 3px solid #28a745;
    margin-top: 15px;
}

.visa-additional-info p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.info-summary {
    text-align: center;
    color: #2c3e50;
    font-size: 0.95rem;
}

.info-summary strong {
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .requirements-content-side {
        padding-left: 0;
        width: 100%;
    }
    
    .visa-cards-container {
        width: 100%;
        padding: 15px;
    }
    
    .visa-card {
        width: calc(100% - 30px);
        padding: 20px;
    }
    
    .requirements-header {
        text-align: center;
    }
    
    .requirements-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .requirements-image-wrapper {
        height: 350px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .requirements-section {
        padding: 50px 0;
    }
    
    .requirements-header h2 {
        font-size: 2rem;
    }
    
    .visa-toggle-buttons {
        flex-direction: column;
        width: 100%;
        background: none;
        padding: 0;
        gap: 8px;
    }
    
    .toggle-btn {
        width: 100%;
        text-align: center;
        background: rgba(22, 43, 71, 0.05);
        border-radius: 8px;
        padding: 10px 20px;
    }
    
    .visa-cards-container {
        min-height: 450px;
        padding: 10px;
    }
    
    .visa-card {
        padding: 20px;
        width: calc(100% - 20px);
    }
    
    .visa-card-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .visa-icon {
        width: 45px;
        height: 45px;
    }
    
    .requirements-image-wrapper {
        height: 250px;
        width: 100%;
    }
    
    .requirements-section-card {
        padding: 15px;
        margin-bottom: 12px;
    }
    
    .visa-additional-info {
        padding: 12px;
    }
}

/* Additional Info Grid Styles */
.visa-additional-info .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 15px;
}

.visa-additional-info .info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid #ff6b6b;
    font-size: 14px;
    line-height: 1.4;
}

.visa-additional-info .info-item strong {
    color: #ff6b6b;
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .visa-additional-info .info-grid {
        gap: 8px;
    }
    
    .visa-additional-info .info-item {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* 8. FAQ SECTION */
.faq-section { padding: 100px 0; }
.faq-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: flex-start; }
.faq-image-wrapper { display: flex; flex-direction: column; gap: 25px; position: sticky; top: 120px; }
.faq-image-wrapper img { width: 100%; height: auto; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 50px -20px rgba(22, 43, 71, 0.4); }
.cta-button-gradient { width: 100%; text-align: center; padding: 16px 30px; font-size: 1.1rem; font-weight: 700; color: var(--white); border: none; border-radius: 50px; background: linear-gradient(45deg, var(--accent-orange) 0%, #ff8a63 100%); box-shadow: 0 10px 25px -10px rgba(242, 84, 29, 0.5); transition: all 0.3s ease; }
.cta-button-gradient:hover { transform: translateY(-5px); box-shadow: 0 15px 30px -10px rgba(242, 84, 29, 0.6); }
.cta-button-gradient:active { transform: translateY(-2px); box-shadow: 0 8px 20px -10px rgba(242, 84, 29, 0.6); }
.accordion-container { max-width: 100%; display: flex; flex-direction: column; gap: 20px; }
.accordion-item { background-color: var(--white); border-radius: 12px; transition: all 0.4s ease; border: 1px solid #e9ecef; }
.accordion-item.active { box-shadow: 0 10px 30px -10px rgba(242, 84, 29, 0.2); border: 1px solid var(--accent-orange); }
.accordion-header { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; background: none; border: none; cursor: pointer; text-align: left; }
.accordion-header span { font-size: 1.2rem; font-weight: 600; color: var(--primary-blue); transition: color 0.3s ease; }
.accordion-header:hover span { color: var(--accent-orange); }
.accordion-item.active .accordion-header span { color: var(--accent-orange); }
.accordion-icon { stroke: var(--primary-blue); fill: none; stroke-width: 2px; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), stroke 0.3s ease; flex-shrink: 0; }
.accordion-header:hover .accordion-icon { stroke: var(--accent-orange); }
.accordion-item.active .accordion-icon { transform: rotate(180deg); stroke: var(--accent-orange); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out; }
.accordion-content-inner { padding: 0 25px 25px 25px; border-top: 1px solid #e9ecef; }
.accordion-content p { color: #555; margin-top: 20px; line-height: 1.7; }
.accordion-content ul { list-style-type: '• '; color: var(--accent-orange); margin-left: 20px; margin-top: 20px; }
.accordion-content ul li { padding-left: 10px; margin-bottom: 10px; color: #333; opacity: 0; animation: fadeInUp 0.5s ease forwards; }
.accordion-item.active .accordion-content ul li:nth-child(1) { animation-delay: 0.1s; }
.accordion-item.active .accordion-content ul li:nth-child(2) { animation-delay: 0.2s; }
.accordion-item.active .accordion-content ul li:nth-child(3) { animation-delay: 0.3s; }
.accordion-item.active .accordion-content ul li:nth-child(4) { animation-delay: 0.4s; }
.accordion-item.active .accordion-content ul li:nth-child(5) { animation-delay: 0.5s; }

/* 8. TESTIMONIALS SECTION - PROFESSIONAL ANIMATED DESIGN */
.testimonials-section { 
    padding: 100px 0; 
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%); 
    position: relative; 
    overflow: hidden; 
}

.testimonials-section::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: radial-gradient(circle at 20% 80%, rgba(242, 84, 29, 0.05) 0%, transparent 50%); 
}

.testimonials-container {
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    border: 2px solid transparent;
}

.testimonial-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.testimonial-box.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    border-color: rgba(242, 84, 29, 0.2);
    box-shadow: 0 25px 60px rgba(242, 84, 29, 0.15);
}

.testimonial-box.active::before {
    transform: scaleX(1);
}

.testimonial-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-rating {
    margin-bottom: 25px;
}

.stars {
    display: flex;
    gap: 5px;
}

.star {
    color: #ffd700;
    font-size: 20px;
    transition: all 0.3s ease;
    animation: starGlow 2s ease-in-out infinite alternate;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starGlow {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.testimonial-quote {
    position: absolute;
    top: 15px;
    right: 25px;
    opacity: 0.15;
    z-index: 1;
}

.quote-icon {
    width: 80px;
    height: 80px;
    color: var(--accent-orange);
    transform: rotate(180deg);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-orange);
    transition: all 0.3s ease;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar:hover {
    transform: scale(1.1);
    border-color: var(--primary-blue);
}

.author-info h4 {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: #666;
    font-size: 14px;
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.nav-dots {
    display: flex;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(22, 43, 71, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-orange);
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--accent-orange);
    transform: scale(1.2);
}

.nav-dot.active::before {
    width: 20px;
    height: 20px;
    background: rgba(242, 84, 29, 0.2);
}

.nav-dot:hover {
    background: var(--primary-blue);
    transform: scale(1.1);
}

/* Animation keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .testimonials-grid {
        display: flex;
        overflow: hidden;
        gap: 20px;
        padding: 0 20px;
        position: relative;
    }
    
    .testimonial-box {
        background: var(--white);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        flex-shrink: 0;
        transform: translateX(0);
        opacity: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .testimonial-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
        transform: scaleX(1);
        transform-origin: left;
        transition: transform 0.6s ease;
    }
    
    .testimonial-box.active {
        opacity: 1;
        transform: translateX(0);
        border-color: rgba(242, 84, 29, 0.2);
        box-shadow: 0 25px 60px rgba(242, 84, 29, 0.15);
    }
    
    .testimonial-box:not(.active) {
        opacity: 1;
        transform: translateX(0);
    }
    
    .testimonial-box:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }
    
    /* Mobile quote styling */
    .testimonial-quote {
        top: 15px;
        right: 25px;
        opacity: 0.15;
    }
    
    .quote-icon {
        width: 80px;
        height: 80px;
    }
    
    /* Mobile content adjustments */
    .testimonial-content {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/* Desktop - Remove auto-play and navigation */
@media (min-width: 769px) {
    .testimonials-navigation {
        display: none; /* Hide navigation dots on desktop */
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
    }
    
    .testimonial-box {
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
        border-color: rgba(242, 84, 29, 0.2);
        box-shadow: 0 25px 60px rgba(242, 84, 29, 0.15);
    }
    
    .testimonial-box::before {
        transform: scaleX(1);
    }
}

/* 9. STATS SECTION */
.stats-section {
    background: linear-gradient(115deg, #162b47 55%, rgba(242, 84, 29, 0.8) 100%);
    background-size: 150% 150%;
    background-position: 50% 50%;
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
    transition: background-position 0.8s ease-out;
}

.stats-section:hover {
    background-position: 100% 50%;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid #162b47;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-item:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(242, 84, 29, 0.4);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(242, 84, 29, 0.2));
    border-color: var(--accent-orange);
}

.stat-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon svg {
    color: #ff6b35;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon svg {
    transform: scale(1.1) rotate(5deg);
    color: #fff;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Testimonials mobile optimizations - Premium Design */
    .testimonials-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f7ff 100%);
        position: relative;
        overflow: hidden;
    }
    
    .testimonials-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 80%, rgba(242, 84, 29, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(22, 43, 71, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .testimonials-carousel {
        position: relative;
        overflow: hidden;
        margin-top: 50px;
        padding: 0 15px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
    }
    
    .testimonials-wrapper {
        display: flex;
        gap: 0;
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        width: 300%; /* 3 cards × 100% */
        animation: autoSlide 12s infinite linear;
    }
    
    @keyframes autoSlide {
        0% { transform: translateX(0); }
        33.33% { transform: translateX(-33.33%); }
        66.66% { transform: translateX(-66.66%); }
        100% { transform: translateX(-100%); }
    }
    
    .testimonials-wrapper:hover {
        animation-play-state: paused;
    }
    
    .testimonial-card {
        min-width: 100%;
        width: 100%;
        padding: 40px 30px;
        margin: 20px 0;
        border-radius: 30px;
        background: linear-gradient(145deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(248, 250, 255, 0.9) 50%, 
            rgba(255, 255, 255, 0.95) 100%);
        backdrop-filter: blur(20px);
        border: 2px solid transparent;
        background-clip: padding-box;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
        box-shadow: 
            0 30px 80px rgba(0, 0, 0, 0.12),
            0 15px 40px rgba(22, 43, 71, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, 
            var(--primary-blue) 0%, 
            var(--accent-orange) 50%, 
            var(--primary-blue) 100%);
        padding: 2px;
        border-radius: 30px;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        -webkit-mask-composite: xor;
        z-index: -1;
    }
    
    .testimonial-card::after {
        content: '"';
        position: absolute;
        top: 25px;
        right: 30px;
        font-size: 120px;
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        opacity: 0.08;
        font-family: 'Georgia', serif;
        line-height: 1;
        z-index: 1;
        font-weight: bold;
    }
    
    .testimonial-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 
            0 40px 100px rgba(0, 0, 0, 0.15),
            0 20px 50px rgba(242, 84, 29, 0.1);
    }
    
    .testimonial-rating {
        margin-bottom: 25px;
        font-size: 20px;
        z-index: 2;
        position: relative;
        display: flex;
        gap: 3px;
    }
    
    .testimonial-rating .star {
        color: #ffd700;
        text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    }
    
    .testimonial-card p {
        font-size: 17px;
        line-height: 1.7;
        color: var(--primary-blue);
        margin-bottom: 30px;
        font-style: italic;
        position: relative;
        z-index: 2;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.3px;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 20px;
        z-index: 2;
        position: relative;
        justify-content: center;
        padding-top: 20px;
        border-top: 1px solid rgba(22, 43, 71, 0.1);
    }
    
    .testimonial-avatar {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 800;
        font-size: 22px;
        box-shadow: 
            0 15px 35px rgba(242, 84, 29, 0.4),
            0 5px 15px rgba(0, 0, 0, 0.1);
        border: 3px solid rgba(255, 255, 255, 0.9);
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-avatar::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: rotate(45deg);
        transition: all 0.6s ease;
    }
    
    .testimonial-card:hover .testimonial-avatar::before {
        animation: shimmer 1.5s ease-in-out;
    }
    
    @keyframes shimmer {
        0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }
    
    .testimonial-info strong {
        color: var(--primary-blue);
        font-size: 18px;
        display: block;
        margin-bottom: 8px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    
    .testimonial-info span {
        color: var(--accent-orange);
        font-size: 15px;
        font-weight: 600;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* 10. DISCLAIMER SECTION */
.disclaimer-section-final { padding: 90px 0; }
.disclaimer-card-final { display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: center; padding: 30px; border-radius: 20px; max-width: 1000px; margin: 0 auto; color: var(--white); background: linear-gradient(115deg, var(--primary-blue) 55%, #a13f1c); background-size: 150% 150%; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 20px 50px -20px rgba(22, 43, 71, 0.5); opacity: 0; transform: translateY(30px); transition: all 0.5s ease; }
.disclaimer-card-final:hover { transform: translateY(-5px); box-shadow: 0 25px 50px -20px rgba(242, 84, 29, 0.4); background-position: 100% 50%; }
.disclaimer-section-final.in-view .disclaimer-card-final { opacity: 1; transform: translateY(0); }
.disclaimer-visual { text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.2); padding-right: 40px; }
.disclaimer-icon-final { width: 80px; height: 80px; background-color: rgba(255, 255, 255, 0.1); border: 2px solid var(--accent-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; }
.disclaimer-icon-final svg { stroke: var(--accent-orange); }
.disclaimer-visual h2 { font-size: 1.8rem; font-weight: 700; color: var(--white); }
.disclaimer-content-final { padding-top: 20px; padding-bottom: 20px; }
.disclaimer-content-final p { font-size: 1rem; line-height: 1.7; color: var(--text-color-light); margin-bottom: 25px; }
.disclaimer-content-final p a { color: var(--accent-orange); font-weight: 600; text-decoration: underline; transition: color 0.3s ease; }
.disclaimer-content-final p a:hover { color: var(--white); }
.disclaimer-content-final hr { border: 0; height: 1px; background-color: rgba(255, 255, 255, 0.2); margin-bottom: 25px; }
.company-info { display: flex; flex-wrap: wrap; gap: 25px; font-size: 0.95rem; color: var(--text-color-light); }
.company-info span strong { color: var(--white); }

/* 11. INFINITE SCROLLER DESTINATIONS SECTION */
.destinations-section { padding: 90px 0; background-color: var(--white); }
.scroller-container { max-width: 100%; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); }
.scroller-track { display: flex; gap: 20px; width: fit-content; animation: scroll 40s linear infinite; }
.scroller-container:hover .scroller-track { animation-play-state: paused; }
.scroller-item { display: flex; align-items: center; gap: 15px; padding: 15px 25px; background-color: var(--white); border: 2px solid #e9ecef; border-radius: 50px; box-shadow: 0 5px 15px -5px rgba(0,0,0,0.05); white-space: nowrap; transition: all 0.3s ease; }
.scroller-item:hover { transform: scale(1.05); border-color: var(--accent-orange); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }
.scroller-item img { width: 32px; height: 32px; transition: transform 0.3s ease; }
.scroller-item:hover img { transform: scale(1.1); }
.scroller-item span { font-size: 1.1rem; font-weight: 600; color: var(--primary-blue); }
.scroller-item svg { stroke: #ccc; transition: stroke 0.3s ease; fill: none; stroke-width: 2px; stroke-linecap: round; stroke-linejoin: round; }
.scroller-item:hover svg { stroke: var(--accent-orange); }

/* 10. ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes bounceIn { 
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes pulse { 
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
@keyframes float { 
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Enhanced Hero Animations */
.hero-content h1, .hero-content p, .hero-features, .trust-elements, .hero-image-wrapper { opacity: 0; animation: fadeInUp 0.8s ease-out forwards; }
.hero-content h1 { animation-delay: 0.2s; } 
.hero-content p { animation-delay: 0.4s; } 
.hero-features { animation-delay: 0.6s; } 
.trust-elements { animation-delay: 0.8s; } 
.hero-image-wrapper { animation-delay: 0.5s; animation-name: scaleIn; }

/* Floating animation for hero image */
.hero-image-wrapper img { animation: float 3s ease-in-out infinite; animation-delay: 1s; }

/* CTA Button Pulse Animation */
.cta-button-large { animation: pulse 2s infinite; animation-delay: 1.5s; }

/* Visa Cards Hover Animations */
.visa-card { transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.visa-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 25px 50px -15px rgba(22, 43, 71, 0.2); }

/* Enhanced Section Animations */
.section-header h2 { opacity: 0; animation: fadeInDown 0.8s ease-out forwards; }
.section-header p { opacity: 0; animation: fadeInUp 0.8s ease-out forwards; animation-delay: 0.2s; }

/* Service Cards Staggered Animation - RESTORED WITH VISIBILITY FIX */
.visa-card { 
    opacity: 1 !important; 
    transform: translateY(0) !important; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

/* Visa cards animations */
.services-section.in-view .visa-cards-grid {
    opacity: 1;
    transform: translateY(0);
}

.services-section.in-view .visa-card:nth-child(1) {
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.services-section.in-view .visa-card:nth-child(2) {
    animation: bounceInUp 1s ease-out forwards;
    animation-delay: 0.4s;
}

.services-section.in-view .visa-card:nth-child(3) {
    animation: slideInRight 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(-20px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.9) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Scroller Enhanced Animation */
.scroller-item { transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.scroller-item:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 15px 30px -10px rgba(242, 84, 29, 0.3); }

@keyframes slideInLeft { from { transform: translateX(-100px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideInRight { from { transform: translateX(100px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.why-us-section:not(.in-view) .comparison-card { opacity: 0; }
.why-us-section.in-view .card-pain { animation: slideInLeft 0.8s ease-out forwards; }
.why-us-section.in-view .card-gain { animation: slideInRight 0.8s ease-out forwards; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 12. FAQ & CONTACT SECTION (FINAL) */
/* FAQ & Contact Section - Improved and Compact */
.faq-contact-section { 
    padding: 40px 0; 
    background-color: var(--primary-blue); 
    background-image: radial-gradient(circle at 20% 25%, rgba(242, 84, 29, 0.15) 0%, transparent 40%); 
    background-size: 150% 150%; 
    background-position: 50% 50%; 
    transition: background-position 0.8s ease-out, opacity 0.8s ease-out, transform 0.8s ease-out; 
    opacity: 0; 
    transform: translateY(30px); 
}
.faq-contact-section:hover { background-position: 0% 0%; }
.faq-contact-section.in-view { opacity: 1; transform: translateY(0); }
.faq-contact-grid { 
    display: grid; 
    grid-template-columns: 1.3fr 0.7fr; 
    gap: 40px; 
    align-items: start; 
}
.faq-header-title { 
    color: var(--white) !important; 
    font-size: 1.9rem !important; 
    margin-bottom: 15px !important; 
}
.faq-header-title::after { left: 0 !important; transform: translateX(0) !important; }
.faq-column .section-header { 
    margin-bottom: 25px !important; 
}
.faq-column .section-header p { 
    color: var(--text-color-light); 
    max-width: 100%; 
    font-size: 0.9rem; 
    margin-bottom: 0;
}
.accordion-container { 
    gap: 12px; 
}
.accordion-item.faq-dark { 
    background-color: rgba(255, 255, 255, 0.02); 
    border: 1px solid rgba(242, 84, 29, 0.3); 
    border-radius: 10px; 
    transition: all 0.3s ease; 
    backdrop-filter: blur(5px); 
}
.accordion-item.faq-dark .accordion-header { 
    padding: 12px 18px; 
}
.accordion-item.faq-dark .accordion-header span { 
    color: var(--white); 
    font-weight: 500; 
    font-size: 1rem; 
}
.accordion-item.faq-dark .accordion-icon { 
    stroke: var(--accent-orange); 
    width: 20px; 
    height: 20px;
}
.accordion-item.faq-dark:hover { 
    border-color: var(--accent-orange); 
    background-color: rgba(242, 84, 29, 0.08); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(242, 84, 29, 0.15);
}
.accordion-item.faq-dark.active { 
    border-color: var(--accent-orange); 
    background-color: rgba(242, 84, 29, 0.1);
    box-shadow: 0 8px 30px rgba(242, 84, 29, 0.25); 
}
.accordion-item.faq-dark.active .accordion-header span { 
    color: var(--accent-orange); 
    font-weight: 600; 
}
.accordion-item.faq-dark.active .accordion-icon { 
    stroke: var(--accent-orange); 
}
.accordion-item.faq-dark .accordion-content-inner { 
    border-top: 1px solid rgba(242, 84, 29, 0.2); 
    padding: 15px 18px 18px 18px; 
}
.accordion-item.faq-dark .accordion-content p { 
    color: rgba(255, 255, 255, 0.85); 
    line-height: 1.6; 
    margin: 0; 
    font-size: 0.9rem; 
}
.whatsapp-column { 
    position: sticky; 
    top: 100px; 
}
.whatsapp-card { 
    background: linear-gradient(135deg, 
        rgba(242, 84, 29, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(242, 84, 29, 0.05) 100%
    ); 
    border-radius: 16px; 
    padding: 28px; 
    text-align: center; 
    border: 2px solid rgba(242, 84, 29, 0.4); 
    transition: all 0.4s ease; 
    backdrop-filter: blur(10px); 
    position: relative;
    overflow: hidden;
}
.whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/customer-support.webp') center/cover;
    opacity: 0.15;
    z-index: -1;
    filter: blur(1px);
}
.whatsapp-card:hover { 
    transform: translateY(-8px) scale(1.02); 
    box-shadow: 0 25px 60px rgba(242, 84, 29, 0.3); 
    border-color: var(--accent-orange);
}
.whatsapp-card .whatsapp-icon { 
    stroke: var(--accent-orange); 
    margin-bottom: 12px; 
    width: 56px; 
    height: 56px;
}
.whatsapp-card h3 { 
    font-size: 1.3rem; 
    font-weight: 700; 
    color: var(--white); 
    margin-bottom: 12px; 
}
.whatsapp-card p { 
    color: rgba(255, 255, 255, 0.85); 
    line-height: 1.6; 
    margin-bottom: 20px; 
    font-size: 0.9rem; 
}
.whatsapp-button { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    background: linear-gradient(135deg, #25D366 0%, #1ebe58 100%); 
    color: var(--white); 
    padding: 10px 24px; 
    border-radius: 50px; 
    font-weight: 600; 
    font-size: 0.95rem; 
    transition: all 0.3s ease; 
    border: 2px solid #25D366; 
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}
.whatsapp-button:hover { 
    background: linear-gradient(135deg, #1ebe58 0%, #25D366 100%);
    transform: translateY(-3px) scale(1.05); 
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); 
}

/* 13. FOOTER SECTION */
.main-footer { 
    padding: 30px 0 0; 
    background: linear-gradient(135deg, #0a1628 0%, #16213e 30%, #1a2b4a 70%, #0f3460 100%); 
    color: var(--text-color-light); 
    border-top: 2px solid var(--accent-orange); 
    opacity: 0; 
    transform: translateY(40px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
    position: relative; 
    overflow: hidden; 
}

.main-footer::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    height: 1px; 
    background: linear-gradient(90deg, transparent, var(--accent-orange), #ffd700, var(--accent-orange), transparent); 
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.main-footer.in-view { opacity: 1; transform: translateY(0); }

.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 25px; 
    padding-bottom: 20px; 
    border-bottom: 1px solid rgba(242, 84, 29, 0.3); 
    margin-bottom: 15px;
}

.footer-col { 
    opacity: 0; 
    transform: translateY(20px); 
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.footer-col:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(242, 84, 29, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 84, 29, 0.1);
}

.footer-col.animated { animation: fadeInUp 0.6s ease-out forwards; }

.footer-col h4 { 
    font-size: 1rem; 
    color: var(--white); 
    margin-bottom: 12px; 
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), #ffd700);
    border-radius: 1px;
}

.footer-logo { 
    max-height: 40px; 
    margin-bottom: 10px; 
    filter: brightness(1.1) drop-shadow(0 0 5px rgba(242, 84, 29, 0.2)); 
}

.footer-social-icons { 
    display: flex; 
    gap: 10px; 
    margin-top: 10px; 
}

.footer-social-icons a { 
    color: #a0a0a0; 
    transition: all 0.3s ease; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 35px; 
    height: 35px; 
    background: linear-gradient(135deg, rgba(242, 84, 29, 0.1), rgba(255, 215, 0, 0.05)); 
    border-radius: 50%; 
    border: 1px solid rgba(242, 84, 29, 0.2); 
    position: relative;
    overflow: hidden;
}

.footer-social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-social-icons a:hover::before {
    left: 100%;
}

.footer-social-icons a:hover { 
    color: var(--white); 
    transform: translateY(-2px) scale(1.05); 
    background: linear-gradient(135deg, var(--accent-orange), #ffd700); 
    box-shadow: 0 4px 15px rgba(242, 84, 29, 0.3); 
    border-color: #ffd700;
}

.footer-col ul li { 
    margin-bottom: 6px; 
}

.footer-col ul a { 
    color: #b0b0b0; 
    transition: all 0.3s ease; 
    font-size: 0.85rem; 
    display: flex;
    align-items: center;
    padding: 4px 0;
    border-radius: 3px;
    position: relative;
}

.footer-col ul a::before {
    content: '▶';
    opacity: 0;
    margin-right: 5px;
    transition: opacity 0.3s ease;
    color: var(--accent-orange);
    font-size: 0.7rem;
}

.footer-col ul a:hover::before {
    opacity: 1;
}

.footer-col ul a:hover { 
    color: var(--accent-orange); 
    padding-left: 8px; 
    text-shadow: 0 0 5px rgba(242, 84, 29, 0.3);
}

.footer-contact-item { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    padding: 5px 0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(242, 84, 29, 0.05);
    padding-left: 5px;
}

.footer-contact-item img { 
    width: 20px; 
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.footer-contact-item svg {
    color: var(--accent-orange);
    filter: drop-shadow(0 0 3px rgba(242, 84, 29, 0.3));
}

.whatsapp-phone, .footer-email {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.85rem;
}

.whatsapp-phone:hover {
    color: #25d366;
    text-shadow: 0 0 5px rgba(37, 211, 102, 0.3);
}

.footer-email:hover {
    color: var(--accent-orange);
    text-shadow: 0 0 5px rgba(242, 84, 29, 0.3);
}



.footer-bottom-content {
    flex: 1;
    text-align: center;
}

.legal-text {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    margin: 10px 0 8px;
    text-align: center;
}

.legal-text .company-name {
    background: linear-gradient(90deg, var(--accent-orange), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 0.9rem;
}

.company-address-footer {
    font-size: 0.75rem;
    color: #999;
    margin: 5px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.company-address-footer svg {
    color: var(--accent-orange);
    width: 12px;
    height: 12px;
}

.copyright {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    margin: 0;
}

.footer-payments { 
    padding: 15px 0; 
    text-align: center; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.footer-payments img { 
    max-width: 100%; 
    height: auto; 
    max-height: 30px; 
    filter: brightness(1.05) drop-shadow(0 1px 5px rgba(0, 0, 0, 0.2));
}

.footer-bottom { 
    padding: 15px 0; 
}

.footer-bottom .container { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
    flex-direction: column;
}

.footer-bottom p { 
    font-size: 0.8rem; 
    color: #888; 
    line-height: 1.4; 
    max-width: 600px; 
    text-align: center;
    margin: 0 auto;
}

.footer-bottom p strong { 
    color: #bbb; 
    font-weight: 500;
}

.cookie-button { 
    background: linear-gradient(135deg, rgba(242, 84, 29, 0.1), rgba(255, 215, 0, 0.05)); 
    border: 1px solid rgba(242, 84, 29, 0.3); 
    color: #ccc; 
    padding: 8px 15px; 
    border-radius: 15px; 
    cursor: pointer; 
    font-weight: 500; 
    transition: all 0.3s ease; 
    white-space: nowrap; 
    backdrop-filter: blur(5px);
    font-size: 0.8rem;
    margin-top: 10px;
}

.cookie-button:hover { 
    background: linear-gradient(135deg, var(--accent-orange), #ffd700); 
    color: var(--primary-blue); 
    border-color: #ffd700; 
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(242, 84, 29, 0.3);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    background: var(--white);
    color: var(--primary-blue);
    border: 1px solid rgba(22, 43, 71, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 16px;
    padding: 14px 16px;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, 10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    width: min(640px, calc(100% - 48px));
}
.cookie-banner.visible { opacity: 1; transform: translate(-50%, 0); }
.cookie-banner-content { display: flex; align-items: center; gap: 12px; }
.cookie-banner-content p { flex: 1; font-size: 0.9rem; color: var(--text-color); }
.cookie-banner-content a { color: var(--accent-orange); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-accept, .cookie-decline {
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
}
.cookie-accept { background: var(--accent-orange); color: var(--white); }
.cookie-accept:hover { filter: brightness(1.05); }
.cookie-decline { background: #f6f7f9; color: var(--primary-blue); border-color: rgba(22,43,71,0.15); }
.cookie-decline:hover { background: #eef0f4; }

@media (max-width: 480px) {
    .cookie-banner { left: 50%; bottom: 10px; padding: 12px; width: calc(100% - 20px); transform: translate(-50%, 10px); }
    .cookie-banner.visible { transform: translate(-50%, 0); }
    .cookie-banner-content { flex-direction: column; align-items: flex-start; gap: 12px; }
    .cookie-actions { width: 100%; justify-content: flex-end; }
}

/* 14. RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-image-wrapper { order: -1; margin-bottom: 30px; }
    .hero-image-wrapper img { max-width: 280px; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-features { align-items: center; }
    .trust-elements { justify-content: center; }
    .hero-section { background-attachment: scroll; min-height: 75vh; padding: 40px 0 30px 0; }
    .hero-content h1 { font-size: 2.8rem; }
    .comparison-grid { grid-template-columns: 1fr; gap: 50px; }
    .visa-cards-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; gap: 40px; }
    .visa-card.featured { transform: scale(1); }
    .visa-card.featured:hover { transform: translateY(-8px); }
    .visa-card h3 { min-height: auto; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-image-wrapper { position: static; max-width: 400px; margin: 0 auto 40px auto; }
    .requirements-grid { grid-template-columns: 1fr; gap: 50px; }
    .requirements-content-section { padding-left: 0; }
    .requirements-header { text-align: center; }
    .requirements-header h2::after { left: 50%; transform: translateX(-50%); }
    .faq-contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .whatsapp-column { position: static; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}
@media (max-width: 768px) {
    /* Header and Navigation Improvements */
    .header {
        padding: 8px 0;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar {
        padding: 0 15px;
    }
    
    .logo img {
        height: 35px;
    }
    .cta-button { display: none; }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-blue) 0%, #1a2b4a 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: left 0.4s ease;
        z-index: 9999;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        margin: 0 0 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        color: var(--white);
        font-size: 1.1rem;
        font-weight: 500;
        padding: 10px 0;
        display: block;
        width: 100%;
        text-align: left;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        color: var(--accent-orange);
        background: rgba(242, 84, 29, 0.1);
        padding-left: 15px;
        transform: translateX(5px);
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
        z-index: 10000;
        position: relative;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-blue);
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--accent-orange);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--accent-orange);
    }
    
    /* Hero Section Mobile Improvements */
    .hero-section {
        padding: 20px 0 30px 0;
        min-height: auto;
        background-attachment: scroll;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-content p {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 25px;
        text-align: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content .hero-lead {
        font-size: 0.98rem;
        line-height: 1.5;
        margin-bottom: 14px;
        text-align: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        padding: 9px 12px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 14px;
        backdrop-filter: blur(4px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }
    
    .hero-features {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 24px;
        align-items: center;
    }
    
    .hero-feature {
        font-size: 0.95rem;
        padding: 10px 14px;
        text-align: center;
        width: 100%;
        max-width: 360px;
    }
    
    .trust-elements {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-bottom: 0;
        position: relative;
        z-index: 50;
    }
    
    .google-review-img {
        height: 50px;
        max-width: 200px;
        position: relative;
        z-index: 100;
    }
    
    .cta-button-large {
        padding: 15px 35px;
        font-size: 1.05rem;
        width: auto;
        max-width: 280px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-image-wrapper img {
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
    
    /* Content Sections Mobile Improvements */
    .section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        text-align: center;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Process Steps Mobile */
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .process-step {
        text-align: center;
        padding: 25px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto 15px;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .process-step p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .minimalist-pathway {
        display: none;
    }
    
    /* Visa Cards Mobile */
    .visa-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }
    
    .visa-card {
        padding: 20px;
        margin: 0;
        transform: none !important;
    }
    
    .visa-card.featured {
        transform: none !important;
        border-width: 2px;
    }
    
    .visa-card h3 {
        font-size: 1.2rem;
        min-height: auto;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .visa-price {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .visa-features {
        text-align: left;
    }
    
    .visa-features li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    /* Requirements Section Mobile */
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .requirements-content-section {
        padding-left: 0;
        order: 2;
    }
    
    .requirements-image-section {
        order: 1;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .requirements-header {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .requirements-header h2 {
        font-size: 1.8rem;
    }
    
    .requirements-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .visa-toggle-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin: 0 auto 25px;
        padding: 6px;
        max-width: 100%;
    }
    
    .toggle-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .visa-cards-container {
        max-width: 100%;
        margin: 0;
        padding: 0;
        background: transparent;
    }
    
    .visa-card {
        min-height: auto;
        padding: 20px;
        margin: 0;
        border-radius: 12px;
    }
    
    .visa-card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .visa-info {
        order: 2;
        text-align: center;
    }
    
    .visa-price {
        order: 1;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .visa-icon {
        order: 3;
        margin: 0 auto;
    }
    
    .requirements-section-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .requirements-section-card h4 {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .requirements-list li {
        font-size: 0.9rem;
        margin-bottom: 12px;
        line-height: 1.6;
    }
    
    /* FAQ Section Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-image-wrapper {
        position: static;
        max-width: 300px;
        margin: 0 auto 30px;
        order: 1;
    }
    
    .faq-content {
        order: 2;
    }
    
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        padding: 15px;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Contact Section Mobile */
    .faq-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whatsapp-column {
        position: static;
        order: 2;
    }
    
    .whatsapp-card {
        padding: 25px 20px;
        text-align: center;
        margin: 0;
    }
    
    .whatsapp-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .whatsapp-card p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .whatsapp-button {
        padding: 12px 25px;
        font-size: 1rem;
        width: fit-content;
        margin: 0 auto;
    }
    
    /* Disclaimer Section Mobile */
    .disclaimer-card-final {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .disclaimer-visual {
        border-right: none;
        padding-right: 0;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 20px;
        order: 1;
    }
    
    .disclaimer-content {
        order: 2;
        text-align: center;
    }
    
    .disclaimer-content h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .disclaimer-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-col {
        padding: 20px 15px;
        text-align: center;
    }
    
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social-icons {
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
    }
    
    .footer-contact-item {
        justify-content: center;
        text-align: center;
        padding: 8px 0;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 20px;
    }
    
    .main-footer {
        padding: 30px 0 0;
    }
    
    .legal-text,
    .company-address-footer,
    .copyright {
        text-align: center;
        max-width: 100%;
    }
    
    .cookie-button {
        margin: 15px auto 0;
        display: block;
        width: fit-content;
    }
}
@media (max-width: 576px) {
    /* Extra Small Mobile Devices */
    .container {
        padding: 0 15px;
    }
    
    /* Header Ultra Mobile */
    .header {
        padding: 6px 0;
    }
    
    .navbar {
        padding: 0 10px;
    }
    
    .logo img {
        height: 32px;
    }
    
    .nav-links {
        width: 90%;
        padding: 70px 20px 20px;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 8px 0;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    /* Hero Ultra Mobile */
    .hero-section {
        padding: 15px 0 35px 0;
        min-height: 90vh;
    }
    
    .hero-content h1 {
        font-size: 1.9rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 0.5rem;
        margin-bottom: 20px;
        max-width: 95%;
    }

    .hero-content .hero-lead {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 12px;
        padding: 8px 12px;
        max-width: 95%;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 14px;
        backdrop-filter: blur(4px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }
    
    .hero-features {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .hero-feature {
        font-size: 0.9rem;
        padding: 10px 12px;
        width: 100%;
        max-width: 90%;
    }
    
    .trust-elements {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        position: relative;
        z-index: 50;
    }
    
    .google-review-img {
        height: 40px;
        max-width: 160px;
        position: relative;
        z-index: 100;
    }
    
    .cta-button-large {
        padding: 12px 26px;
        font-size: 0.95rem;
        max-width: none;
    }
    
    /* Content Ultra Mobile */
    .section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    /* Process Steps Ultra Mobile */
    .process-steps-grid {
        gap: 25px;
        max-width: 350px;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .process-step h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .process-step p {
        font-size: 0.85rem;
    }
    
    /* Visa Cards Ultra Mobile */
    .visa-card {
        padding: 15px;
        border-radius: 10px;
    }
    
    .visa-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .visa-price .price-amount {
        font-size: 1.6rem;
    }
    
    .visa-price .price-label {
        font-size: 0.85rem;
    }
    
    .visa-features li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    /* Requirements Ultra Mobile */
    .requirements-header h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .visa-toggle-buttons {
        gap: 8px;
        padding: 4px;
        flex-direction: column;
        width: 100%;
    }
    
    .toggle-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
        min-width: auto;
        width: 100%;
    }
    
    .visa-card {
        padding: 15px;
    }
    
    .visa-card-header {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .visa-icon {
        width: 45px;
        height: 45px;
    }
    
    .requirements-section-card {
        padding: 15px;
        margin-bottom: 12px;
    }
    
    .requirements-section-card h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .requirements-list li {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    /* FAQ Ultra Mobile */
    .faq-image-wrapper {
        max-width: 250px;
        margin-bottom: 25px;
    }
    
    .faq-question {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    /* Contact Ultra Mobile */
    .whatsapp-card {
        padding: 20px 15px;
    }
    
    .whatsapp-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .whatsapp-card p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .whatsapp-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    /* Disclaimer Ultra Mobile */
    .disclaimer-card-final {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .disclaimer-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .disclaimer-content p {
        font-size: 0.85rem;
    }
    
    /* Footer Ultra Mobile */
    .footer-col {
        padding: 15px 10px;
    }
    
    .footer-col h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .footer-social-icons {
        gap: 12px;
    }
    
    .footer-social-icons a {
        width: 32px;
        height: 32px;
    }
    
    .legal-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .company-address-footer {
        font-size: 0.7rem;
        flex-direction: column;
        gap: 3px;
    }
    
    .copyright {
        font-size: 0.7rem;
    }
    
    .cookie-button {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-top: 12px;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .visa-toggle-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .toggle-btn {
        padding: 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .cta-button-large {
        padding: 10px 25px;
        font-size: 0.95rem;
        max-width: 220px;
    }
}

/* Global Alert Bar */
.global-alert-bar {
  position: relative;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: #fff7bf;
  color: #222;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
  border-bottom: 1px solid #e6e6e6;
  text-align: center;
  z-index: 900; /* فوق الهيرو وأقل من الهيدر */
  display: block;
  white-space: normal;
  word-wrap: break-word;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.global-alert-bar a {
  color: #0a66c2;
  font-weight: 600;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .global-alert-bar {
    font-size: 13px;
    padding: 12px 14px;
    display: block !important;
  }
}
@media (max-width: 480px) {
  .global-alert-bar {
    font-size: 12px;
    padding: 10px 12px;
  }
}

/* Footer private note */
.footer-note-private {
  font-size: 13px;
  margin-top: 8px;
  color: #555;
}

/* Pricing transparency table */
.pricing-transparency {
  border: 1px solid #ddd;
  background: #fafafa;
  margin: 16px 0;
  border-radius: 8px;
  overflow: hidden;
}
.pricing-transparency table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-transparency th,
.pricing-transparency td {
  padding: 12px 16px;
  border-bottom: 1px solid #e9e9e9;
  text-align: left;
}
.pricing-transparency tr:last-child td {
  font-weight: 700;
  background: #fff;
}
@media (max-width: 480px) {
  .pricing-transparency th,
  .pricing-transparency td {
    padding: 10px 12px;
    font-size: 14px;
  }
}