/* Base Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #d4af37;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
    --section-padding: 80px 0;
    --border-radius: 8px;
}

/* ===========================
   HEADER – CLEAN & MODERN
=========================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 60px;        /* FINAL CHOICE */
    width: auto;
    object-fit: contain;
    display: block;
}

/* NAVIGATION */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #334155;
    position: relative;
    padding: 6px 0;
    transition: 0.3s ease;
}

.nav-item.active .nav-link,
.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #2563eb;
    transition: 0.3s ease;
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    width: 100%;
}

/* CTA BUTTON (Apply Now) */
.main-nav .btn-primary {
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2563eb;
    transition: 0.3s ease;
}


/* ===========================
   HEADER FIX
=========================== */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
    position: relative;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;            /* Vertically center EVERYTHING */
    justify-content: space-between; 
    height: 90px;                   /* Perfect header height */
}

/* LOGO */
.logo-container img {
    height: 65px;                   /* Not too big */
    width: auto;
    display: block;
    object-fit: contain;            /* Clean scaling */
}

/* NAVIGATION */
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    padding: 5px 0;
}

.main-nav .btn {
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
}

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {
    .header-inner {
        height: 75px;
    }

    .logo-container img {
        height: 55px;
    }

    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
    }

    /* Mobile Nav */
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 10px 0;
        display: none;
        flex-direction: column;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 20px;
    }
}


/* HEADER */
.main-header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;       /* FIX 1: Align vertically */
    justify-content: space-between;
    padding: 12px 0;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;       /* FIX 2: vertical centering */
}

.logo-container img {
    height: 60px;              /* Adjusted for perfect alignment */
    width: auto;
    object-fit: contain;
}

/* NAVIGATION */
.main-nav .nav-list {
    display: flex;
    align-items: center;       /* FIX 3: Align nav and button */
    gap: 28px;
}

.main-nav .nav-link {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.main-nav .btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .header-inner {
        padding: 10px 0;
    }

    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: white;
        display: none;
        flex-direction: column;
        padding: 20px 0;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .logo-container img {
        height: 55px;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}
/* Logo text styling */
.logo-text {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    white-space: nowrap;
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.2rem;
        padding: 0 5px;
    }
    
    .logo-img {
        height: 35px;
    }
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 80px; /* For fixed header */
}

/* Header & Logo Styling */
.main-header {
    padding: 0;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

/* Logo container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and text */
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    height: 100%;
    gap: 10px;
}

/* Logo image */
.logo-img {
    display: flex;
    align-items: center;
    height: 40px;
    width: auto;
}

.logo-img img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Logo text */
.logo-text {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 35px;
    }
}

/* Flag styling */
.destination-flag {
    display: flex;
    align-items: center;
    height: 30px;
    width: auto;
}

.destination-flag img {
    height: 100%;
    width: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .logo-text {
        font-size: 1.4rem;
    }
    
    .destination-flag {
        height: 32px;
    }
}

@media (min-width: 992px) {
    .header-inner {
        height: 70px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .destination-flag {
        height: 34px;
    }
}

h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

h2 span {
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1523050853548-2d4450204648?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: left;
    padding: 100px 0;
    margin-top: -80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.9) 0%, rgba(37, 99, 235, 0.7) 100%);
    z-index: 1;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

/* Destinations Section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.destination-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.destination-flag {
    width: 60px;
    height: 40px;
    margin: 0 auto 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.destination-flag img {
    width: 80%;
    height: 80%;
    object-fit: cover;
}

.destination-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.destination-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cmVjdCB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDIiLz48cGF0aCBkPSJNMzAgMTAuNUMzMy4wMiAxMC41IDM1LjUgOC4wMiAzNS41IDVTMzMuMDIuNSAzMCAuNVMxOC41IDIuOTggMTguNSA2czIuNDggNS41IDUuNSA1LjV6IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDQiLz48L3N2Zz4=');
    opacity: 0.3;
    z-index: 1;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8fafc;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    padding-left: 30px;
}

.testimonial-content p::before {
    content: '"\201C"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: var(--primary-color);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
    padding: 3px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.partners-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    flex: 0 0 calc(20% - 30px);
    text-align: center;
    opacity: 0.7;
    transition: var(--transition);
    padding: 15px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Responsive adjustments will be in responsive.css */
:root {
    --primary-color: #2563eb;
    --secondary-color: #d4af37;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.logo h1 span {
    color: var(--secondary-color);
}

/* Navigation */
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Update logo container and link styles */
.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5px 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    height: 100%;
    gap: 12px; /* Ensure consistent spacing */
}

/* Adjust logo image */
.logo-img {
    height: 40px; /* Fixed height */
    width: auto;
    display: flex;
    align-items: center;
}

.logo-img img {
    height: 100%;
    width: auto;
    max-width: none; /* Remove max-width constraint */
    object-fit: contain;
}

/* Adjust logo text */
.logo-text {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
    white-space: nowrap;
    padding: 0;
}

.nav-item .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 12px;
    position: relative;
}

.nav-item .nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary-color);
}

.nav-item .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-item .nav-link:hover::after,
.nav-item.active .nav-link::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Footer Styles */
.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.about-widget p {
    margin-bottom: 20px;
    color: #cbd5e1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: #cbd5e1;
    display: block;
    padding: 5px 0;
    transition: var(--transition);
}

.quick-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 18px;
}

.contact-info a {
    color: #cbd5e1;
    display: block;
    margin-bottom: 5px;
}

.contact-info address {
    font-style: normal;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #94a3b8;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}