/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #e18829;
    --secondary-color: #F6BE00;
    --dark-color: #1a2c1e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius: 12px;
    --container-width: 1200px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #d97a1f);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(225, 136, 41, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d97a1f, var(--primary-color));
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(225, 136, 41, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #e6b400);
    color: var(--dark-color);
    box-shadow: 0 5px 20px rgba(246, 190, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #e6b400, var(--secondary-color));
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(246, 190, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* ===== HEADER ===== */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

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

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.top-bar-info a:hover {
    color: var(--secondary-color);
}

.top-bar-info i {
    color: var(--secondary-color);
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Main Header */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

header.scrolled {
    top: 0;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo */
.site-branding {
    display: flex;
    align-items: center;
}

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

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-sub {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

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

.nav-list {
    display: flex;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 12px 20px;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(225, 136, 41, 0.1);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(225, 136, 41, 0.1);
}

/* Dropdown Menu */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    padding: 10px 0;
    border-top: 3px solid var(--primary-color);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: rgba(225, 136, 41, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 30px;
}

.dropdown-content a i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

/* Book Now Button */
.book-now-btn {
    margin-left: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background: var(--dark-color);
    transform: rotate(90deg);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(26, 44, 30, 0.8), rgba(26, 44, 30, 0.9)), 
                url('https://images.unsplash.com/photo-1516426122078-c23e76319801?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 1;
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--secondary-color);
    position: relative;
}

.hero h1 span:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(246, 190, 0, 0.3);
    z-index: -1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contact Page Hero */
.contact-hero {
    min-height: 50vh;
    padding: 150px 0;
}

.tour-hero {
    min-height: 50vh;
    padding: 150px 0;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: var(--light-color);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(225, 136, 41, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.feature-card:hover:before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-card h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ===== PACKAGES SECTION ===== */
.packages {
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.packages:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(225, 136, 41, 0.03), transparent);
    pointer-events: none;
}

.packages-slider-container {
    position: relative;
    padding: 0 80px;
}

.packages-slider {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.packages-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 30px;
}

.package-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(225, 136, 41, 0.15);
    min-width: 0;
    position: relative;
}

.package-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 136, 41, 0.05), rgba(246, 190, 0, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.package-card:hover:before {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(225, 136, 41, 0.3);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color), #e6b400);
    color: var(--dark-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(246, 190, 0, 0.3);
    letter-spacing: 1px;
}

.package-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.package-img:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.package-card:hover .package-img img {
    transform: scale(1.15);
}

.package-content {
    padding: 35px;
    position: relative;
    z-index: 2;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(225, 136, 41, 0.1);
}

.package-title h3 {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.package-duration {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(225, 136, 41, 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    display: inline-flex;
}

.package-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 3px 10px rgba(225, 136, 41, 0.2);
}

.package-price span {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Package Features */
.package-features {
    margin-bottom: 30px;
}

.package-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0;
    padding: 0;
}

.package-features li {
    display: flex;
    align-items: center;
    min-height: 50px;
    gap: 12px;
    padding: 10px 12px;
    font-size: 0.95rem;
    color: var(--text-color);
    background: rgba(225, 136, 41, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(225, 136, 41, 0.1);
    line-height: 1.3;
}

.package-features i {
    color: var(--secondary-color);
    font-size: 1rem;
    background: rgba(246, 190, 0, 0.1);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.package-features span {
    flex: 1;
    font-weight: 500;
}

/* Package Slider Navigation */
.packages-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.packages-slider-nav:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(225, 136, 41, 0.2), transparent);
    transform: translateY(-50%);
}

.packages-slider-dots {
    display: flex;
    gap: 12px;
    background: var(--white);
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.packages-slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.packages-slider-dot:before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: rgba(225, 136, 41, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.packages-slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(225, 136, 41, 0.2);
}

.packages-slider-dot.active:before {
    opacity: 1;
}

.packages-slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.packages-slider-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.packages-slider-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(225, 136, 41, 0.3);
    color: var(--white);
}

.packages-slider-btn:hover:before {
    opacity: 1;
}

.packages-slider-btn i {
    position: relative;
    z-index: 2;
}

.packages-slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.packages-slider-btn:disabled:hover {
    background: var(--white);
    color: var(--primary-color);
}

.packages-slider-btn:disabled:hover:before {
    opacity: 0;
}

/* ===== DESTINATIONS SECTION ===== */
.destinations {
    background: var(--light-color);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.destination-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    height: 400px;
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 44, 30, 0.9), transparent);
    padding: 40px 30px 30px;
    color: var(--white);
}

.destination-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.destination-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.destination-overlay p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--white);
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(225, 136, 41, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--secondary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-location {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.testimonial-stars {
    color: var(--secondary-color);
    margin: 10px 0;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-text:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-color);
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* ===== STATS SECTION ===== */
.stats {
    background: linear-gradient(rgba(26, 44, 30, 0.9), rgba(26, 44, 30, 0.95)), 
                url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    padding: 40px 20px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color), #d97a1f);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.newsletter p {
    opacity: 0.9;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 20px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 20px 40px;
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.google-reviews {
    background: var(--light-color);
    padding: 100px 0;
}

.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 300px;
}

.google-rating-number {
    text-align: center;
}

.rating-score {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.rating-stars {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 10px 0;
}

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

.google-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 25px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 300px;
}

.google-badge i {
    color: #4285F4;
    font-size: 3rem;
}

.google-badge-text h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.google-badge-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(225, 136, 41, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
    opacity: 0.7;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.review-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.review-content {
    margin-bottom: 20px;
}

.review-text {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.review-text:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4285F4;
    font-weight: 600;
    font-size: 0.9rem;
}

.review-platform i {
    font-size: 1.2rem;
}

.view-all-reviews {
    text-align: center;
    margin-top: 50px;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #d97a1f);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.contact-info-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form .form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-form .form-group {
    flex: 1;
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(225, 136, 41, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(rgba(26, 44, 30, 0.8), rgba(26, 44, 30, 0.9)), 
                url('<?php echo TOPMA_TOURS_URI . '/assets/images/map-bg.jpg'; ?>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: var(--border-radius);
}

.map-content {
    text-align: center;
    padding: 40px;
}

.map-content h3 {
    color: var(--white);
    margin-bottom: 15px;
}

/* ===== TOUR PACKAGES GRID ===== */
.tour-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.tour-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color), #e6b400);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.tour-duration {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-card-content {
    padding: 30px;
}

.tour-title {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.tour-title a {
    color: inherit;
    transition: var(--transition);
}

.tour-title a:hover {
    color: var(--primary-color);
}

.tour-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tour-features ul {
    margin: 20px 0;
}

.tour-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.tour-features i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(225, 136, 41, 0.1);
}

.tour-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tour-price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.tour-actions {
    display: flex;
    gap: 10px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 100px 0 30px;
    position: relative;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    max-width: 200px;
    margin-bottom: 25px;
}

.footer-logo-img img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-about p {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links h3, 
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

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

.footer-links ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(10px);
}

.footer-contact p {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social-icons a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

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

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

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.8rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .package-card {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .packages-slider-container {
        padding: 0 60px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .packages-slider-container {
        padding: 0 50px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .google-reviews-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .google-rating-summary,
    .google-badge {
        min-width: 100%;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-info {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        padding: 100px 30px 30px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-link {
        padding: 15px 20px;
        border-radius: 10px;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-color);
        margin: 10px 0;
        display: none;
        width: 100%;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }
    
    .mobile-menu-btn.active i:before {
        content: '\f00d';
    }
    
    .book-now-btn {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card {
        flex: 0 0 100%;
    }
    
    .packages-slider-container {
        padding: 0 40px;
    }
    
    .packages-slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 50px;
        margin-bottom: 10px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .logo-main {
        font-size: 26px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .tour-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-score {
        font-size: 3.5rem;
    }
    
    .google-rating-summary {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .top-bar {
        padding: 15px 0;
    }
    
    .top-bar-info a {
        font-size: 0.85rem;
    }
    
    .packages-slider-container {
        padding: 0 20px;
    }
    
    .packages-slider-nav {
        gap: 15px;
        margin-top: 40px;
    }
    
    .packages-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .package-img {
        height: 220px;
    }
    
    .package-content {
        padding: 25px;
    }
    
    .package-price {
        font-size: 2.2rem;
    }
    
    .tour-card-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .tour-actions {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}
