/* ================================
   Travel to Schengen - Main Stylesheet
   Version: 1.0.0
   ================================ */

/* CSS Variables & Root Styles */
:root {
    --primary-color: #051c58;
    --secondary-color: #fc8010;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff9a3c 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(252, 128, 16, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff9a3c 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 128, 16, 0.4);
    color: var(--white);
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: var(--white);
    margin-right: 20px;
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.top-bar i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.top-bar-right {
    text-align: right;
}

/* Mobile Top Bar */
.mobile-top-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.mobile-logo img {
    max-height: 50px;
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-brand img {
    max-height: 60px;
}

.navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 20px;
    margin: 0 5px;
    position: relative;
    font-size: 15px;
}

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

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

.navbar-nav .nav-link:hover::after {
    width: calc(100% - 40px);
}

.mobile-call-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
}

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

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

@supports (-webkit-touch-callout: none) {
    /* iOS Safari specific - handle dynamic viewport */
    .hero-banner {
        height: -webkit-fill-available;
    }
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 28, 88, 0.88) 0%, rgba(5, 28, 88, 0.75) 100%);
    z-index: 1;
}

/* Static Banner Content */
.banner-static-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
}

.banner-static-content > .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    pointer-events: all;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Banner Text Section */
.banner-text-section {
    margin-bottom: 40px;
    text-align: center;
}

.banner-text-section .row {
    justify-content: center;
}

.banner-text-section h1,
.banner-text-section .banner-heading {
    color: var(--white);
    font-size: clamp(1.5rem, 4vw + 1rem, 3.2rem);
    line-height: 1.25;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
    max-width: 100%;
}

.banner-text-section p,
.banner-text-section p.lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.2rem);
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    line-height: 1.6;
    max-width: 100%;
}

/* Inline Features */
.banner-features-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 30px);
    margin-top: 30px;
    animation: fadeInUp 1.2s ease;
}

.banner-features-inline .feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.banner-features-inline .feature-item i {
    color: var(--secondary-color);
    font-size: clamp(18px, 1.5vw + 12px, 22px);
    flex-shrink: 0;
}

.banner-features-inline .feature-item span {
    color: var(--white);
    font-size: clamp(13px, 1vw + 10px, 16px);
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Banner Form Section */
.banner-form-section {
    margin-top: 50px;
    animation: fadeInUp 1.4s ease;
    display: flex;
    justify-content: center;
}

.banner-form-section .horizontal-form-wrapper {
    width: 100%;
    max-width: 100%;
}

.horizontal-inquiry-form {
    width: 100%;
}

.horizontal-form-wrapper {
    background: rgba(255, 255, 255, 0.98);
    padding: 35px 45px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(252, 128, 16, 0.2);
}

.form-header-inline {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.form-header-inline h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
}

.form-header-inline h3 i {
    color: var(--secondary-color);
}

.form-header-inline p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 15px;
}

/* Horizontal Form Layout */
.horizontal-inquiry-form .form-row-1,
.horizontal-inquiry-form .form-row-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.horizontal-inquiry-form .form-row-other {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.horizontal-inquiry-form .form-field {
    position: relative;
}

.horizontal-inquiry-form .form-control {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
    width: 100%;
}

.horizontal-inquiry-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(252, 128, 16, 0.15);
    outline: none;
}

.horizontal-inquiry-form .form-text {
    color: var(--text-light);
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.horizontal-inquiry-form .form-field-submit {
    display: flex;
    align-items: center;
}

.horizontal-inquiry-form .btn-submit-inquiry {
    width: 100%;
    height: 52px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
    min-width: 140px;
}

.horizontal-inquiry-form .btn-submit-inquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 128, 16, 0.4);
}

/* Old Banner Styles (Keep for compatibility) */
.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.banner-text h1 {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.banner-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    animation: fadeInUp 1.2s ease;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-right: 12px;
}

.feature-item span {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

/* Inquiry Form (Old - Keep for other pages) */
.inquiry-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    animation: fadeInRight 1s ease;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

.inquiry-form .form-control {
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
}

.inquiry-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(252, 128, 16, 0.15);
}

.inquiry-form .form-text {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 5px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(252, 128, 16, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 12;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--secondary-color);
}

.swiper-pagination {
    z-index: 12;
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
}

/* Features Widget Section */
.features-widget {
    background: var(--light-bg);
}

.feature-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

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

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

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-box p {
    margin-bottom: 0;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-image {
    position: relative;
    margin-bottom: 30px;
}

.about-image img {
    border-radius: 15px;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.about-badge i {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.about-badge span {
    font-weight: 700;
    font-size: 14px;
}

.about-content .lead {
    color: var(--text-dark);
    font-weight: 500;
}

.about-feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.about-feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.about-feature-item i {
    color: var(--secondary-color);
    font-size: 24px;
    margin-right: 20px;
    margin-top: 5px;
}

.about-feature-item h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.about-feature-item p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Services Overview Section */
.services-overview {
    background: var(--light-bg);
    padding: 80px 0;
}

.service-overview-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-left: 5px solid var(--secondary-color);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #0a2d7a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.service-overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Visa Packages Section */
.visa-packages {
    padding: 80px 0;
}

.visa-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 2px solid var(--border-color);
}

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

.visa-card.specialty {
    border: 3px solid var(--secondary-color);
}

.specialty-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.visa-card-image {
    height: 200px;
    overflow: hidden;
}

.visa-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.visa-card:hover .visa-card-image img {
    transform: scale(1.1);
}

.visa-card-content {
    padding: 30px;
}

.visa-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.visa-card-content p {
    margin-bottom: 20px;
    min-height: 60px;
}

.visa-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.visa-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.visa-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 14px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), #0a2d7a);
    padding: 50px;
    border-radius: 15px;
    color: var(--white);
    text-align: center;
}

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

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
}

.why-choose-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top: 4px solid var(--secondary-color);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary-color), #ff9a3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.why-icon i {
    font-size: 40px;
    color: var(--white);
}

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

/* Content Pages */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2d7a 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.content-section {
    padding: 80px 0;
}

.content-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.content-wrapper h2 {
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.content-wrapper li {
    margin-bottom: 10px;
}

.highlight-box {
    background: var(--light-bg);
    padding: 30px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 10px;
    margin: 30px 0;
}

/* Contact Page */
.contact-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    text-align: center;
    transition: var(--transition);
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #ff9a3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: var(--white);
}

.contact-info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    margin-top: 80px;
}

.footer-main {
    padding: 60px 0 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.social-links i {
    color: var(--white);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

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

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

/* Modal */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), #0a2d7a);
    color: var(--white);
    border-radius: 15px 15px 0 0;
    padding: 20px 30px;
}

.modal-title {
    color: var(--white);
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
}

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

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

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-text h1 {
        font-size: 2.2rem;
    }
    
    .banner-text-section h1 {
        margin-bottom: 15px;
    }
    
    .banner-text-section p {
        margin-bottom: 20px;
    }
    
    .banner-features-inline {
        gap: 15px;
        margin-top: 20px;
    }
    
    .banner-features-inline .feature-item span {
        font-size: 14px;
    }
    
    .horizontal-inquiry-form .form-row-1,
    .horizontal-inquiry-form .form-row-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .horizontal-inquiry-form .form-field-submit {
        grid-column: 1 / -1;
    }
    
    .horizontal-form-wrapper {
        padding: 25px 20px;
    }
    
    .banner-text-section {
        margin-bottom: 30px;
    }
    
    .banner-form-section {
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-banner {
        min-height: 100vh;
    }
    
    .banner-static-content > .container {
        max-width: 720px;
        margin: 0 auto;
    }
    
    .banner-content {
        position: relative;
        padding: 60px 0;
    }
    
    .inquiry-form-wrapper {
        margin-top: 30px;
    }
    
    .navbar-nav {
        padding: 20px 0;
    }
    
    .content-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .banner-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-banner {
        min-height: 100vh;
    }
    
    .banner-static-content {
        align-items: center;
        padding: 20px 0;
    }
    
    .banner-text-section {
        margin-bottom: 25px;
    }
    
    /* Hide paragraph and features on mobile - keep heading only */
    .banner-text-section p,
    .banner-features-inline {
        display: none;
    }
    
    .banner-text-section h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .banner-form-section {
        margin-top: 0; /* Remove top margin when text is hidden */
    }
    
    
    .horizontal-inquiry-form .form-row-1,
    .horizontal-inquiry-form .form-row-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    
    .horizontal-form-wrapper {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .form-header-inline {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .form-header-inline h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .form-header-inline p {
        font-size: 13px;
    }
    
    .horizontal-inquiry-form .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .horizontal-inquiry-form .btn-submit-inquiry {
        height: 48px;
        font-size: 14px;
    }
    
    .horizontal-inquiry-form .form-row-1,
    .horizontal-inquiry-form .form-row-2 {
        margin-bottom: 12px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .inquiry-form-wrapper {
        padding: 30px 20px;
    }
    
    .feature-box,
    .service-overview-card {
        padding: 30px 20px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .content-wrapper {
        padding: 25px 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .banner-text h1 {
        font-size: 1.5rem;
    }
    
    .banner-text p {
        font-size: 0.95rem;
    }
    
    .hero-banner {
        min-height: 100vh;
    }
    
    .banner-static-content {
        padding: 20px 0;
    }
    
    .banner-static-content > .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .banner-text-section {
        margin-bottom: 20px;
    }
    
    .banner-text-section h1 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .banner-text-section p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .banner-features-inline {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 12px;
        justify-content: center;
    }
    
    .banner-features-inline .feature-item {
        font-size: 12px;
        flex-basis: calc(50% - 8px);
    }
    
    .banner-features-inline .feature-item i {
        font-size: 16px;
    }
    
    .banner-features-inline .feature-item span {
        font-size: 12px;
    }
    
    .banner-form-section {
        margin-top: 0; /* Remove top margin when text is hidden */
    }
    
    .horizontal-form-wrapper {
        padding: 18px 12px;
        border-radius: 12px;
    }
    
    .form-header-inline {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .form-header-inline h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .form-header-inline h3 i {
        font-size: 1rem;
    }
    
    .form-header-inline p {
        font-size: 12px;
    }
    
    .horizontal-inquiry-form .form-control {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    .horizontal-inquiry-form .form-text {
        font-size: 11px;
    }
    
    .horizontal-inquiry-form .btn-submit-inquiry {
        height: 44px;
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .horizontal-inquiry-form .form-row-1,
    .horizontal-inquiry-form .form-row-2 {
        margin-bottom: 10px;
    }
    
    .visa-card-content {
        padding: 20px;
    }
    
    .specialty-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    /* Hide navigation arrows on small screens to reduce clutter */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
    /* Keep pagination but make it less prominent */
    .swiper-pagination {
        bottom: 10px;
    }
    
    .swiper-pagination-bullet {
        opacity: 0.6;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    
    .banner-text-section h1 {
        font-size: 1.2rem;
    }
    
    .banner-text-section p {
        font-size: 0.8rem;
    }
    
    .banner-features-inline .feature-item span {
        font-size: 11px;
    }
    
    .horizontal-form-wrapper {
        padding: 15px 10px;
    }
    
    .form-header-inline h3 {
        font-size: 1rem;
    }
    
    .horizontal-inquiry-form .form-control {
        padding: 9px 10px;
        font-size: 12px;
    }
    
    .horizontal-inquiry-form .btn-submit-inquiry {
        height: 42px;
        font-size: 12px;
    }
}

/* Laptop / Medium Desktop (1024px - 1400px) - e.g. 1280px */
@media (min-width: 1024px) and (max-width: 1400px) {
    .banner-static-content > .container {
        max-width: 960px;
        padding: 15px 24px;
    }
    
    .banner-text-section {
        margin-bottom: 20px;
    }
    
    .banner-text-section h1 {
        font-size: clamp(1.75rem, 2vw + 0.75rem, 2.25rem);
        margin-bottom: 15px;
    }
    
    .banner-text-section p {
        font-size: clamp(0.95rem, 1vw + 0.4rem, 1.05rem);
        margin-bottom: 18px;
    }
    
    /* Hide features on laptop and smaller */
    .banner-features-inline {
        display: none;
    }
    
    .banner-form-section {
        margin-top: 25px;
    }
    
    .horizontal-form-wrapper {
        padding: 25px 35px;
    }
}

/* Tablet Landscape / Laptop - hide features */
@media (max-width: 1024px) {
    .banner-features-inline {
        display: none;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 1024px) {
    .horizontal-inquiry-form .form-row-1,
    .horizontal-inquiry-form .form-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .horizontal-inquiry-form .form-field-submit {
        grid-column: 1 / -1;
    }
    
    .banner-static-content > .container {
        max-width: 720px;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .banner-text-section h1 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }
    
    .banner-text-section p {
        font-size: 1.05rem;
    }
    
    .banner-static-content {
        padding: 50px 0;
    }
}

/* Large Desktop - ensure content doesn't stretch too wide */
@media (min-width: 1400px) {
    .banner-static-content > .container {
        max-width: 1140px;
    }
}

/* Medium and Large screens - form full width, professional layout */
@media (min-width: 768px) {
    .banner-form-section .horizontal-form-wrapper {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .horizontal-inquiry-form .form-row-1 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .horizontal-inquiry-form .form-field-submit {
        grid-column: 1 / -1;
    }
}

/* Mobile Landscape Orientation */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    .hero-banner {
        min-height: 100vh;
    }
    
    .banner-static-content {
        padding: 15px 0;
        align-items: center;
    }
    
    
    .banner-text-section h1 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .banner-text-section p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .banner-features-inline {
        margin-top: 10px;
        gap: 8px;
    }
    
    .banner-features-inline .feature-item {
        font-size: 12px;
    }
    
    .banner-form-section {
        margin-top: 0;
    }
    
    .horizontal-form-wrapper {
        padding: 15px 12px;
    }
    
    .form-header-inline {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .form-header-inline h3 {
        font-size: 1.1rem;
    }
    
    .horizontal-inquiry-form .form-row-1,
    .horizontal-inquiry-form .form-row-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .horizontal-inquiry-form .form-control {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .horizontal-inquiry-form .btn-submit-inquiry {
        height: 38px;
        font-size: 12px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
    
    .swiper-pagination {
        bottom: 5px;
    }
}
