/* ==========================================================================
   AeroVisa & Travels - Premium Custom Stylesheet
   Design system: Elegant White, Warm Orange, Dark Charcoal & Soft Beige/Green
   ========================================================================== */



:root {
    --primary: #ff6b35;
    --primary-hover: #e0531f;
    --primary-rgb: 255, 107, 53;
    --dark: #1a1d20;
    --dark-rgb: 26, 29, 32;
    --light: #ffffff;
    --bg-soft: #faf9f6;
    --bg-green: #eef5f3;
    --text-main: #3a3e42;
    --text-muted: #5d646a;
    --border-color: #ebe9e4;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.3);
    --font-sans: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -5px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.08), 0 10px 10px -10px rgba(0, 0, 0, 0.04);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* Base resets & styles */
body {
    font-family: var(--font-sans);
    background-color: var(--light);
    color: var(--text-main);
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 600;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}
a:hover {
    color: var(--primary-hover);
}

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-soft);
}
::-webkit-scrollbar-thumb {
    background: #cbd3da;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* --- PREMIUM UTILITIES --- */
.bg-soft { background-color: var(--bg-soft); }
.bg-green { background-color: var(--bg-green); }
.text-primary-color { color: var(--primary) !important; }
.btn-primary-custom {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 12px 28px;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.2);
    transition: var(--transition-smooth);
}
.btn-primary-custom:hover, .btn-primary-custom:focus {
    background-color: var(--primary-hover);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary-custom {
    background-color: var(--bg-green);
    color: var(--dark);
    border: 1px solid var(--border-color);
    padding: 12px 28px;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}
.btn-secondary-custom:hover {
    background-color: var(--light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* --- DYNAMIC HEADER / NAVBAR --- */
.navbar-custom {
    padding: 18px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}
.navbar-custom.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.navbar-brand img {
    height: 80px;
    width: auto !important;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.navbar-custom.scrolled .navbar-brand img {
    height: 65px;
    max-height: 65px;
}
.nav-link-custom {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 8px 18px !important;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}
.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--primary) !important;
    background-color: var(--bg-soft);
}

/* Mobile Toggle Hamburger */
.navbar-toggler {
    border: none;
    padding: 0;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.toggler-icon {
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    display: block;
    transition: var(--transition-smooth);
    position: relative;
}
.toggler-icon::before, .toggler-icon::after {
    content: '';
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    display: block;
    position: absolute;
    transition: var(--transition-smooth);
}
.toggler-icon::before { top: -6px; }
.toggler-icon::after { top: 6px; }
.navbar-toggler[aria-expanded="true"] .toggler-icon {
    background-color: transparent;
}
.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}
.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* --- HERO BANNER & SEARCH WIDGET --- */
.hero-slider-container {
    position: relative;
    height: 80vh;
    min-height: 550px;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light);
    line-height: 1.15;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}
.hero-btns {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
}
.hero-slide.active .hero-title,
.hero-slide.active .hero-subtitle,
.hero-slide.active .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Controls */
.hero-ctrl {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 4;
    display: flex;
    gap: 12px;
}
.hero-ctrl-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.hero-ctrl-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Integrated Search Widget */
.search-widget-wrapper {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}
.search-card {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.search-tabs {
    display: flex;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border-color);
}
.search-tab-btn {
    flex: 1;
    padding: 18px 24px;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.search-tab-btn i {
    font-size: 1.15rem;
}
.search-tab-btn.active {
    background: var(--light);
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}
.search-tab-content {
    display: none;
    padding: 30px;
}
.search-tab-content.active {
    display: block;
}
.form-group-custom {
    position: relative;
    margin-bottom: 15px;
}
.form-group-custom label {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
}
.form-control-custom {
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--dark);
    background-color: var(--bg-soft);
    transition: var(--transition-smooth);
}
.form-control-custom:focus {
    border-color: var(--primary);
    background-color: var(--light);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    outline: none;
}

/* --- POPULAR VISA / TRAVEL CARDS --- */
.country-card {
    border-radius: var(--border-radius-md);
    background-color: var(--light);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
}
.country-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.2);
}
.country-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.country-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.country-card:hover .country-card-img {
    transform: scale(1.08);
}
.country-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(26, 29, 32, 0.8);
    backdrop-filter: blur(5px);
    color: var(--light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}
.country-card-content {
    padding: 24px;
}
.visa-type-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: inline-block;
}
.country-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.country-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: 16px;
}
.country-card-price {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark);
}
.country-card-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Flight Deal Cards */
.flight-card {
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    background-color: var(--light);
    padding: 24px;
    transition: var(--transition-smooth);
}
.flight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 53, 0.2);
}
.airline-logo-wrapper {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.airline-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Hotel Deal Cards */
.hotel-card {
    border-radius: var(--border-radius-md);
    background-color: var(--light);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}
.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.hotel-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.hotel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.hotel-card:hover .hotel-img {
    transform: scale(1.08);
}
.hotel-rating {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #f39c12;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* Why Choose Us Cards */
.feature-card {
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    background-color: var(--light);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 53, 0.2);
}
.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}
.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary);
    color: var(--light);
    transform: scale(1.05);
}

/* Services Grids */
.service-box {
    padding: 30px;
    border-radius: var(--border-radius-md);
    background: var(--bg-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    height: 100%;
}
.service-box:hover {
    background: var(--light);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

/* --- ANIMATIONS & INTERACTIVE ELEMENTS --- */
/* Smooth plane flying animation */
.plane-container {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-left: 10px;
}
.plane-icon {
    font-size: 1.5rem;
    color: var(--primary);
    display: inline-block;
    animation: flightPath 5s infinite linear;
}
@keyframes flightPath {
    0% { transform: translate(0, 0) rotate(0deg); }
    49% { transform: translate(150px, -20px) rotate(-15deg); opacity: 0; }
    50% { transform: translate(-100px, 20px) rotate(15deg); opacity: 0; }
    100% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: var(--light);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* --- SECTIONS SPACING & HEADINGS --- */
.section-padding {
    padding: 100px 0;
}
.section-title-wrapper {
    margin-bottom: 50px;
}
.section-subtitle {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* --- TESTIMONIALS SLIDER --- */
.testimonial-card {
    background: var(--light);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 40px;
    margin: 15px;
    box-shadow: var(--shadow-sm);
}
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 24px;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-user-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}
.testimonial-user-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.stars-rating i {
    color: #f39c12;
    font-size: 0.85rem;
}

/* --- FOOTER DESIGN --- */
.footer-custom {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    padding-top: 80px;
}
.footer-custom h5 {
    color: var(--light);
    margin-bottom: 25px;
}
.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}
.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    margin-right: 12px;
}
.social-icon-btn:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}
.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
}
.payment-gateways img {
    height: 150px !important;
    width: auto !important;
    max-width: 100%;
    opacity: 0.9;
    transition: var(--transition-smooth);
}
.payment-gateways img:hover {
    opacity: 1;
}

/* --- FAQ ACCORDION --- */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md) !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--dark);
    background-color: var(--light);
    box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--bg-soft);
    color: var(--primary);
}
.faq-accordion .accordion-button::after {
    font-family: "bootstrap-icons";
    content: "\F2E2";
    background-image: none;
    transition: var(--transition-smooth);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: var(--primary);
}
.faq-accordion .accordion-body {
    padding: 20px 25px 25px;
    background-color: var(--light);
    line-height: 1.6;
    color: var(--text-main);
}

/* --- BLOG GRID & SINGLE PAGE --- */
.blog-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.blog-card-img-wrapper {
    height: 220px;
    overflow: hidden;
}
.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.blog-card:hover .blog-card-img {
    transform: scale(1.06);
}
.blog-card-content {
    padding: 24px;
}
.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}
.blog-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 14px;
}
.blog-title a {
    color: var(--dark);
}
.blog-title a:hover {
    color: var(--primary);
}

/* Blog details page styling */
.blog-details-post img {
    border-radius: var(--border-radius-md);
    margin-bottom: 30px;
}
.blog-details-content {
    font-size: 1.1rem;
    line-height: 1.8;
}
.blog-details-content p {
    margin-bottom: 24px;
}
.blog-details-content h2, .blog-details-content h3, .blog-details-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
}
/* Responsive styled video and photo media inside blog text */
.blog-details-content img,
.blog-details-content video,
.blog-details-content .blog-uploaded-video,
.blog-details-content .ql-video,
.blog-details-content iframe {
    display: block;
    max-width: 100%;
    margin: 2.5rem auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: none;
}
.blog-details-content img {
    height: auto;
}
.blog-details-content video,
.blog-details-content .blog-uploaded-video,
.blog-details-content .ql-video,
.blog-details-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.blog-sidebar-widget {
    background-color: var(--bg-soft);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin-bottom: 30px;
}
.blog-sidebar-widget h5 {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

/* --- CONTACT PAGE --- */
.contact-info-box {
    background: var(--bg-green);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius-md);
    height: 100%;
}
.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
}

/* Responsive Overrides */
/* ==========================================================================
   Comprehensive Responsive Overrides (Mobile-First / Scaled Layouts)
   ========================================================================== */

@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    /* Navbar collapse panel styling */
    .navbar-collapse {
        background-color: var(--light);
        padding: 24px;
        border-radius: var(--border-radius-md);
        box-shadow: var(--shadow-md);
        margin-top: 15px;
        border: 1px solid var(--border-color);
    }
    .nav-link-custom {
        margin-bottom: 4px;
    }
    .navbar-custom {
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.96) !important;
    }
    
    .hero-slider-container {
        height: auto;
        min-height: 480px;
        padding: 80px 0 120px;
    }
    .hero-content {
        align-items: flex-start;
        padding-top: 20px;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .search-widget-wrapper {
        margin-top: -60px;
    }
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }
    .country-card, .flight-card, .hotel-card, .blog-card, .feature-card, .service-box {
        margin-bottom: 10px;
    }
    /* Contact Box spacing */
    .contact-info-box {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    /* Breadcrumb text wrapping */
    .breadcrumb {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .hero-slider-container {
        min-height: 400px;
        padding: 60px 0 100px;
    }
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.25;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .hero-btns a {
        width: 100%;
        text-align: center;
    }
    .hero-ctrl {
        display: none;
    }

    /* Stack Search Tabs on extremely small screens */
    .search-tabs {
        flex-direction: column;
        border-bottom: none;
    }
    .search-tab-btn {
        padding: 12px 16px;
        border-bottom: 1px solid var(--border-color);
        font-size: 0.9rem;
    }
    .search-tab-btn.active {
        border-bottom: 2px solid var(--primary);
        background-color: var(--light);
    }
    .search-tab-content {
        padding: 20px 15px;
    }

    /* Testimonial adjustments */
    .testimonial-card {
        padding: 24px 15px;
        margin: 5px;
    }
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Floating widget scaling */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
        font-size: 1.9rem;
    }

    /* Footer styling */
    .footer-custom {
        padding-top: 50px;
    }
    .footer-bottom {
        margin-top: 40px;
        padding: 20px 0;
    }
    .payment-gateways {
        text-align: center !important;
        margin-top: 15px;
    }
}

