/* Avontrip - Visual Core main.css (Refined Luxury Theme) */

/* Modern Card Layouts */
.glass-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(29, 93, 165, 0.08);
    border-radius: 28px;
    box-shadow: 0 15px 35px -15px rgba(29, 93, 165, 0.08), 0 1px 3px rgba(29, 93, 165, 0.02);
    transition: var(--transition-smooth);
    padding: 35px 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1d5da5 0%, #7f3ffd 100%);
    opacity: 0;
    transition: var(--transition-fast);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    border-color: rgba(29, 93, 165, 0.15);
    box-shadow: 0 30px 60px -20px rgba(29, 93, 165, 0.15), 0 0 0 1px rgba(247, 148, 29, 0.08);
    transform: translateY(-8px);
}

/* For dark content blocks */
.glass-card-dark {
    position: relative;
    background: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    color: var(--text-white);
}

/* Header contacts & main navigation (Transparent overlay by default) */
.header-contact-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-dark); /* Solid deep navy brand color */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted-light);
}

.contact-links {
    display: flex;
    gap: 25px;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.contact-links a:hover {
    color: var(--accent-orange);
}

.contact-links svg {
    width: 14px;
    height: 14px;
    fill: var(--accent-orange);
}

.navbar {
    position: absolute;
    top: 41px; /* Floating below contact bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none;
    transition: var(--transition-smooth);
}

/* Scrolled Sticky State */
.navbar.scrolled {
    position: fixed;
    top: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(10, 28, 54, 0.05);
    padding: 12px 5%;
}

/* Logo container styled as a premium white badge to mask the solid white box background beautifully */
.logo-container {
    background: #FFFFFF;
    padding: 8px 15px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-container {
    height: 42px;
    padding: 6px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.brand-logo {
    height: 32px !important;
    width: auto;
    display: block;
    filter: none !important; /* No shadow needed now that it sits inside white badge */
    transition: var(--transition-smooth);
}

.navbar.scrolled .brand-logo {
    height: 28px !important;
}

/* Center aligned links layout */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0 auto; /* Pushes the navigation links to the absolute center of the header! */
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: 0.3px;
    padding: 8px 0;
    color: #FFFFFF; /* White on transparent hero */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-link {
    color: var(--primary-blue); /* Navy when scrolled */
    text-shadow: none; /* No shadow needed on solid white header */
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-orange) !important;
}

/* Actions wrapper (CTA button + mobile toggle) */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Nav Item Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-luxury);
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dropdown-link:hover {
    color: var(--accent-orange);
    background: rgba(255, 90, 0, 0.04);
    padding-left: 28px;
}

.cta-nav-btn {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF9F33 100%);
    color: var(--text-white) !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: none !important;
}

.cta-nav-btn:hover {
    background: linear-gradient(135deg, #FF9F33 0%, var(--accent-orange) 100%);
    box-shadow: 0 6px 20px rgba(247, 148, 29, 0.5);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle (White on Hero, Blue on Scrolled) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.8rem;
    cursor: pointer;
}

.navbar.scrolled .menu-toggle {
    color: var(--primary-blue);
}

/* Horizontal Running Text Banner (Marquee) */
.marquee-banner {
    background: var(--brand-orange);
    color: var(--primary-blue);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-bottom: 2px solid var(--primary-blue);
}

.marquee-container {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee-scroll 28s linear infinite;
    gap: 40px;
    padding-left: 20px;
}

.marquee-item {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.marquee-star {
    color: var(--primary-blue);
    font-size: 0.95rem;
}

@keyframes marquee-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Fullscreen Hero Image Slider */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    /* Premium slow cross-fade transition */
    transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-item.active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Ken Burns cinematic zoom-out showing high-definition crispness slowly */
    transform: scale(1.15) rotate(0.01deg);
    transition: transform 8s cubic-bezier(0.15, 0.85, 0.3, 1);
}

.slide-item.active .slide-image {
    transform: scale(1) rotate(0.01deg);
}

/* Slide Text Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lightened gradient to showcase original image colors and high-definition details */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 0 5%;
}

.slide-content {
    max-width: 850px;
    text-align: center;
}

/* Staggered Luxury Animations for Slide elements */
.slide-subtitle,
.slide-title,
.slide-desc,
.btn-group {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-item.active .slide-subtitle,
.slide-item.active .slide-title,
.slide-item.active .slide-desc,
.slide-item.active .btn-group {
    opacity: 1;
    transform: translateY(0);
}

.slide-item.active .slide-subtitle {
    transition-delay: 0.3s;
}

.slide-item.active .slide-title {
    transition-delay: 0.5s;
}

.slide-item.active .slide-desc {
    transition-delay: 0.7s;
}

.slide-item.active .btn-group {
    transition-delay: 0.9s;
}

.slide-subtitle {
    color: var(--accent-orange);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 4px;
    margin-bottom: 18px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 4px 30px rgba(0, 0, 0, 0.6);
}

.slide-title span {
    font-style: italic;
    color: var(--accent-orange); /* Solid brand orange for 100% legibility and no text-shadow double reflection bug */
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 4px 30px rgba(0, 0, 0, 0.6);
}

.slide-desc {
    color: var(--text-muted-light);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-luxury {
    background: var(--accent-orange);
    color: var(--text-white) !important;
    padding: 15px 34px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-orange-glow);
    border: 1px solid var(--accent-orange);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background 0.3s ease;
}

.btn-luxury:hover {
    background: var(--accent-orange-hover);
    border-color: var(--accent-orange-hover);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 25px rgba(247, 148, 29, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-white) !important;
    padding: 15px 34px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: var(--primary-blue) !important;
    border-color: #FFFFFF;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.25);
}

/* Brand Logo Image styles */
.brand-logo {
    height: 48px;
    width: auto;
    display: block;
    /* Soft white drop shadow on dark slider background to enhance visibility */
    filter: drop-shadow(0px 2px 4px rgba(255, 255, 255, 0.5));
    transition: var(--transition-smooth);
}

.navbar.scrolled .brand-logo {
    height: 42px;
    /* Remove white drop shadow when scrolled over white navbar background */
    filter: none;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #FFFFFF;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Pulse animation for WhatsApp float */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #25D366;
    border-radius: 50%;
    opacity: 0;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(10, 28, 54, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.slider-arrow-left { left: 30px; }
.slider-arrow-right { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 35px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--accent-orange);
    width: 50px;
}

/* Bento Grid Cards & Section Structure */
.section-wrapper {
    padding: 100px 5%;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.bento-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-8 { grid-column: span 8; }
.bento-col-12 { grid-column: span 12; }

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 90, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.card-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--accent-orange);
}

.card-title {
    font-family: var(--font-sans) !important;
    font-weight: 700;
    font-size: 1.4rem;
    color: #0c1f38;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
    line-height: 1.35;
}

.glass-card-dark .card-title {
    color: var(--text-white);
}

.card-desc {
    color: #64748B;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.glass-card-dark .card-desc {
    color: var(--text-muted-light);
}

.card-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 20px;
    border-top: 1px solid rgba(29, 93, 165, 0.06);
    padding-top: 20px;
}

.glass-card-dark .card-price {
    border-top-color: var(--border-dark);
}

.card-price .price-from {
    font-size: 0.68rem;
    color: #64748B;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.glass-card-dark .card-price .price-from {
    color: var(--text-muted-light);
}

.card-price .price-amt {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--accent-orange);
    font-family: var(--font-sans);
}

.card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 14px 22px;
    background: rgba(29, 93, 165, 0.03);
    border-radius: 50px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.glass-card-dark .card-action {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
}

.card-action svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-blue);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), fill 0.3s;
}

.glass-card-dark .card-action svg {
    fill: var(--text-white);
}

.glass-card:hover .card-action {
    background: linear-gradient(90deg, #1d5da5 0%, #7f3ffd 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 16px -4px rgba(127, 63, 253, 0.3);
}

.glass-card:hover .card-action svg {
    fill: #FFFFFF;
    transform: translateX(4px);
}

.glass-card-dark:hover .card-action {
    background: var(--accent-orange);
    color: var(--text-white);
}

.glass-card-dark:hover .card-action svg {
    fill: #FFFFFF;
    transform: translateX(4px);
}

/* Feature grid items styling */
.feature-badge {
    background: rgba(247, 148, 29, 0.06);
    border: 1px solid rgba(247, 148, 29, 0.15);
    color: var(--accent-orange);
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 24px;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 4px rgba(247, 148, 29, 0.02);
}

/* Inquiry Booking Form block */
.inquiry-container {
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 60px;
    background: #FFFFFF;
    box-shadow: var(--shadow-luxury);
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.inquiry-split {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 60px;
}

.inquiry-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.inquiry-info p {
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 1rem;
}

.support-contacts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.support-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 90, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--accent-orange);
}

.support-details .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.support-details .val {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.05rem;
}

/* Booking Form Elements */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    background: #F8FAFC;
    border: 1px solid rgba(10, 28, 54, 0.12);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--primary-blue);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 90, 0, 0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 500;
}

.form-checkbox input {
    margin-top: 3px;
    accent-color: var(--accent-orange);
}

.form-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.btn-form-submit {
    background: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    color: var(--text-white);
    padding: 15px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-form-submit:hover {
    background: #143563;
    border-color: #143563;
    transform: translateY(-1px);
}

.btn-whatsapp-submit {
    background: #25d366;
    border: 1px solid #25d366;
    color: white;
    padding: 15px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-whatsapp-submit:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    transform: translateY(-1px);
}

.btn-whatsapp-submit svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Modal overlay code */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 28, 54, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 50px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-luxury);
    transform: translateY(20px);
    transition: transform 0.4s;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.modal-icon svg {
    width: 32px;
    height: 32px;
    fill: #25d366;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.modal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.7;
}
/* Footer layout rules */
.footer {
    background: var(--primary-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 5% 15px;
    color: var(--text-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.footer-col h4 {
    color: var(--text-white);
    font-size: 1.05rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-col p {
    color: var(--text-muted-light);
    font-size: 0.88rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.footer-links a {
    color: var(--text-muted-light);
    font-size: 0.88rem;
}

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

.footer-payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted-light);
    letter-spacing: 0.5px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted-light);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.footer-bottom a {
    color: var(--text-muted-light);
}

.footer-bottom a:hover {
    color: var(--accent-orange);
}
/* Columns and custom layout helpers */
.services-col {
    padding-right: 20px;
}
.brand-features-col {
    padding-left: 20px;
    border-left: 1px solid var(--border-light);
}
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
}
.table-responsive table {
    width: 100%;
    border-collapse: collapse;
}
.table-responsive th,
.table-responsive td {
    padding: 10px 12px !important;
    white-space: nowrap;
}
.table-responsive th:first-child,
.table-responsive td:first-child {
    white-space: normal;
}

/* Mobile responsive rules */
@media (max-width: 1024px) {
    .bento-col-4 { grid-column: span 6; }
    .bento-col-6 { grid-column: span 6; }
    .bento-col-8 { grid-column: span 12; }
    .inquiry-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .section-wrapper {
        padding: 50px 5%;
    }
    .section-wrapper[style*="padding-top"] {
        padding-top: 85px !important; /* Fix excessive header padding on mobile inner views */
    }
    .header-contact-bar {
        display: none; /* Hide contacts bar on mobile to avoid overlap and fit header cleanly */
    }
    .navbar {
        top: 0; /* Place navbar at the absolute top of the screen */
        background: rgba(15, 37, 60, 0.85); /* Dark solid-alpha background for mobile transparent state */
        backdrop-filter: blur(10px);
        padding: 12px 5%;
    }
    .navbar.scrolled {
        background: #FFFFFF;
    }
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        padding: 30px 5%;
        border-top: 1px solid var(--border-light);
        display: none;
        box-shadow: var(--shadow-luxury);
        max-height: 80vh;
        overflow-y: auto;
        margin: 0; /* Reset desktop auto margin */
    }
    .navbar-actions .cta-nav-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-item {
        width: 100%;
        text-align: left;
    }
    .nav-link {
        color: var(--primary-blue) !important; /* Force links to be visible dark blue on mobile menu white background */
        text-shadow: none !important; /* Clear text shadow on mobile menu */
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid var(--border-light);
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    .nav-item:hover .dropdown-menu {
        display: none; /* Disable hover dropdowns on mobile */
    }
    .nav-item.active .dropdown-menu {
        display: block; /* Show dropdowns only when parent nav-item is active */
    }
    .dropdown-link {
        padding: 10px 0;
        border-bottom: 1px solid rgba(29, 93, 165, 0.05);
        color: var(--text-muted) !important;
        font-size: 0.9rem;
    }
    .dropdown-link:hover {
        padding-left: 5px;
        color: var(--accent-orange) !important;
        background: transparent;
    }
    .slide-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    .slide-title {
        font-size: 2.1rem;
    }
    .slide-desc {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    .slider-arrow {
        display: none !important; /* Hide slider arrows on mobile to prevent text overlaps */
    }
    .btn-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .btn-luxury, .btn-outline {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    .bento-col-4, .bento-col-6 { grid-column: span 12; }
    .bento-grid { gap: 20px; }
    .glass-card {
        padding: 20px; /* Reduce card padding on mobile devices for visual balance */
    }
    .section-title {
        font-size: 2.0rem; /* Rescale title on mobile */
        margin-bottom: 15px;
    }
    .inquiry-info h3, .inquiry-info h2 {
        font-size: 1.6rem; /* Rescale inquiry title */
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .inquiry-container {
        padding: 30px 20px;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .form-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .services-col {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .brand-features-col {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--border-light);
        padding-top: 40px;
    }
}

/* Premium Mockup Visa Card Styling */
.premium-visa-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(29, 93, 165, 0.08);
    border-radius: 28px;
    box-shadow: 0 15px 40px -15px rgba(29, 93, 165, 0.1), 0 0 1px rgba(29, 93, 165, 0.05);
    padding: 40px;
    margin-bottom: 40px;
    overflow: hidden;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: var(--transition-smooth);
}

.premium-visa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -25px rgba(29, 93, 165, 0.18), 0 0 0 1px rgba(247, 148, 29, 0.1);
    border-color: rgba(247, 148, 29, 0.2);
}

/* Card Header Section */
.pcard-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.pcard-header-left {
    flex: 1;
}

.pcard-gov-badge {
    background: #2F6CE5;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pcard-gov-badge svg {
    width: 12px;
    height: 12px;
    fill: #FFFFFF;
}

.pcard-title {
    font-family: var(--font-sans) !important;
    font-size: 2.2rem;
    font-weight: 800;
    color: #0c1f38;
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.8px;
}

.pcard-title span {
    color: var(--accent-orange);
}

.pcard-subtitle {
    color: #64748B;
    font-size: 1rem;
    font-weight: 500;
}

.pcard-header-right {
    position: relative;
    width: 320px;
    height: 120px;
    opacity: 0.85;
}

/* Dubai Skyline SVG Background positioning */
.pcard-skyline-svg {
    width: 100%;
    height: auto;
    max-height: 120px;
}

/* Card Body Split Grid */
.pcard-body-split {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 40px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding-top: 30px;
}

/* 2x2 Details Grid */
.pcard-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pcard-detail-box {
    background: #F8FAFC;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.006);
    transition: var(--transition-fast);
}

.pcard-detail-box:hover {
    background: #FFFFFF;
    border-color: rgba(29, 93, 165, 0.15);
    box-shadow: 0 10px 15px -3px rgba(29, 93, 165, 0.05);
}

.pcard-icon-container {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(47, 108, 229, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pcard-icon-container svg {
    width: 20px;
    height: 20px;
    fill: #2f6ce5;
}

.pcard-text-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pcard-detail-label {
    font-size: 0.72rem;
    color: #64748B;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pcard-detail-val {
    font-size: 1rem;
    font-weight: 700;
    color: #0c1f38;
}

/* Right Side Price and CTA Block */
.pcard-price-cta-block {
    border-left: 1px solid rgba(226, 232, 240, 0.8);
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.pcard-price-label {
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    width: 100%;
}

.pcard-price-label::before,
.pcard-price-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20%;
    height: 1px;
    background: rgba(226, 232, 240, 0.8);
}
.pcard-price-label::before { left: 0; }
.pcard-price-label::after { right: 0; }

.pcard-price-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #2f6ce5;
}

.pcard-price-currency {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-sans);
}

.pcard-price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--font-sans);
    line-height: 1;
    background: linear-gradient(90deg, #1d5da5 0%, #7f3ffd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pcard-all-inclusive-badge {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #166534;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pcard-all-inclusive-badge svg {
    width: 12px;
    height: 12px;
    fill: #166534;
}

.pcard-trust-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 500;
}

.pcard-avatars {
    display: flex;
    margin-right: 4px;
}

.pcard-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    background: #CBD5E1;
    margin-left: -6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.45rem;
    font-weight: 700;
    color: #0c1f38;
}
.pcard-avatar:first-child {
    margin-left: 0;
}

.pcard-cta-btn {
    width: 100%;
    max-width: 280px;
    background: var(--brand-orange);
    color: #FFFFFF !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    box-shadow: 0 8px 25px rgba(247, 148, 29, 0.25);
    cursor: pointer;
    transition: var(--transition-fast);
}

.pcard-cta-btn:hover {
    background: var(--brand-orange-hover);
    box-shadow: 0 12px 30px rgba(247, 148, 29, 0.45);
    transform: translateY(-2px);
}

.pcard-cta-btn svg {
    width: 18px;
    height: 18px;
    fill: #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 3px;
    transition: transform 0.3s;
}

.pcard-cta-btn:hover svg {
    transform: translateX(3px);
}

/* Card Bottom Values Bar */
.pcard-bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #F8FAFC;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    margin: 10px -40px -40px;
    padding: 20px 40px;
}

.pcard-bottom-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #64748B;
    border-right: 1px solid rgba(226, 232, 240, 0.8);
}
.pcard-bottom-item:last-child {
    border-right: none;
}

.pcard-bottom-icon {
    width: 16px;
    height: 16px;
    fill: #2f6ce5;
}

.pcard-bottom-text strong {
    color: #0c1f38;
    display: block;
    font-size: 0.82rem;
}

/* RESPONSIVE DESIGN FOR PREMIUM CARD */
@media (max-width: 1024px) {
    .pcard-body-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pcard-price-cta-block {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(226, 232, 240, 0.8);
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .premium-visa-card {
        padding: 24px;
        gap: 20px;
    }
    .pcard-header-split {
        flex-direction: column;
        gap: 15px;
    }
    .pcard-header-right {
        display: none; /* Hide vector art on mobile to save vertical space */
    }
    .pcard-title {
        font-size: 1.6rem;
    }
    .pcard-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pcard-bottom-bar {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 10px -24px -24px;
        padding: 20px;
    }
    .pcard-bottom-item {
        border-right: none;
        justify-content: flex-start;
    }
}

/* Premium Homepage Light Mask Card Styling */
.premium-home-card {
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid rgba(29, 93, 165, 0.08);
    border-radius: 28px;
    padding: 35px 28px 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 45px rgba(29, 93, 165, 0.06), 0 0 1px rgba(29, 93, 165, 0.1);
}

.premium-home-card:hover {
    transform: translateY(-8px);
    border-color: rgba(29, 93, 165, 0.25);
    box-shadow: 0 25px 60px rgba(29, 93, 165, 0.12);
}

/* Background image mask on the right */
.pcard-image-mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    border-radius: 120% 0 0 120% / 50% 0 0 50%;
    overflow: hidden;
}

.pcard-image-mask::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.45) 45%, transparent 100%);
    z-index: 2;
}

/* Card layout wrapper to stay above background image */
.premium-home-card .pcard-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 58%;
}

.premium-home-card .pcard-badge-gold {
    border: 1px solid rgba(29, 93, 165, 0.15);
    background: rgba(29, 93, 165, 0.04);
    color: #1D5DA5;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}

.premium-home-card .pcard-badge-gold svg {
    width: 12px;
    height: 12px;
    fill: #1D5DA5;
}

.premium-home-card .pcard-title-white {
    font-family: var(--font-sans) !important;
    font-size: 1.6rem;
    font-weight: 800;
    color: #0c1f38;
    line-height: 1.25;
    letter-spacing: -0.6px;
    margin-bottom: 6px;
}

.premium-home-card .pcard-title-white span {
    color: #F7941D;
    display: block;
}

.premium-home-card .pcard-desc-gray {
    color: #5A6A85;
    font-size: 0.86rem;
    line-height: 1.5;
}

/* Price blocks */
.premium-home-card .pcard-price-gold {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 15px;
}

.premium-home-card .pcard-price-label-gold {
    font-size: 0.62rem;
    color: #64748B;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.premium-home-card .pcard-price-display-gold {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: #F7941D;
    font-weight: 800;
}

.premium-home-card .pcard-price-currency-gold {
    font-size: 1.05rem;
}

.premium-home-card .pcard-price-amount-gold {
    font-size: 2.3rem;
    line-height: 1;
}

/* Action Button */
.pcard-action-btn-glass {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(29, 93, 165, 0.03);
    border: 1px solid rgba(29, 93, 165, 0.08);
    border-radius: 14px;
    color: #1D5DA5;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition-fast);
    margin-top: 20px;
}

.pcard-action-btn-glass .pcard-action-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(29, 93, 165, 0.15);
    background: rgba(29, 93, 165, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.pcard-action-btn-glass .pcard-action-icon-box svg {
    width: 14px;
    height: 14px;
    fill: #1D5DA5;
}

.pcard-action-btn-glass svg.arrow-gold {
    width: 16px;
    height: 16px;
    fill: #1D5DA5;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), fill 0.3s;
}

.premium-home-card:hover .pcard-action-btn-glass {
    background: #1D5DA5;
    border-color: #1D5DA5;
    color: #FFFFFF;
    box-shadow: 0 10px 20px -5px rgba(29, 93, 165, 0.3);
}

.premium-home-card:hover .pcard-action-btn-glass .pcard-action-icon-box {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
}

.premium-home-card:hover .pcard-action-btn-glass .pcard-action-icon-box svg {
    fill: #FFFFFF;
}

.premium-home-card:hover .pcard-action-btn-glass svg.arrow-gold {
    fill: #FFFFFF;
    transform: translateX(4px);
}

/* Footer value prop items */
.pcard-footer-props-bar {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid rgba(29, 93, 165, 0.06);
    margin-top: 20px;
    padding-top: 16px;
    gap: 8px;
}

.pcard-footer-prop-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pcard-footer-prop-item svg {
    width: 13px;
    height: 13px;
    fill: #1D5DA5;
    opacity: 0.85;
    flex-shrink: 0;
}

.pcard-footer-prop-text {
    display: flex;
    flex-direction: column;
    font-size: 0.62rem;
    color: #64748B;
    line-height: 1.2;
}

.pcard-footer-prop-text strong {
    color: #0c1f38;
    font-size: 0.65rem;
}


/* Responsive Overrides */
@media (max-width: 1024px) {
    .premium-home-card {
        min-height: auto;
        padding-top: 180px; /* Make room for top image banner on tablet/mobile */
    }
    .premium-home-card .pcard-content-wrapper {
        max-width: 100%;
        margin-top: 10px;
    }
    .pcard-image-mask {
        display: block; /* Ensure the image is visible on mobile/tablet */
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 160px;
        border-radius: 28px 28px 0 0;
        clip-path: none;
    }
    .pcard-image-mask::before {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 60%, #FFFFFF 100%);
    }
}
@media (max-width: 768px) {
    .premium-home-card {
        padding: 135px 16px 16px 16px; /* Lower padding-top to match smaller image banner */
    }
    .pcard-image-mask {
        height: 120px; /* Reduced banner height on mobile */
    }
    .premium-home-card .pcard-title-white {
        font-size: 1.35rem;
        margin-bottom: 4px;
    }
    .premium-home-card .pcard-content-wrapper {
        gap: 10px; /* Tighter margins between text block elements */
    }
    .premium-home-card .pcard-desc-gray {
        font-size: 0.82rem;
        line-height: 1.45;
    }
    .premium-home-card .pcard-price-gold {
        margin-top: 8px;
    }
    .premium-home-card .pcard-price-amount-gold {
        font-size: 2.05rem;
    }
    .pcard-action-btn-glass {
        margin-top: 12px;
        padding: 10px 16px;
    }
    .pcard-footer-props-bar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 4px;
        margin-top: 12px;
        padding-top: 12px;
    }
    .pcard-footer-prop-item {
        gap: 4px;
    }
    .pcard-footer-prop-text {
        font-size: 0; /* Hide subtext nodes on mobile */
    }
}

/* Service Card & Why Choose Us Pillar Card Hover Effects */
.service-row-card, .feature-row-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.service-row-card:hover {
    background: rgba(29, 93, 165, 0.04) !important;
    border-color: rgba(29, 93, 165, 0.15) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(29, 93, 165, 0.03);
}
.feature-row-card:hover {
    background: rgba(247, 148, 29, 0.04) !important;
    border-color: rgba(247, 148, 29, 0.15) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(247, 148, 29, 0.03);
}

/* FAQ Details/Summary Accordion Styling */
.faq-accordion-item {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.faq-accordion-item[open] {
    border-color: rgba(29, 93, 165, 0.2) !important;
    box-shadow: 0 12px 30px rgba(29, 93, 165, 0.04);
}
.faq-accordion-item[open] .accordion-arrow {
    transform: rotate(180deg);
    background: var(--brand-orange) !important;
    color: #FFFFFF !important;
}
.faq-accordion-item summary::-webkit-details-marker {
    display: none !important; /* Hide default iOS Safari details summary marker */
}
.faq-accordion-item summary {
    list-style: none !important; /* Hide default details summary marker */
}

/* Responsive columns border fixes on mobile */
@media (max-width: 768px) {
    .brand-features-col {
        padding-left: 0 !important;
        border-left: none !important;
        border-top: 1px solid rgba(29, 93, 165, 0.06);
        margin-top: 40px;
        padding-top: 40px;
    }
    .services-col {
        padding-right: 0 !important;
    }
}

/* Custom Premium Cards Grid for side-by-side display */
.premium-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .premium-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Force stacked layout inside premium cards when side-by-side to fit nicely */
.premium-cards-grid .premium-visa-card {
    padding: 24px !important;
    gap: 16px !important;
    margin-bottom: 0;
    height: 100%;
    border-radius: 20px !important;
}

.premium-cards-grid .pcard-subtitle {
    min-height: 3.2em;
}

.premium-cards-grid .pcard-body-split {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: auto;
}

.premium-cards-grid .pcard-gov-badge {
    margin-bottom: 12px !important;
    padding: 4px 10px !important;
    font-size: 0.68rem !important;
}

.premium-cards-grid .pcard-title {
    font-size: 1.55rem !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 6px !important;
}

.premium-cards-grid .pcard-subtitle {
    font-size: 0.82rem !important;
}

.premium-cards-grid .pcard-details-grid {
    gap: 10px !important;
}

.premium-cards-grid .pcard-detail-box {
    padding: 8px !important;
    border-radius: 8px !important;
}

.premium-cards-grid .pcard-detail-box .pcard-icon-container {
    width: 28px !important;
    height: 28px !important;
}

.premium-cards-grid .pcard-detail-box .pcard-icon-container svg {
    width: 14px !important;
    height: 14px !important;
}

.premium-cards-grid .pcard-detail-box .pcard-detail-label {
    font-size: 0.68rem !important;
}

.premium-cards-grid .pcard-detail-box .pcard-detail-val {
    font-size: 0.85rem !important;
}

.premium-cards-grid .pcard-price-cta-block {
    border-left: 1px solid rgba(226, 232, 240, 0.8);
    padding-left: 24px;
    border-top: none;
    padding-top: 0;
    gap: 10px !important;
}

.premium-cards-grid .pcard-price-label::before,
.premium-cards-grid .pcard-price-label::after {
    display: none;
}

.premium-cards-grid .pcard-price-label {
    text-align: center;
    margin-bottom: 0;
    width: auto;
}

.premium-cards-grid .pcard-price-display {
    justify-content: center !important;
    margin-bottom: 0 !important;
}

.premium-cards-grid .pcard-price-amount {
    font-size: 2.2rem !important;
}

.premium-cards-grid .pcard-all-inclusive-badge {
    font-size: 0.72rem !important;
    margin-bottom: 4px !important;
}

.premium-cards-grid .pcard-cta-btn {
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
}

/* Custom Premium Cards Grid for side-by-side display */
.premium-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 70px;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .premium-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Premium Page Background (Slightly darker slate silver background for contrast) */
.premium-page-bg {
    background: radial-gradient(circle at 50% 0%, #eef3f8 0%, #dbe3ed 100%) !important;
}

/* Minimalistic Hero Banner split flex layout */
.minimal-hero-banner {
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(29, 93, 165, 0.08);
    border-radius: 24px;
    padding: 40px 50px;
    margin: 0 auto 50px auto;
    max-width: 1060px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 15px 35px rgba(29, 93, 165, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.minimal-hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), var(--accent-orange), transparent);
}

.hero-banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-banner-image {
    flex: 0 0 320px;
    width: 320px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid #FFFFFF;
    box-shadow: 0 12px 28px rgba(29, 93, 165, 0.12);
    position: relative;
}

.hero-banner-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(247, 148, 29, 0.3);
    border-radius: 14px;
    pointer-events: none;
}

.minimal-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.minimal-hero-banner:hover .minimal-banner-img {
    transform: scale(1.05);
}

.minimal-hero-banner .section-subtitle {
    margin-bottom: 8px;
    color: var(--accent-orange) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.minimal-hero-banner .section-title {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: var(--brand-blue) !important;
    font-weight: 800;
    letter-spacing: -1px;
}

.minimal-hero-banner .section-desc {
    max-width: 700px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .minimal-hero-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }
    .hero-banner-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        height: 220px;
    }
    .minimal-hero-banner .section-title {
        font-size: 2rem;
    }
}

/* Cardless Informational Sections Styling */
.info-section {
    padding: 30px 24px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-section-title {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 5px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-section-title svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-orange);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-list li {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-list li svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-orange);
    margin-top: 4px;
    flex-shrink: 0;
}

.info-list li strong {
    color: var(--brand-blue);
    font-weight: 600;
}

/* Info Table Styling (Price List) */
.info-table-container {
    overflow-x: auto;
    margin-top: 10px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.info-table th {
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-blue);
    border-bottom: 2px solid rgba(29, 93, 165, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-table td {
    padding: 14px 16px;
    font-size: 0.92rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(29, 93, 165, 0.06);
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:hover td {
    background: rgba(29, 93, 165, 0.02);
}

/* Timeline component (Application Process) */
.timeline {
    position: relative;
    padding-left: 24px;
    border-left: 2px solid rgba(29, 93, 165, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-orange);
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.2);
    z-index: 2;
    transition: var(--transition-fast);
}

.timeline-item:hover::before {
    transform: scale(1.2);
    background: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(29, 93, 165, 0.2);
}

.timeline-step {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 2px;
    display: block;
}

.timeline-title {
    font-weight: 700;
    color: var(--brand-blue);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.timeline-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Light theme FAQ Accordion Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(29, 93, 165, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(29, 93, 165, 0.01);
}

.faq-item:hover {
    border-color: rgba(247, 148, 29, 0.25);
    box-shadow: 0 10px 25px rgba(29, 93, 165, 0.03);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    text-align: left;
    color: var(--text-dark) !important;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
    font-family: var(--font-sans);
}

.faq-question span {
    color: var(--text-dark) !important;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-orange);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 20px;
    background: rgba(29, 93, 165, 0.015);
}

.faq-answer p {
    color: var(--text-muted) !important;
    font-size: 0.92rem;
    line-height: 1.6;
    padding-bottom: 18px;
    margin: 0;
}

/* Active State */
.faq-item.active {
    background: #FFFFFF;
    border-color: rgba(247, 148, 29, 0.4);
}

.faq-item.active .faq-icon svg {
    transform: rotate(45deg);
}

/* Page content layouts */
.visa-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1060px;
    margin: 40px auto 50px auto;
}

.info-note-banner {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(29, 93, 165, 0.04);
    border: 1px solid rgba(29, 93, 165, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    max-width: 1060px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.info-note-banner svg {
    width: 20px;
    height: 20px;
    fill: var(--brand-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-note-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .visa-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    .info-note-banner {
        margin: 0 15px 30px 15px;
    }
}

/* Styling header navigation bar on sub-pages (since they have a light background, not a dark hero slider) */
body:has(.premium-page-bg) .navbar {
    background: #FFFFFF !important;
    border-bottom: 1px solid var(--border-light) !important;
    box-shadow: 0 4px 20px rgba(10, 28, 54, 0.04) !important;
}

body:has(.premium-page-bg) .navbar .nav-link {
    color: var(--primary-blue) !important;
    text-shadow: none !important;
}

body:has(.premium-page-bg) .navbar .nav-link:hover,
body:has(.premium-page-bg) .navbar .nav-link.active {
    color: var(--accent-orange) !important;
}

body:has(.premium-page-bg) .navbar .logo-container {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(29, 93, 165, 0.06);
}

body:has(.premium-page-bg) .navbar .menu-toggle {
    color: var(--primary-blue) !important;
}



