/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap');

:root {
    --primary-color: #0F4C75;
    --primary-dark: #0a3a5c;
    --secondary-color: #3282B8;
    --accent-color: #BBE1FA;
    --text-dark: #1B262C;
    --text-light: #F8F9FA;
    --text-muted: #6c757d;
    --gold: #D4AF37;
    --gold-light: #f0e6c8;
    --gold-dark: #b8962f;
    --success: #28a745;
    --bg-light: #FFFFFF;
    --bg-off-white: #F4F7F6;
    --bg-cream: #FAFAF8;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER STYLES
============================================ */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 0.8rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 0.5rem 5%;
    box-shadow: var(--shadow-md);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: #0018ff;
    letter-spacing: 1px;
    margin-bottom: 0;
    line-height: 1.1;
}

.logo-text h1 span {
    color: #0018ff;
}

.tagline {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 3px;
    font-family: 'Outfit', sans-serif;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 1.5rem;
    border-right: 1px solid #eee;
}

.header-contact i {
    font-size: 1.2rem;
    color: var(--gold);
}

.header-contact div {
    display: flex;
    flex-direction: column;
}

.header-contact span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.header-contact a {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.header-contact a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 0.6rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.social-icon.facebook:hover {
    background: #1877F2;
}

.social-icon.instagram:hover {
    background: #c13584;
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

.social-icon.youtube:hover {
    background: #FF0000;
}

.cta-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--text-dark);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    height: calc(100vh - 80px);
    margin-top: 80px;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 5%;
    overflow: hidden;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Slider Images - Desktop */
.slide-1 {
    background-image: url('../images/slider/1.jpg');
}

.slide-2 {
    background-image: url('../images/slider/2.jpg');
}

.slide-3 {
    background-image: url('../images/slider/3.jpg');
}

.slide-4 {
    background-image: url('../images/slider/4.jpg');
}

.slide-5 {
    background-image: url('../images/slider/5.jpg');
}

.slide-6 {
    background-image: url('../images/slider/6.jpg');
}

/* Slider Images - Mobile */
@media (max-width: 768px) {
    .slide-1 {
        background-image: url('../images/slider_mob/1.jpg');
    }

    .slide-2 {
        background-image: url('../images/slider_mob/2.jpg');
    }

    .slide-3 {
        background-image: url('../images/slider_mob/3.jpg');
    }

    .slide-4 {
        background-image: url('../images/slider_mob/4.jpg');
    }

    .slide-5 {
        background-image: url('../images/slider_mob/5.jpg');
    }

    .slide-6 {
        background-image: url('../images/slider_mob/6.jpg');
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 0.8s ease forwards;
}

.hero-badge i {
    color: var(--gold);
    font-size: 1.1rem;
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease forwards;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content>p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-services {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease forwards;
}

.hero-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.hero-service-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.hero-service-item i {
    font-size: 1.5rem;
    color: var(--gold);
}

.hero-service-item span {
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease forwards;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   QUICK STATS BAR
============================================ */
.quick-stats {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem 5%;
    background: var(--primary-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.quick-stat i {
    font-size: 1.8rem;
    color: var(--gold);
}

.quick-stat div {
    display: flex;
    flex-direction: column;
}

.quick-stat strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.quick-stat span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ============================================
   SECTION HEADERS
============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ============================================
   PERSONAL SECTION - FOUNDER
============================================ */
.personal-section {
    padding: 5rem 5%;
    background: var(--bg-cream);
}

.personal-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.image-column {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--gold);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.image-column:hover .image-frame img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--text-dark);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-badge.success {
    background: var(--success);
}

.service-badge.payment {
    background: var(--gold);
    color: var(--text-dark);
}

.service-badge i {
    font-size: 1rem;
}

.text-column {
    flex: 1;
}

.section-tagline {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-column h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.founder-info {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.founder-info h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.founder-info .designation {
    color: var(--secondary-color);
    font-weight: 500;
}

.intro-text p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.founder-highlights {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.highlight-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.highlight-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* ============================================
   SERVICES OVERVIEW
============================================ */
.services-overview {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.services-grid-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.service-overview-card {
    background: var(--bg-off-white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-overview-card:hover {
    background: var(--bg-light);
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

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

.service-overview-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
}

.service-overview-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-overview-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   ZIGZAG SECTIONS
============================================ */
.zigzag-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.zigzag-section.alternate {
    background: var(--bg-cream);
}

.zigzag-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.zigzag-wrapper.reverse {
    flex-direction: row-reverse;
}

.zigzag-section .text-column h3 {
    font-size: 2rem;
}

.service-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Feature Cards */
.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: var(--bg-off-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--gold);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feature-header i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.feature-card.highlight .feature-header i {
    color: var(--gold);
}

.feature-header h4 {
    font-size: 1rem;
    color: var(--text-dark);
    flex: 1;
}

.time-badge {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.time-badge.urgent {
    background: var(--gold);
    color: var(--text-dark);
}

.feature-card ul {
    margin: 0;
}

.feature-card ul li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 15px;
}

.feature-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Additional Services List */
.additional-services h5,
.visa-info-box h5,
.package-includes h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.service-list {
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0;
    color: var(--text-muted);
}

.service-list li i {
    color: var(--success);
    font-size: 0.9rem;
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    color: var(--text-light);
    margin: 2rem 0;
}

.guarantee-box i {
    font-size: 2rem;
    color: var(--gold);
}

.guarantee-box strong {
    display: block;
    margin-bottom: 0.3rem;
}

.guarantee-box p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Visa Section Specifics */
.visa-info-box {
    background: var(--bg-off-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.visa-info-box ul {
    margin: 0;
}

.visa-info-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.4rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.visa-info-box ul li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.country-group {
    background: var(--bg-off-white);
    padding: 1.2rem;
    border-radius: var(--border-radius);
}

.country-group h6 {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.country-group h6 i {
    color: var(--gold);
}

.country-group ul li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.all-countries-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border: 1px solid var(--gold);
}

.all-countries-note i {
    font-size: 1.5rem;
    color: var(--gold);
}

.testimonial-quote {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0 2rem;
    position: relative;
    border-left: 4px solid var(--gold);
}

.testimonial-quote i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.testimonial-quote p {
    font-style: italic;
    color: var(--text-muted);
    margin: 0;
}

/* Packages Section Specifics */
.packages-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.package-category {
    background: var(--bg-off-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.package-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.package-header i {
    font-size: 1.3rem;
}

.package-header.domestic i {
    color: #e67e22;
}

.package-header.international i {
    color: var(--secondary-color);
}

.package-header h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.package-category>p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.destinations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.destination-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-light);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.destination-tag i {
    font-size: 0.75rem;
    color: var(--secondary-color);
}

.destination-tag:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.destination-tag:hover i {
    color: var(--gold);
}

.destination-tag.more {
    background: var(--gold);
    color: var(--text-dark);
    font-weight: 600;
}

.package-includes {
    background: var(--bg-off-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.include-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.include-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.include-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.include-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ============================================
   STATS SECTION
============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 5rem 5%;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    background-size: 100px;
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.stats-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.stats-header p {
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-item.highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--text-dark);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-item.highlight .stat-icon {
    background: rgba(0, 0, 0, 0.1);
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-item.highlight .stat-icon i {
    color: var(--text-dark);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.stat-item.highlight h3 {
    color: var(--text-dark);
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* ============================================
   ADDITIONAL SERVICES SECTION
============================================ */
.additional-services-section {
    padding: 5rem 5%;
    background: var(--bg-off-white);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.additional-service-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.additional-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.additional-service-card:hover::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.additional-service-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), rgba(187, 225, 250, 0.5));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.additional-service-card .card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.additional-service-card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.additional-service-card ul {
    margin-bottom: 1.5rem;
}

.additional-service-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0;
    color: var(--text-muted);
}

.additional-service-card ul li i {
    color: var(--success);
    font-size: 0.85rem;
}

.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.about-intro {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1.2;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.about-text .highlight-text {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--gold);
    margin-top: 1.5rem;
}

.about-image {
    flex: 0.8;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: var(--bg-off-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border-top: 4px solid transparent;
    position: relative;
}

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

.about-card.vision {
    border-top-color: var(--secondary-color);
}

.about-card.mission {
    border-top-color: var(--primary-color);
}

.about-card.motto {
    border-top-color: var(--gold);
}

.about-card .card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.about-card.vision .card-icon i {
    color: var(--secondary-color);
}

.about-card.mission .card-icon i {
    color: var(--primary-color);
}

.about-card.motto .card-icon i {
    color: var(--gold);
}

.about-card .card-icon i {
    font-size: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    color: var(--text-light);
}

.why-choose-us h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.reason-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.reason-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.reason-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.reason-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.reason-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.contact-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    color: var(--text-light);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info>p {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--gold);
}

.contact-item a,
.contact-item p {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 0.95rem;
    margin: 0;
}

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

.social-connect h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
}

.social-icons-large {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link.facebook:hover {
    background: #1877f2;
}

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

.social-link.whatsapp:hover {
    background: #25D366;
}

.social-link.youtube:hover {
    background: #ff0000;
}

/* Contact Form */
.contact-form-container {
    flex: 1;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group label i {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-off-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary-color);
    outline: none;
    background: var(--bg-light);
    box-shadow: 0 0 0 4px rgba(50, 130, 184, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%236c757d"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--text-dark);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ============================================
   FOOTER
============================================ */
/* ============================================
   FOOTER
============================================ */
/* ============================================
   FOOTER
============================================ */
footer {
    background: linear-gradient(to right, #05101a, #000000);
    color: #e0e0e0;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #8a6e2f, var(--gold));
}

.footer-top {
    padding: 3rem 5% 2rem;
    /* Reduced padding */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    /* Reduced gap */
}

.footer-about {
    padding-right: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.footer-logo img {
    height: 45px;
    /* Slightly smaller logo */
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.footer-logo h2 {
    font-size: 1.4rem;
    /* Adjusted opacity font size */
    color: #0018ff;
    /* Updated color */
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    /* Forced single line */
}

.footer-tagline {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-about>p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 38px;
    /* Smaller icons */
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.4s ease;
    color: #fff;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-links-section h4,
.footer-contact h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.2rem;
    /* Reduced margin */
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
    display: inline-block;
}

.footer-links-section h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links-section ul li {
    margin-bottom: 0.6rem;
    /* Reduced spacing */
}

.footer-links-section ul li a {
    font-size: 0.95rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    color: #e0e0e0;
    font-weight: 300;
}

.footer-links-section ul li a:hover {
    opacity: 1;
    color: var(--gold);
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.8rem;
    /* Reduced spacing */
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact ul li i {
    color: var(--gold);
    margin-top: 4px;
    font-size: 1rem;
}

.footer-contact ul li strong {
    color: #fff;
    font-weight: 500;
}

.footer-bottom {
    padding: 1rem 5%;
    /* Reduced padding */
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 2px;
    /* Tighter spacing */
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin: 0;
    font-weight: 300;
}

.creator-credit {
    font-size: 0.75rem !important;
    opacity: 0.5 !important;
}

.creator-credit a {
    color: #e0e0e0;
    text-decoration: none;
    transition: var(--transition);
}

.creator-credit a:hover {
    color: var(--gold);
}

.admin-trigger {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.admin-trigger:hover {
    color: var(--gold);
    opacity: 1;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   POPUP STYLES
============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.popup-content {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
    line-height: 1;
}

.close-popup:hover {
    color: var(--text-dark);
    transform: rotate(90deg);
}

.popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.popup-header i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.popup-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.popup-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.popup-form .form-group {
    margin-bottom: 1rem;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 1200px) {
    .nav-links {
        gap: 1.5rem;
    }

    .header-contact {
        display: none;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content h2 {
        font-size: 2.8rem;
    }

    .personal-wrapper,
    .zigzag-wrapper,
    .zigzag-wrapper.reverse {
        flex-direction: column;
    }

    .image-column,
    .text-column {
        width: 100%;
    }

    .experience-badge {
        right: 20px;
        bottom: -15px;
    }

    .about-intro {
        flex-direction: column;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .countries-grid {
        grid-template-columns: 1fr 1fr;
    }

    .packages-container {
        grid-template-columns: 1fr;
    }

    .includes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 0.8rem 4%;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .social-icons {
        display: none;
    }

    .cta-btn span {
        display: none;
    }

    .hero-section {
        min-height: 600px;
        padding-top: 80px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content>p {
        font-size: 1rem;
    }

    .hero-services {
        gap: 1rem;
    }

    .hero-service-item {
        padding: 0.8rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .quick-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .quick-stat {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .countries-grid {
        grid-template-columns: 1fr;
    }

    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links-section h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px;
        border-radius: 50%;
    }

    .whatsapp-float span {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.7rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-service-item {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .image-frame::before {
        display: none;
    }

    .popup-content {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .additional-services-grid {
        grid-template-columns: 1fr;
    }
}