/* ==========================================================================
   BuiTravel Theme Main Styles
   ========================================================================== */

/* Header Styles
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid rgba(var(--border), 0.4);
    background-color: rgba(var(--background), 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

@supports (backdrop-filter: blur(8px)) {
    .site-header {
        background-color: rgba(var(--background), 0.6);
    }
}

.header-main {
    padding: 0;
}

.header-main-content {
    display: flex;
    height: 4rem;
    max-width: 80rem;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-branding .custom-logo-link {
    display: flex;
    align-items: center;
}

.site-branding .custom-logo {
    height: 2.5rem;
    width: auto;
}

.site-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    margin: 0;
}

.site-title a {
    color: var(--foreground);
    transition: color var(--default-transition-duration) var(--default-transition-timing-function);
}

.site-title a:hover {
    color: var(--primary);
}

.site-description {
    display: none;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    position: relative;
    transition: background-color 0.3s ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle.active .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle.active .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .menu-toggle-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    align-items: center;
}

.primary-menu li {
    margin: 0;
}

.primary-menu li a {
    color: var(--foreground);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    padding: 0.5rem 0;
    display: block;
    transition: color var(--default-transition-duration) var(--default-transition-timing-function);
}

.primary-menu li a:hover {
    color: var(--primary);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.header-actions .btn {
    height: 2rem;
    padding: 0 0.75rem;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    border-radius: calc(var(--radius) - 2px);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    cursor: pointer;
    transition: all var(--default-transition-duration) var(--default-transition-timing-function);
}

.header-actions .btn:hover {
    opacity: 0.9;
}

.header-actions .btn:focus-visible {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px rgba(var(--ring), 0.5);
}

/* Hide header-top section */
.header-top {
    display: none;
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
    
    .menu-container {
        display: flex !important;
    }
    
    .header-actions {
        display: inline-flex;
    }
}

/* Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 6rem 1rem;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 8rem 1rem;
    }
}

.hero-section .container {
    max-width: var(--container-4xl);
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--text-4xl--line-height);
    letter-spacing: var(--tracking-tight);
    text-wrap: balance;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--text-6xl);
        line-height: var(--text-6xl--line-height);
    }
}

.hero-subtitle {
    margin-bottom: 2rem;
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: rgba(255, 255, 255, 0.9);
    text-wrap: pretty;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: var(--text-xl);
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

/* Button Styles
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    border-radius: var(--radius);
    transition: all var(--default-transition-duration) var(--default-transition-timing-function);
    text-decoration: none;
    cursor: pointer;
    height: 2.5rem;
    padding: 0 1.5rem;
    outline: none;
    border: 1px solid transparent;
}

.btn:focus-visible {
    outline: 3px solid rgba(var(--ring), 0.5);
    outline-offset: 2px;
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

@media (hover: hover) {
    .btn-secondary:hover {
        background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
    }
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: var(--primary-foreground);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (hover: hover) {
    .btn-outline:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* Legacy Hero Styles
   ========================================================================== */

.hero-slide {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

/* Featured Tours Section
   ========================================================================== */

.featured-tours-section {
    padding: 4rem 1rem;
}

@media (min-width: 768px) {
    .featured-tours-section {
        padding: 6rem 1rem;
    }
}

.featured-tours-section .container {
    max-width: var(--container-7xl);
    margin: 0 auto;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title {
    margin-bottom: 1rem;
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--text-3xl--line-height);
    text-wrap: balance;
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--text-4xl);
        line-height: var(--text-4xl--line-height);
    }
}

.section-subtitle {
    color: var(--muted-foreground);
    line-height: var(--leading-relaxed);
}

.tours-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tour-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tour-card {
    background-color: var(--card);
    color: var(--card-foreground);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all var(--default-transition-duration) var(--default-transition-timing-function);
}

@media (hover: hover) {
    .tour-card:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
}

.tour-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.tour-card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s var(--default-transition-timing-function);
}

@media (hover: hover) {
    .tour-card:hover .tour-card-image img {
        transform: scale(1.05);
    }
}

.tour-card-content {
    padding: 1.5rem;
}

.tour-location {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--text-sm);
    color: var(--muted-foreground);
}

.tour-location svg {
    height: 1rem;
    width: 1rem;
}

.tour-card-title {
    margin-bottom: 0.75rem;
    font-size: var(--text-xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--text-xl--line-height);
    text-wrap: balance;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tour-rating svg {
    height: 1rem;
    width: 1rem;
    fill: var(--accent);
    color: var(--accent);
}

.tour-rating .font-medium {
    font-weight: var(--font-weight-medium);
}

.tour-rating .text-sm {
    font-size: var(--text-sm);
    color: var(--muted-foreground);
}

.tour-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-price .text-lg {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
}

.tour-price .line-through {
    text-decoration: line-through;
}

.view-all-tours {
    margin-top: 3rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: 1px solid transparent;
}

@media (hover: hover) {
    .btn-primary:hover {
        opacity: 0.9;
    }
}

/* Utility Classes
   ========================================================================== */

.border {
    border: 1px solid var(--border);
}

.p-6 {
    padding: 1.5rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-12 {
    margin-top: 3rem;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.h-4 {
    height: 1rem;
}

.w-4 {
    width: 1rem;
}

.h-full {
    height: 100%;
}

.w-full {
    width: 100%;
}

.max-w-7xl {
    max-width: var(--container-7xl);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.grid {
    display: grid;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.overflow-hidden {
    overflow: hidden;
}

.object-cover {
    object-fit: cover;
}

.inline-flex {
    display: inline-flex;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.transition-all {
    transition: all var(--default-transition-duration) var(--default-transition-timing-function);
}

.transition-transform {
    transition: transform 0.3s var(--default-transition-timing-function);
}

@media (hover: hover) {
    .hover\:scale-105:hover {
        transform: scale(1.05);
    }
    
    .hover\:shadow-lg:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    
    .hover\:bg-primary\/90:hover {
        opacity: 0.9;
    }
}

@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
    
    .sm\:grid-cols-1 {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 768px) {
    .md\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    
    .md\:py-32 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    
    .md\:text-4xl {
        font-size: var(--text-4xl);
        line-height: var(--text-4xl--line-height);
    }
    
    .md\:text-6xl {
        font-size: var(--text-6xl);
        line-height: var(--text-6xl--line-height);
    }
    
    .md\:text-xl {
        font-size: var(--text-xl);
        line-height: var(--text-xl--line-height);
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}

.aspect-\[4\/3\] {
    aspect-ratio: 4 / 3;
}

.aspect-\[21\/9\] {
    aspect-ratio: 21 / 9;
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.leading-relaxed {
    line-height: var(--leading-relaxed);
}

.line-through {
    text-decoration: line-through;
}

.font-medium {
    font-weight: var(--font-weight-medium);
}

.font-semibold {
    font-weight: var(--font-weight-semibold);
}

.font-bold {
    font-weight: var(--font-weight-bold);
}

.text-sm {
    font-size: var(--text-sm);
    line-height: var(--text-sm--line-height);
}

.text-lg {
    font-size: var(--text-lg);
    line-height: var(--text-lg--line-height);
}

.text-xl {
    font-size: var(--text-xl);
    line-height: var(--text-xl--line-height);
}

.text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--text-3xl--line-height);
}

.text-4xl {
    font-size: var(--text-4xl);
    line-height: var(--text-4xl--line-height);
}

.rounded-xl {
    border-radius: calc(var(--radius) * 1.5);
}

.rounded-md {
    border-radius: var(--radius);
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.fill-accent {
    fill: var(--accent);
}

.text-accent {
    color: var(--accent);
}

.text-card-foreground {
    color: var(--card-foreground);
}

.bg-card {
    background-color: var(--card);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-muted {
    background-color: var(--muted);
}

.text-primary-foreground {
    color: var(--primary-foreground);
}

.h-10 {
    height: 2.5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.outline-none {
    outline: none;
}

.opacity-30 {
    opacity: 0.3;
}

.gap-8 {
    gap: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.h-8 {
    height: 2rem;
}

.w-8 {
    width: 2rem;
}

.h-16 {
    height: 4rem;
}

.w-16 {
    width: 4rem;
}

.rounded-full {
    border-radius: 9999px;
}

.bg-primary\/10 {
    background-color: rgba(var(--primary), 0.1);
}

.bg-muted\/30 {
    background-color: rgba(var(--muted), 0.3);
}

.icon-bg {
    background-color: color-mix(in oklab, var(--primary) 10%, transparent);
}

.why-choose-section {
    background-color: color-mix(in oklab, var(--muted) 30%, transparent);
}

.site-footer {
    background-color: color-mix(in oklab, var(--muted) 30%, transparent);
}

.text-primary {
    color: var(--primary);
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Legacy Section Styles
   ========================================================================== */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-search {
    background: var(--white);
    padding: 30px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.tour-search-form {
    display: flex;
    gap: 15px;
    align-items: end;
}

.search-field {
    flex: 1;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
}

/* Tours Grid
   ========================================================================== */

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tour-card {
    background: var(--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;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tour-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.1);
}

.tour-location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.tour-card-content {
    padding: 25px;
}

.tour-card-title {
    margin: 0 0 15px;
    font-size: 1.5rem;
}

.tour-card-title a {
    color: var(--text-color);
}

.tour-card-excerpt {
    color: #6b7280;
    margin-bottom: 15px;
}

.tour-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.tour-duration,
.tour-price {
    font-size: 14px;
    font-weight: 500;
}

.tour-price {
    color: var(--secondary-color);
    font-size: 18px;
}

/* Section Styles
   ========================================================================== */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* Features Grid
   ========================================================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2rem;
}

.feature-title {
    margin-bottom: 15px;
}

/* Testimonials
   ========================================================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: #4b5563;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-tour {
    font-size: 14px;
    color: #6b7280;
}

/* Blog Grid
   ========================================================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
}

.blog-title {
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--text-color);
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
}

/* Newsletter Section
   ========================================================================== */

.newsletter-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    margin: 60px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    min-width: 300px;
}

/* Footer
   ========================================================================== */

.site-footer {
    border-top: 1px solid rgba(var(--border), 0.4);
    background: rgba(var(--muted), 0.3);
}

.footer-widgets {
    padding: 3rem 0;
}

.footer-widgets .container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-widgets-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .footer-widgets-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-widget {
    display: flex;
    flex-direction: column;
}

.footer-widget h3,
.footer-widget .widget-title {
    margin-bottom: 1rem;
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
}

.footer-widget h4 {
    margin-bottom: 1rem;
    font-size: var(--text-sm) !important;
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
}

.footer-widget p {
    font-size: var(--text-sm);
    color: var(--muted-foreground);
    line-height: var(--leading-relaxed);
    margin: 0;
}

.footer-widget p.text-sm {
    font-size: var(--text-sm);
}

.footer-widget p.text-muted-foreground {
    color: var(--muted-foreground);
}

.footer-widget p.leading-relaxed {
    line-height: var(--leading-relaxed);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: var(--muted-foreground);
    font-size: var(--text-sm);
    transition: color var(--default-transition-duration) var(--default-transition-timing-function);
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--foreground);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-list li {
    margin: 0;
    color: var(--muted-foreground);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(var(--border), 0.4);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.copyright,
.copyright p {
    font-size: var(--text-sm);
    color: var(--muted-foreground);
    margin: 0;
    text-align: center;
}

.copyright a {
    color: var(--muted-foreground);
    transition: color var(--default-transition-duration) var(--default-transition-timing-function);
}

.copyright a:hover {
    color: var(--foreground);
}

.footer-logo img {
    height: auto;
    max-width: 150px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.footer-social .social-link {
    color: var(--muted-foreground);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xs);
    transition: all var(--default-transition-duration) var(--default-transition-timing-function);
}

.footer-social .social-link:hover {
    color: var(--foreground);
    background: rgba(var(--muted), 0.5);
}

/* Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .newsletter-content,
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .menu-toggle {
        display: inline-flex;
    }
    
    .menu-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
    }
    
    .primary-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .primary-menu li {
        width: 100%;
    }
    
    .primary-menu li a {
        padding: 0.75rem 1rem;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .tour-search-form {
        flex-direction: column;
    }
    
    .tours-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
