/* ============================================
   FLAGTRIP - Custom Styles
   ============================================ */

/* Base Typography */
:root {
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-dark: #1A1A1A;
    --bg-purple: #6B46C1;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

body.loading .top-bar,
body.loading .hero-section,
body.loading section,
body.loading footer {
    opacity: 0;
    visibility: hidden;
}

body:not(.loading) .top-bar,
body:not(.loading) .hero-section,
body:not(.loading) section,
body:not(.loading) footer {
    animation: fadeInContent 0.5s ease forwards;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        visibility: hidden;
    }
    to {
        opacity: 1;
        visibility: visible;
    }
}

/* ============================================
   Page Loader
   ============================================ */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--white);
}

.loader-text {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease;
}

.loader-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1rem;
}

.loader-brand {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.loader-animation {
    margin: 0 auto;
    animation: fadeIn 1s ease 0.3s both;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-gif {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Loader Responsive */
@media (max-width: 767.98px) {
    .loader-title {
        font-size: 1.25rem;
    }
    
    .loader-brand {
        font-size: 2.5rem;
    }
    
    .loader-gif {
        max-width: 150px;
        max-height: 150px;
    }
}

/* ============================================
   Top Bar / Pre-Header
   ============================================ */

.top-bar {
    background-color: #5224aa;
    padding: 0 0;
    position: relative;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-email {
    display: flex;
    align-items: center;
}

.email-icon {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.email-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--primary-color);
}

.top-bar-social {
    display: inline-flex;
    align-items: center;
}

.social-icon-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: opacity 0.3s ease;
    border: none;
    margin: 0;
    padding: 0;
    line-height: 1;
    vertical-align: middle;
}

.social-icon-top.facebook {
    background-color: #3b5998;
}

.social-icon-top.instagram {
    background-color: #642bcf;
}

.social-icon-top.twitter {
    background-color: #1DA1F2;
}

.social-icon-top.youtube {
    background-color: #642bcf;
}

.social-icon-top.linkedin {
    background-color: #0077B5;
}

.social-icon-top:hover {
    opacity: 0.8;
    color: var(--white);
}

/* ============================================
   Header / Hero Section
   ============================================ */

.hero-section {
    min-height: 100px;
    position: relative;
    /*overflow: hidden;*/
    padding-top: 0;
}

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 450px;
}

/* Show first slide before Owl Carousel initializes */
.hero-slider .hero-slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slider .owl-carousel .owl-stage-outer,
.hero-slider .owl-carousel .owl-stage,
.hero-slider .owl-carousel .owl-item {
    height: 100%;
}

.hero-slider .owl-item .hero-slide {
    height: 100%;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}
.btn{
    border-radius: 30px !important;
}
/* Navbar */
.navbar {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    justify-content: flex-end;
}

@media (min-width: 992px) {
    .navbar-collapse {
        flex-basis: auto;
        display: flex !important;
    }
}

.navbar.fixed-top {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark) !important;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-text {
    color: var(--text-dark);
    font-weight: 700;
}

.navbar-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    margin: auto;
}

.navbar-nav .nav-item {
    list-style: none;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus {
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

.btn-signup {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-signup:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.hero-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.hero-title-small {
    font-size: 3rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--white);
    opacity: 0.9;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.btn-get-started {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-get-started:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* WhatsApp & Call Floating Buttons */
.whatsapp-float {
    bottom: 2rem;
    right: 6rem;
    width: 160px;
    height: 50px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 99999;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}
.whatsapp-float img {
    width: 100%;
}

.call-float {
    bottom: 2rem;
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 99999;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.similar-package-image{
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 10px;
}

.call-float:hover {
    transform: scale(1.1);
}

/* Owl Carousel Custom Styles */
.hero-slider .owl-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 0.5rem;
}

.hero-slider .owl-dots .owl-dot {
    width: 2rem;
    height: 0.25rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0.125rem;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.hero-slider .owl-dots .owl-dot.active {
    width: 3rem;
    background-color: var(--white);
}

.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 100;
    pointer-events: none;
}

.hero-slider .owl-nav button {
    pointer-events: all;
}

.hero-slider .owl-nav button {
    position: absolute;
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.hero-slider .owl-nav button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.hero-slider .owl-nav .owl-prev {
    left: 2rem;
}

.hero-slider .owl-nav .owl-next {
    right: 2rem;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
}

.testimonials-slider .owl-dots {
    display: flex !important;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    position: relative;
}

/* Hide duplicate dots if any */
.testimonials-slider .owl-dots ~ .owl-dots {
    display: none !important;
}

/* Ensure only one dots container is visible */
.testimonials-slider .owl-stage-outer + .owl-dots ~ .owl-dots {
    display: none !important;
}

.testimonials-slider .owl-dots .owl-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #E0E0E0;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.testimonials-slider .owl-dots .owl-dot.active {
    width: 1.5rem;
    border-radius: 0.25rem;
    background-color: var(--primary-color);
}

.testimonials-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
}

.testimonials-slider .owl-nav button {
    pointer-events: all;
}

.testimonials-slider .owl-nav button {
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1.25rem;
    border: 1px solid #E0E0E0;
    outline: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonials-slider .owl-nav button:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.testimonials-slider .owl-nav .owl-prev {
    left: -3rem;
}

.testimonials-slider .owl-nav .owl-next {
    right: -3rem;
}

/* ============================================
   Feature Icons Section
   ============================================ */

.feature-icons-section {
    background-color: #F8F9FA;
    margin-top: -3rem;
    position: relative;
}

.feature-icon-card {
    background-color: var(--white);
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 10px !important;
    display: inline-block;
    background-color: #FFF1E8;
}

.feature-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ============================================
   Tour Packages Section
   ============================================ */

.tour-packages-section {
    background-color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1rem;
    color: var(--text-light);
}

.btn-view-all {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-view-all:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.tour-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.tour-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.tour-title a{
    color: var(--text-dark);
    text-decoration: none;
}
.tour-title a:hover{
    color: var(--primary-color);
    text-decoration: none;
}

.tour-duration {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.tour-duration i {
    font-size: 0.8rem;
}

.tour-starting-from {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.tour-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-book-now {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.875rem;
    width: fit-content;
    align-self: flex-end;
    transition: background-color 0.3s ease;
    margin-top: -60px;
}

.btn-book-now:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* ============================================
   Qualities Section
   ============================================ */

.qualities-section {
    background-color: #F8F9FA;
}

.qualities-image img {
    border-radius: var(--border-radius-lg);
    width: 100%;
    height: auto;
}

.quality-item {
    align-items: flex-start;
}

.quality-icon-wrapper {
    flex-shrink: 0;
}

.quality-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.quality-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.quality-description {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ============================================
   Destinations Section
   ============================================ */

.destinations-section {
    background-color: var(--white);
}

.destination-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 415px;
    cursor: pointer;
}
.destination-card-static {
    cursor: default;
    pointer-events: none;
}
.testimonials-section .owl-theme .owl-dots .owl-dot span{display: none;}


@media (max-width: 767.98px) {
    .destination-card,
    .destination-card-large {
        height: 250px;
    }
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.destination-card-static img {
    pointer-events: none;
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: var(--white);
}

.destination-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.destination-subtitle {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 0;
}

/* ============================================
   Visa Section
   ============================================ */

.visa-section {
    background-color: #F8F9FA;
}

.visa-card {
    background-color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visa-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-md);
}

.visa-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.visa-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
    background-color: var(--white);
}

.testimonial-card {
    padding: 3rem 2rem;
}

.testimonial-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}


/* ============================================
   Stats Section
   ============================================ */

.stats-section {
    background-color: var(--bg-purple);
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 1.125rem;
    color: var(--white);
    opacity: 0.9;
}

/* ============================================
   Footer
   ============================================ */

  .bg-primary{
    background-color: var(--bg-purple) !important;
  } 
  .nav-pills .nav-link{
    color: #6B46C1;
  }
  .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: var(--bg-purple) !important;
  }

.footer-section {
    background-color: #000;
    color: var(--white);
}

.footer-top {
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    max-height: 48px;
    width: auto;
}

.footer-help-cta {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-help-text {
    margin-right: 0.5rem;
}

.footer-help-phone {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-help-phone:hover {
    color: var(--primary-color);
    opacity: 0.9;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 0;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-subheading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.footer-contact-item {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact-item i {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--primary-color);
}

.footer-social {
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.footer-social-icon:hover {
    color: var(--white);
    opacity: 0.85;
}

.footer-social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social-facebook {
    background-color: var(--white);
    color: #1877F2 !important;
}

.footer-social-twitter {
    background-color: var(--white);
    color: #1DA1F2 !important;
}

.footer-social-youtube {
    background-color: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Mobile (320px+) */
@media (max-width: 575.98px) {
	.feature-icons-section{
		margin-top:0
	}
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title-small {
        font-size: 1.5rem;
    }
    
    .hero-background-text {
        font-size: 6rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    

    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .hero-slider .owl-nav button {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
    
    .hero-slider .owl-nav .owl-prev {
        left: 1rem;
    }
    
    .hero-slider .owl-nav .owl-next {
        right: 1rem;
    }
    
    .testimonials-slider .owl-nav {
        display: none;
    }
}

/* Tablet (768px+) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title-small {
        font-size: 2rem;
    }
    
    .hero-background-text {
        font-size: 8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Laptop (1024px+) */
@media (min-width: 768px) and (max-width: 1023.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title-small {
        font-size: 2.5rem;
    }
    
    .hero-background-text {
        font-size: 10rem;
    }
}

/* Desktop (1440px+) */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
}

/* Top Bar Responsive */
@media (max-width: 767.98px) {
    .top-bar {
        padding: 0.5rem 0;
    }
    
    .top-bar .row {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .top-bar .col-md-6 {
        max-width: 100%;
        width: 100%;
        justify-content: center;
        display: flex;
        text-align: center;
    }
    
    .top-bar .text-md-end {
        text-align: center !important;
        justify-content: center !important;
    }
    
    .top-bar-email {
        justify-content: center;
    }
    
    .top-bar-social {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .social-icon-top {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
    
    .email-link {
        font-size: 0.75rem;
    }
}

/* Navbar Responsive */
@media (max-width: 991.98px) {
    .navbar {
        background-color: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
    }
    
    .navbar.fixed-top {
        position: fixed !important;
        top: 0 !important;
    }
    
    .navbar-toggler {
        border-color: rgba(44, 62, 80, 0.2);
        padding: 0.375rem 0.75rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 62, 80, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-collapse {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-nav {
        margin-top: 0;
        margin-bottom: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        display: block;
        white-space: normal;
    }
    
    .navbar .d-flex.ms-lg-3 {
        margin-left: 0 !important;
        margin-top: 0.5rem;
    }
    
    .navbar .container {
        flex-wrap: wrap;
        padding: 10px 15px;
        max-width: 100%;
    }
    
    .hero-section {
        z-index: 99;
    }
    
    .navbar-brand {
        max-width: calc(100% - 60px);
    }
    
    .navbar-brand img {
        max-height: 40px;
        width: auto;
    }
}

/* Footer Responsive */
@media (max-width: 767.98px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-help-cta {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .footer-brand .footer-logo {
        max-height: 40px;
    }
}
