/*
Theme Name: FaresKart
Description: A modern flight booking website theme with search functionality and destination pages
Version: 1.0
Author: FaresKart Team
Text Domain: fareskart
*/

/* Reset and Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Promo Banner */

.promo-banner {
    background-color: #1a3e72;
    color: white;
    text-align: left;
    padding: 10px 20px;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
}

/* Header Styles */

/* Header Styles */

header {
    background-color: #1a3e72;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logo span {
    color: #ffc107;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffc107;
}

.auth-buttons a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-weight: 500;
}

.auth-buttons a:first-child {
    border: 1px solid white;
    padding: 8px 15px;
    border-radius: 4px;
}

.auth-buttons a:last-child {
    background-color: #ffc107;
    color: #1a3e72;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
}

/* Hero Section */

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    width: 100%;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Tabs */
.autocomplete-suggestions { position: absolute;
     background: #fff;
      border: 1px solid #ffffff;
       max-height: 200px; 
       overflow-y: auto;
        width: 10%; 
       z-index: 9999;
        -webkit-text-fill-color:#000000 ; }
         .autocomplete-suggestion { padding: 8px; cursor: pointer; }
          .autocomplete-suggestion:hover { background: #f0f0f0; }



.search-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 4px 4px 0 0;
}

.tab.active {
    background-color: white;
    color: #1a3e72;
    font-weight: bold;
}

.hidden {
    display: none;
}

.hidden {
  display: none !important;
}



/* Mobile look (like your screenshot) */
@media (max-width: 768px) {
  .autocomplete-suggestions {
    position: absolute;       /* stays just below input */
    width: 100%;              /* exactly input width */
    left: 0;
    right: 0;
    border: 1px solid #ddd;
    border-top: none;         /* remove white line */
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  .autocomplete-suggestion {
    font-size: 14px;
    padding: 12px;
  }
}




/* Search Form */



.search-form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    
}

.form-row {
    display: flex;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    /* allows wrapping on smaller screens */
    gap: 15px;
    /* optional: adds spacing between fields */
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        /* stack vertically on smaller screens */
    }
}

.form-group {
    flex: 1;
    margin-right: 10px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.form-group:last-child {
    margin-right: 0;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-button {
    background-color: #1a3e72;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #0d2a57;
}

/* ===== Features Section ===== */

.features-section {
    background-color: #f2f5f9;
    padding: 50px 20px;
    text-align: center;
}

.features-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

.feature-box {
    flex: 1;
    min-width: 250px;
    margin: 20px;
    padding: 10px;
}

.feature-box img {
    width: 64px;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 16px;
    color: #333;
}

/* ===== About Us Section ===== */

.about-us {
    padding: 50px 20px;
}

.about-container {
    max-width: 800px;
    margin: auto;
}

.about-tabs {
    display: flex;
    margin-bottom: 20px;
}

.about-tabs button {
    border: none;
    padding: 10px 25px;
    font-weight: bold;
    cursor: pointer;
}

.about-tabs .tab-yellow {
    background-color: #ffc107;
    color: black;
}

.about-tabs .tab-blue {
    background-color: #001630;
    color: white;
}

.about-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* premium service Section */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f8f8;
}

.premium-services {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

.premium-services h2 {
    font-size: 2rem;
    color: #0c1c4e;
    margin-bottom: 30px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    max-width: 100%;
}

.carousel {
    display: flex;
    gap: 20px;
    padding: 10px;
    width: max-content;
}

.card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 280px;
    flex-shrink: 0;
    overflow: hidden;
    transition: transform 0.3s;
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
    text-align: left;
}

.card-content h3 {
    font-size: 1.1rem;
    color: #0c1c4e;
    margin-bottom: 5px;
}

.card-content p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

.card-content small {
    font-size: 0.8rem;
    color: #888;
    display: block;
    margin-bottom: 12px;
}

.card-content button {
    background-color: #0c1c4e;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}

.card-content button:hover {
    background-color: #122e6c;
}









.card a {
  text-decoration: none;
  color: #1a1a40; /* keeps the dark color */
}

.card a:hover {
  text-decoration: underline; /* optional: only show underline on hover */
}


/* hot deals Section */



/* find your perfect destination */

.destinations {
    padding: 60px 20px;
    background-color: #f8f9fb;
}

.destinations-header {
    text-align: center;
    margin-bottom: 40px;
}

.destinations-header h2 {
    font-size: 28px;
    color: #2a5885;
    font-weight: bold;
}

.destinations-header p {
    font-size: 16px;
    color: #555;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.destination-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    
  
}

.destination-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.destination-card h3 {
    padding: 12px 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #001640;
}

.destination-card p {
    padding: 4px 16px 16px;
    font-size: 14px;
    color: #555;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    /* Centers the cards in the grid */
}

.destination-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 280px;
    /* Prevents cards from stretching too much */
    margin: auto;
    /* Centers each card individually */
}

.destination-card:hover {
    transform: translateY(-5px);
    
}

.destination-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.destination-card h3 {
    font-size: 18px;
    margin: 10px 15px 0;
    color: #1a2b49;
    font-weight: bold;
}

.destination-card p {
    margin: 5px 15px 15px;
    color: #777;
    font-size: 14px;
}





.destination-card a {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* makes link use h3 text color */
}

.destination-card a:hover {
  text-decoration: underline; /* optional: underline only on hover */
}

/* travel guide */

.travel-guides {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: 'Arial', sans-serif;
}

.travel-guides .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.travel-guides h2 {
    text-align: center;
    font-size: 36px;
    color: #2a5885;
    margin-bottom: 15px;
}

.travel-guides .subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.guide-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.guide-image {
    height: 200px;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-card:hover .guide-image img {
    transform: scale(1.05);
}

.guide-content {
    padding: 20px;
}

.guide-content h3 {
    font-size: 22px;
    color: #2a5885;
    margin-bottom: 10px;
}

.guide-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}
.guide-content a {
    text-decoration: none;   /* removes underline */
    color: inherit;          /* optional: keeps text same color as parent */
}

.guide-content a:hover {
    text-decoration: underline; /* optional: only underline on hover */
}

/* Responsive adjustments */

@media (max-width: 768px) {
    .travel-guides {
        padding: 60px 0;
    }
    .travel-guides h2 {
        font-size: 30px;
    }
    .travel-guides .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .guide-image {
        height: 180px;
    }
}

/* payment Section */

/* Payment Section */

.payment-section {
    padding: 50px 0;
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.payment-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.payment-heading {
    font-size: 28px;
    color: #2a5885;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.payment-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
}

.payment-method img {
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

/* Responsive Adjustments */

@media (max-width: 600px) {
    .payment-heading {
        font-size: 24px;
    }
    .payment-description {
        font-size: 15px;
    }
    .payment-methods {
        gap: 20px;
    }
    .payment-method {
        padding: 8px;
    }
    .payment-method img {
        max-height: 30px;
    }
}

/* Testimonials Section */

.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2a5885;
    margin-bottom: 10px;
}

.testimonials-section h3 {
    text-align: center;
    font-size: 24px;
    color: #555;
    margin-bottom: 50px;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content h4 {
    font-size: 20px;
    color: #2a5885;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.rating {
    color: #ffb400;
    font-size: 24px;
    letter-spacing: 5px;
}

/* Numbers Section */

.numbers-section {
    padding: 60px 0;
    background-color: #001640;
    color: #fdfdfd;
    text-align: center;
}

.numbers-section h3 {
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 500;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.number-card {
    padding: 20px;
}

.number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    .testimonials-section h2 {
        font-size: 30px;
    }
    .testimonials-section h3 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }
    .number {
        font-size: 28px;
    }
    .label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        padding: 20px;
    }
}

/* Footer */

footer {
    background-color: #1a3e72;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ffc107;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffc107;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #ffc107;
    color: #1a3e72;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* Key Selling Points Section */
.key-selling-points {
    background-color: white;
    padding: 60px 0;
}

.selling-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.selling-point .icon {
    font-size: 48px;
    color: #1a3e72;
    margin-bottom: 20px;
}

.selling-point h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a3e72;
}

.selling-point p {
    color: #666;
    line-height: 1.6;
}

/* About FaresKart Section */
.about-fareskart {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.about-buttons {
    margin-bottom: 30px;
}

.about-btn, .us-btn {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.about-btn {
    background-color: #ffc107;
    color: #333;
}

.us-btn {
    background-color: #333;
    color: white;
}

.about-content p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Premium Services Section */
.premium-services {
    background-color: white;
    padding: 60px 0;
}

.premium-services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a3e72;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: #1a3e72;
}

.service-card p {
    padding: 0 20px 20px;
    color: #666;
}

.service-card .btn {
    margin: 0 20px 20px;
    display: inline-block;
}

/* Updated Destinations Section */
.destinations {
    background-color: white;
    padding: 60px 0;
}

.destinations h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a3e72;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.destination-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-info {
    padding: 20px;
}

.destination-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #1a3e72;
}

.location {
    color: #666;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

/* Travel Guides Section */
.travel-guides {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.travel-guides h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a3e72;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.guide-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: #1a3e72;
}

.guide-card p {
    padding: 0 20px 20px;
    color: #666;
}

.guide-card .btn {
    margin: 0 20px 20px;
    display: inline-block;
}

/* Secure Payment Section */
.secure-payment {
    background-color: white;
    padding: 60px 0;
    text-align: center;
}

.secure-payment h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a3e72;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.payment-methods img {
    height: 60px;
    transition: filter 0.3s ease;
}

.payment-methods img:hover {
    filter: grayscale(0%);
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a3e72;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    color: #1a3e72;
    font-size: 18px;
}

/* Our Numbers Section */
.our-numbers {
    background-color: #1a3e72;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.our-numbers h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.number-item h3 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #ffc107;
}

.number-item p {
    font-size: 18px;
    color: white;
}

/* Updated Footer Styles */
.site-footer {
    background-color: #0f2a4a;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffc107;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffc107;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info i {
    margin-right: 10px;
    color: #ffc107;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #1a3e72;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #ffc107;
    color: #1a3e72;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #0a1f35;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-info p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.arc-certified {
    background-color: #ffc107;
    color: #1a3e72;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.arc-certified:hover {
    background-color: #e6ac00;
}

/* Responsive Styles */

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        margin: 15px 0;
    }
    .auth-buttons {
        margin-top: 15px;
    }
    .hero {
        height: auto;
        padding: 60px 0;
    }
    .hero h1 {
        font-size: 32px;
    }
    .form-row {
        flex-direction: column;
    }
    .form-group {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    /* New sections responsive */
    .selling-points-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid,
    .destination-grid,
    .guides-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-methods {
        flex-direction: column;
        gap: 20px;
    }
    
    .payment-methods img {
        height: 40px;
    }
}

/* Floating Buttons */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.call-btn {
    background-color: #020e7e;
    /* WhatsApp green */
}

.text-btn {
    background-color: #020e7e;
    /* Facebook Messenger blue */
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */

@media (max-width: 768px) {
    .travel-guides-section h1 {
        font-size: 30px;
    }
    .subtitle {
        font-size: 16px;
    }
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}