/* ============================================
   TRAVEL AWAY WITH US - CUSTOM STYLES
   Color Scheme: #4682b4 (Primary), #f3f8fb (Light)
============================================ */

:root {
    --primary: #4682b4;
    --primary-dark: #36648b;
    --primary-light: #5a9bd4;
    --light-bg: #f3f8fb;
    --white: #ffffff;
    --dark: #1a2b3c;
    --text: #4a5b6e;
    --muted: #8492a6;
    --border: #e3eaf2;
    --accent: #ff7849;
    --success: #2ecc71;
    --shadow-sm: 0 2px 8px rgba(70, 130, 180, 0.08);
    --shadow-md: 0 8px 24px rgba(70, 130, 180, 0.12);
    --shadow-lg: 0 20px 50px rgba(70, 130, 180, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    font-weight: 700;
}

.text-primary-custom {
    color: var(--primary) !important;
}

/* ============================================
   CUSTOM BUTTONS
============================================ */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(70, 130, 180, 0.3);
}

.btn-outline-primary-custom {
    background: transparent;
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ============================================
   TOP BAR
============================================ */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-info a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-right: 20px;
    transition: var(--transition);
}

.top-info a:hover {
    color: var(--primary-light);
}

.top-info i {
    margin-right: 6px;
    color: var(--primary-light);
}

.top-social a {
    color: var(--white);
    margin-left: 15px;
    transition: var(--transition);
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.top-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   MAIN NAVBAR
============================================ */
.main-navbar {
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 1000;
}

.main-navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    animation: slideDown 0.3s ease;
    box-shadow: var(--shadow-md);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 55px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.brand-sub {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    padding: 8px 18px !important;
    transition: var(--transition);
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    padding: 10px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary);
    padding-left: 22px;
}

.dropdown-item i {
    margin-right: 10px;
    color: var(--primary);
    width: 18px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 43, 60, 0.75) 0%, rgba(70, 130, 180, 0.4) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 850px;
    padding: 0 20px;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 500;
}

.slide-content h1 {
    font-size: 60px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.slide-content h1 span {
    color: var(--primary-light);
    font-style: italic;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
}

.hero-section .swiper-button-next:hover,
.hero-section .swiper-button-prev:hover {
    background: var(--primary);
}

.hero-section .swiper-button-next::after,
.hero-section .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.hero-section .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 30px;
    height: 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.hero-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-light);
    width: 50px;
}

/* Floating Shapes */
.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(70, 130, 180, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* ============================================
   BOOKING SECTION
============================================ */
.booking-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    border: 1px solid var(--border);
}

.booking-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 15px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--light-bg);
    border: 2px solid transparent;
    color: var(--text);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.tab-btn:hover {
    background: rgba(70, 130, 180, 0.1);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.tab-btn i {
    font-size: 18px;
}

.booking-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: var(--radius);
    padding: 12px 16px;
    transition: var(--transition);
}

.input-group-custom:focus-within {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(70, 130, 180, 0.1);
}

.input-group-custom i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 16px;
}

.input-group-custom input,
.input-group-custom select {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

.btn-search {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
    min-height: 50px;
    cursor: pointer;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(70, 130, 180, 0.4);
}

/* ============================================
   STATS SECTION
============================================ */
.stats-section {
    padding: 50px 0;
    background: var(--light-bg);
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
}

/* ============================================
   SECTION HEADERS
============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: rgba(70, 130, 180, 0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deals-badge {
    background: rgba(255, 120, 73, 0.1);
    color: var(--accent);
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text);
    font-size: 16px;
}

/* ============================================
   WHY CHOOSE US
============================================ */
.why-section {
    padding: 100px 0;
    background: var(--white);
}

.feature-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text);
    font-size: 14px;
}

/* ============================================
   FLASH DEALS
============================================ */
.deals-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.countdown-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
}

.countdown-timer {
    display: flex;
    gap: 12px;
}

.time-box {
    background: var(--dark);
    color: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius);
    text-align: center;
    min-width: 70px;
    position: relative;
    overflow: hidden;
}

.time-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), transparent);
    opacity: 0.3;
}

.time-box span {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    position: relative;
}

.time-box small {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    position: relative;
    letter-spacing: 1px;
}

.deal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.deal-card.featured-deal {
    border: 2px solid var(--accent);
    transform: scale(1.02);
}

.deal-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.deal-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.deal-tag-hot {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.deal-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.deal-route {
    background: var(--light-bg);
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    width: fit-content;
}

.deal-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.deal-content > p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 15px;
}

.deal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.deal-features span {
    background: var(--light-bg);
    color: var(--text);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
}

.deal-features i {
    color: var(--primary);
    margin-right: 4px;
}

.deal-price {
    margin-top: auto;
    padding-top: 15px;
    border-top: 2px dashed var(--border);
}

.old-price {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 15px;
    margin-right: 10px;
}

.new-price {
    color: var(--accent);
    font-size: 26px;
    font-weight: 800;
}

/* ============================================
   SERVICES SECTION
============================================ */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--border);
}

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

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(70, 130, 180, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-link {
    color: var(--white);
    background: var(--white);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    transform: translateY(20px);
}

.service-card:hover .service-link {
    transform: translateY(0);
}

.service-link:hover {
    background: var(--dark);
    color: var(--white);
}

.service-content {
    padding: 30px;
    flex: 1;
    position: relative;
}

.service-icon-small {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    top: -30px;
    right: 25px;
    border: 4px solid var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon-small {
    background: var(--primary);
    color: var(--white);
    transform: rotate(360deg);
}

.service-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-content > p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 20px;
}

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

.service-list li {
    padding: 6px 0;
    color: var(--text);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: var(--success);
    font-size: 12px;
    background: rgba(46, 204, 113, 0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin: 20px 10px;
    position: relative;
    border-top: 4px solid var(--primary);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 50px;
    color: var(--primary);
    opacity: 0.15;
}

.testimonial-card p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.testimonial-author h5 {
    font-size: 16px;
    margin: 0;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--muted);
}

/* ============================================
   NEWSLETTER
============================================ */
.newsletter-section {
    padding: 80px 0;
    background: var(--white);
}

.newsletter-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 50px;
    border-radius: var(--radius-lg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.newsletter-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -75px;
    left: -75px;
}

.newsletter-card h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 10px;
    position: relative;
}

.newsletter-card h2 i {
    color: var(--primary-light);
    margin-right: 10px;
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    outline: none;
}

.newsletter-form button {
    padding: 14px 30px;
    border-radius: 50px;
    background: var(--dark);
    color: var(--white);
    border: 2px solid var(--dark);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ============================================
   FOOTER
============================================ */
.main-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 22px;
    margin: 10px 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    background: var(--white);
    border-radius: 50%;
    padding: 5px;
}

.footer-widget > p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-widget h5 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-links i {
    font-size: 10px;
    color: var(--primary);
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-light);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.copyright strong {
    color: var(--white);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

/* ============================================
   BACK TO TOP
============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1199px) {
    .slide-content h1 { font-size: 48px; }
    .section-header h2 { font-size: 36px; }
}

@media (max-width: 991px) {
    .hero-section { height: 80vh; }
    .slide-content h1 { font-size: 40px; }
    .auth-buttons { margin-top: 15px; }
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius);
        margin-top: 15px;
        box-shadow: var(--shadow-md);
    }
    .newsletter-card { padding: 30px; text-align: center; }
    .newsletter-card .col-lg-6 { margin-bottom: 20px; }
}

@media (max-width: 767px) {
    .hero-section { height: 70vh; min-height: 500px; }
    .slide-content h1 { font-size: 32px; }
    .slide-content p { font-size: 15px; }
    .slide-buttons { flex-direction: column; align-items: stretch; }
    .slide-buttons .btn { width: 100%; }
    .section-header h2 { font-size: 28px; }
    .why-section, .deals-section, .services-section, .testimonials-section { padding: 60px 0; }
    .top-bar { display: none; }
    .top-info a { font-size: 12px; }
    .booking-card { padding: 20px; }
    .tab-btn { padding: 10px 16px; font-size: 13px; }
    .countdown-timer { gap: 6px; }
    .time-box { min-width: 55px; padding: 10px 12px; }
    .time-box span { font-size: 20px; }
    .footer-bottom-links { justify-content: center; margin-top: 15px; }
    .copyright { text-align: center; }
    .deal-card.featured-deal { transform: none; }
}

@media (max-width: 575px) {
    .slide-content h1 { font-size: 26px; }
    .booking-tabs { gap: 5px; }
    .tab-btn { flex: 1; justify-content: center; }
}
