/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #fdfcfa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8B4513;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b5b4f;
    margin-bottom: 3rem;
    max-width: 600px;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

div#nav-menu a {
    padding: 10px 7px;
}

div#nav-menu  a.nav-link.book-now-btn {
    padding: 10px 20px !important;
}
.bloginnebx {
    padding: 30px 0px;
}


   .bloginnebx   .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
.bloginnebx .card {
    position: relative;
    display: flex
;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}

.bloginnebx .card  a {
    color: #000;
    text-decoration: none;
}
.bloginnebx .card  h5.card-title {
    text-align: center;
    font-size: 18px;
    overflow: hidden;
    align-items: center;
}

.bloginnebx .card button.btn.btn-primary {
    margin-top: 15px;
}
.bloginnebx .card .card-img {
    height: 380px;
    width: 100%;
    overflow: hidden;
}
.bloginnebx .card img { width: 100%;
  
}
.bloginnebx .card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: auto;
    max-width: 90vw;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #8B4513;
    white-space: nowrap;
}

.tagline {
    font-size: 0.8rem;
    color: #6b5b4f;
    margin: 0;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #2c1810;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background-color: #f4f1eb;
    color: #8B4513;
}

.book-now-btn {
    background-color: #C59D5F !important;
    color: white !important;
    font-weight: 600;
}

.book-now-btn:hover {
    background-color: #B8935A !important;
    transform: translateY(-2px);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c1810;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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

.hero-slide {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.7) 0%, rgba(139, 69, 19, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.5;
}

.btn-hero {
    display: inline-block;
    background-color: #C59D5F;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #C59D5F;
}

.btn-hero:hover {
    background-color: transparent;
    color: #C59D5F;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 157, 95, 0.3);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(197, 157, 95, 0.8);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: #C59D5F;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #fdfcfa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Footprint Framework */
.footprint-framework {
    padding: 100px 0;
    background-color: #f8f6f0;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.framework-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.framework-item:hover {
    transform: translateY(-10px);
}

.framework-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.framework-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #8B4513;
}

.framework-description {
    color: #6b5b4f;
    line-height: 1.6;
}

/* Winter Tours Section */
.winter-tours-section {
    padding: 100px 0;
    background-color: #fdfcfa;
}

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

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

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

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

.tour-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(197, 157, 95, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.tour-content {
    padding: 30px;
}

.tour-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #8B4513;
}

.tour-description {
    color: #6b5b4f;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.highlight {
    background: #f4f1eb;
    color: #8B4513;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tour-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-from {
    font-size: 0.9rem;
    color: #6b5b4f;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
}

.price-per {
    font-size: 0.85rem;
    color: #6b5b4f;
}

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

.btn-primary,
.btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #C59D5F;
    color: white;
}

.btn-primary:hover {
    background-color: #B8935A;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-secondary:hover {
    background-color: #8B4513;
    color: white;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #f8f6f0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #C59D5F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-details h4 {
    margin-bottom: 5px;
    color: #8B4513;
}

.contact-details span {
    color: #6b5b4f;
}

/* Form Styles */
.inquiry-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #8B4513;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c1810;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C59D5F;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: #2c1810;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-logo .logo-text {
    font-size: 1.5rem;
    color: #C59D5F;
    margin-bottom: 10px;
    display: block;
}

.footer-tagline {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #C59D5F;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C59D5F;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #C59D5F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #B8935A;
    transform: translateY(-3px);
}

.contact-email a {
    color: #C59D5F;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #ccc;
}
    .bloginnebx .col-md-4 {
        width: 100%;
        margin-bottom: 10px;
    }
.bloginnebx .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
    padding: 10px;
}
.bloginnebx .row,  .blogdtl .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex
;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}

.blogdtl {
    padding: 30px 0px;
}
   .blogdtl .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
        padding: 5px;
    }
   .blogdtl  .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
        padding: 5px;
    }

     .blogdtl   #recent-posts-2 ul li a {
    color: #9f522c; text-decoration: none;
    display: inline;
    transition: all 0.3s ease 0s;
}
   .blogdtl  h3.widgettitle {
    color: #002147;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 10px;
    position: relative;
    line-height: 24px;
}
.img-fluid {
     width: 100%;
         max-width: 100%;
}
   .blogdtl  article h2 {
    margin-bottom: 15px;
}

.ptcont{
        border: 1px solid #eee;
    padding: 10px ;
}
.blogdtl #recent-posts-2 ul li a {

    font-size: 15px;
}
div#recent-posts-2 ul li {
    margin-bottom: 10px;
}
.blogdtl ul {
    padding-left: 20px;
    border: 1px solid #eee;
    padding: 10px 10px 10px 29px;
}




   .youmayv .owl-carousel .owl-nav button.owl-next,     .youmayv .owl-carousel .owl-nav button.owl-prev {
    background: #c59d5f;
    color: #fff;
    border: none;
    padding: 0 !important;
    font: inherit;
    width: 40px;
    height: 40px;
}

   .youmayv  .card {
      border: none;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      background: #fff;
      margin: 10px;
    }

     .youmayv   .card-img-top {
      height: auto;
      object-fit: cover;
    }

      .youmayv  .card-title {
      font-size: 18px;
      font-weight: 600;
    }

     .youmayv   .owl-nav {
      position: absolute;
      top: 35%;
      width: 100%;
      display: flex;
      justify-content: space-between;
    }

     .youmayv   .owl-nav button.owl-prev,
     .youmayv   .owl-nav button.owl-next {
      background: #007bff;
      color: #fff;
      padding: 10px 15px;
      border-radius: 50%;
      border: none;
      font-size: 20px;
      transition: background 0.3s ease;
    }

     .youmayv   .owl-nav button:hover {
      background: #0056b3;
    }

    .youmayv    .owl-dots {
      text-align: center;
      margin-top: 15px;
    }

    .youmayv    .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #ccc;
      display: block;
      border-radius: 50%;
    }

      .youmayv  .owl-dot.active span {
      background: #007bff;
    }
 

    button.btn.btn-primary.w-100 {
    width: 100%;
}

.p-0 {
     padding: 0px;
}

/* Responsive Design */
@media (max-width: 768px) {

.bloginnebx.youmayv {
    display: block;
    width: 100%;
}
    section.blogbx {
    padding: 15px;
}

    .blogdtl article h2 {
    margin-bottom: 15px;

    max-width: 100%;
    padding: 0px 18px;
}
    .blogdtl .col-md-9, .blogdtl .col-md-3 {
    flex: 0 0 auto;
    width: 100%;
    padding: 5px;
}

    .bloginnebx .col-md-4 {

    width: 100%;
}
    .navbar {
        top: 10px;
        padding: 8px 15px;
        width: 95%;
        max-width: none;
    }
    
    .nav-container {
        gap: 10px;
    }
    
    .nav-logo {
        align-items: center;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 0.7rem;
        text-align: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        gap: 30px;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Hero Section */
    .hero-section {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-slide {
        background-position: center center;
        background-size: cover;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 0 15px;
        max-width: 90%;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }
    
    .btn-hero {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Mobile Swiper Navigation */
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
    
    .swiper-button-next {
        right: 10px;
    }
    
    .swiper-button-prev {
        left: 10px;
    }
    
    .swiper-pagination {
        bottom: 20px;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tour-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .tour-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .framework-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .navbar {
        padding: 6px 10px;
        width: 98%;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .tagline {
        font-size: 0.6rem;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .btn-hero {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
        margin-top: -17px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .tour-card {
        margin: 0 10px;
    }
    
    .tour-content {
        padding: 20px;
    }
    
    .inquiry-form-container {
        padding: 25px;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-content {
        max-width: 80%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .navbar {
        padding: 5px 10px;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
}


/* Destinations Section */
.destinations-section {
    padding: 100px 0;
    background-color: #f8f6f0;
}

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

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.destination-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.destination-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(197, 157, 95, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.destination-content {
    padding: 30px;
}

.destination-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #8B4513;
}

.destination-description {
    color: #6b5b4f;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.btn-destination {
    background-color: #C59D5F;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-destination:hover {
    background-color: #B8935A;
    transform: translateY(-2px);
}

.destinations-cta {
    text-align: center;
    margin-top: 60px;
}

.destinations-note {
    color: #6b5b4f;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.view-all-destinations {
    background-color: #8B4513;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-destinations:hover {
    background-color: #7A3D0F;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid #eee;
}

.modal-title {
    font-size: 1.8rem;
    color: #8B4513;
    margin: 0;
}

.modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #8B4513;
}

.modal-body {
    padding: 20px 40px 40px;
}

.booking-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e5e5e5;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: #C59D5F;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.step.active .step-label {
    color: #8B4513;
    font-weight: 600;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #8B4513;
    text-align: center;
}

.interest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.interest-card {
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.interest-card:hover {
    border-color: #C59D5F;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(197, 157, 95, 0.2);
}

.interest-card input[type="radio"] {
    display: none;
}

.interest-card input[type="radio"]:checked + .card-content {
    color: #8B4513;
}

.interest-card input[type="radio"]:checked + .card-content .card-icon {
    background-color: #C59D5F;
}

.card-content {
    transition: color 0.3s ease;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f4f1eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px;
    transition: background-color 0.3s ease;
}

.card-content h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: inherit;
}

.card-content p {
    font-size: 0.9rem;
    color: #6b5b4f;
    margin: 0;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 15px;
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .booking-steps {
        gap: 10px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .interest-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .destination-content {
        padding: 25px;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-footer button {
        width: 100%;
    }
}


/* About Section Explore More Button */
.about-cta {
    margin-top: 30px;
}

.btn-explore-more {
    background: linear-gradient(135deg, #C59D5F 0%, #B8935A 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(197, 157, 95, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-explore-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(197, 157, 95, 0.4);
    background: linear-gradient(135deg, #B8935A 0%, #A67F4B 100%);
}

.btn-explore-more:active {
    transform: translateY(-1px);
}

.btn-explore-more .btn-text {
    transition: transform 0.3s ease;
}

.btn-explore-more .btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-explore-more:hover .btn-icon {
    transform: translateX(5px);
}

.btn-explore-more::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: left 0.5s ease;
}

.btn-explore-more:hover::before {
    left: 100%;
}

/* Mobile responsive for explore more button */
@media (max-width: 768px) {
    .btn-explore-more {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .about-cta {
        margin-top: 25px;
        text-align: center;
    }
}


/* Comprehensive Journeys Section */
.journeys-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
}

.journey-categories {
    margin-top: 60px;
}

.journey-category {
    margin-bottom: 80px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.category-title {
    font-size: 2.2rem;
    color: #8B4513;
    margin-bottom: 15px;
    font-weight: 700;
}

.category-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.journey-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #C59D5F;
}

.journey-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.journey-content {
    padding: 25px;
}

.journey-title {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 12px;
    font-weight: 600;
}

.journey-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.journey-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.journey-highlights span {
    background: linear-gradient(135deg, #C59D5F 0%, #B8935A 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.journeys-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 20px;
    color: white;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: linear-gradient(135deg, #C59D5F 0%, #B8935A 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(197, 157, 95, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(197, 157, 95, 0.4);
    background: linear-gradient(135deg, #B8935A 0%, #A67F4B 100%);
}

/* Mobile responsive for journeys section */
@media (max-width: 768px) {
    .journeys-section {
        padding: 60px 0;
    }
    
    .journey-category {
        padding: 30px 20px;
        margin-bottom: 60px;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
    
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .journey-content {
        padding: 20px;
    }
    
    .journeys-cta {
        padding: 40px 20px;
        margin-top: 40px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
    }
}


/* Accessibility Improvements */

/* Focus indicators for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid #C59D5F;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-content h1,
    .hero-content p {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .btn-hero,
    .btn-primary,
    .btn-explore-more {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .swiper-slide,
    .journey-card,
    .tour-card,
    .btn-hero,
    .btn-primary,
    .btn-explore-more {
        transition: none;
    }
    
    .hero-swiper {
        animation: none;
    }
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Ensure minimum touch target size (44px) */
.nav-link,
.btn-hero,
.btn-primary,
.btn-explore-more,
.hamburger {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Improve color contrast ratios */
.hero-description {
    color: #f5f5f5; /* Improved contrast on dark backgrounds */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.section-subtitle {
    color: #555; /* Improved contrast ratio 4.5:1 */
}

.journey-desc,
.tour-description {
    color: #444; /* Improved contrast ratio 4.5:1 */
}

/* Lazy loading placeholder */
.lazy-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Performance optimizations */
.hero-slide,
.journey-image img,
.tour-image img,
.about-img {
    will-change: transform;
    backface-visibility: hidden;
}

/* Print styles */
@media print {
    .navbar,
    .hero-section,
    .booking-modal,
    .swiper-pagination,
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .section-title {
        page-break-after: avoid;
    }
}


/* Payment Page Styles */
.payment-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8e2d5 100%);
    min-height: 100vh;
}

.payment-header {
    text-align: center;
    margin-bottom: 60px;
}

.payment-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.payment-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-summary {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.booking-summary h2 {
    font-family: 'Playfair Display', serif;
    color: #8B4513;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.tour-details h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.pricing-breakdown {
    margin-top: 30px;
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
}

.price-item.total {
    border-top: 2px solid #8B4513;
    font-weight: 600;
    font-size: 1.2rem;
    color: #8B4513;
    margin-top: 15px;
    padding-top: 15px;
}

.payment-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.payment-form h2 {
    font-family: 'Playfair Display', serif;
    color: #8B4513;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.payment-method {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #8B4513;
    background: #faf8f5;
}

.payment-method input[type="radio"] {
    margin-right: 15px;
}

.payment-method label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.method-title {
    font-weight: 600;
    color: #2c3e50;
    margin-right: 15px;
}

.method-amount {
    font-weight: 700;
    color: #8B4513;
    margin-right: 15px;
}

.method-desc {
    color: #666;
    font-size: 0.9rem;
}

.pay-button {
    width: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.security-features {
    margin-top: 50px;
    text-align: center;
}

.security-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.security-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.security-icon {
    font-size: 1.5rem;
}

/* Gallery Page Styles */
.gallery-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
}

.gallery-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.gallery-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 20px auto 0;
}

.gallery-filters {
    background: #f8f6f0;
    padding: 40px 0;
    text-align: center;
}

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

.filter-btn {
    background: white;
    border: 2px solid #8B4513;
    color: #8B4513;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8B4513;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.gallery-section {
    padding: 80px 0;
    background: white;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-stats {
    background: #8B4513;
    color: white;
    padding: 60px 0;
}

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

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

.gallery-cta {
    background: #f8f6f0;
    text-align: center;
    padding: 80px 0;
}

.gallery-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    opacity: 0.7;
}

.modal-nav {
    margin-top: 20px;
}

.nav-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.4);
}

#modal-caption {
    color: white;
    margin-top: 20px;
}

#modal-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    background: #f8f6f0;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.last-updated {
    color: #666;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    color: #8B4513;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.legal-section h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.contact-details {
    background: #f8f6f0;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details a {
    color: #8B4513;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Terms Agreement Checkbox */
.terms-agreement {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 12px;
    transform: scale(1.2);
}

.checkbox-label a {
    color: #8B4513;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .payment-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .payment-form,
    .booking-summary {
        padding: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        margin: 0 20px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .legal-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .payment-header h1 {
        font-size: 2.2rem;
    }
    
    .gallery-header h1 {
        font-size: 2.5rem;
    }
    
    .modal-content {
        width: 95%;
        padding: 10px;
    }
    
    .close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .payment-methods {
        gap: 10px;
    }
    
    .payment-method {
        padding: 15px;
    }
    
    .method-title,
    .method-amount {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .security-items {
        grid-template-columns: 1fr;
    }
}

