@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');

@font-face {
  font-family: "Chiffon Semi Bold";
  src: url("../fonts/Chiffon\ TRIAL\ SemiBold.woff") format("woff");
  font-weight: 600;     /* semi-bold weight */
  font-style: normal;
}

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

h1 {
    font-family: "Chiffon Semi Bold", serif;
    margin: 0;
    padding: 0;
}

p {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 150px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 1000;
}

/* Scrolled Navbar State */
.navbar.scrolled {
    background: rgba(255, 0, 4);
    backdrop-filter: blur(10px);
    padding: 15px 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .menu-btn,
.navbar.scrolled .menu-text {
    display: none;
    color: #fff;
}

.navbar.scrolled .nav-menu {
    display: flex;
}

.navbar.scrolled .nav-menu a {
    color: #fff;
}

.navbar.scrolled .book-now-btn {
    border-color: #fff;
}

.navbar.scrolled .book-now-btn a {
    color: #fff;
}

.navbar.scrolled .book-now-btn:hover {
    background: #fff;
}

.navbar.scrolled .book-now-btn:hover a {
    color: black;
}

/* Left Section */
.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.menu-btn span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.menu-text {
    color: white;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Center Section */
.nav-center {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar.scrolled .nav-center {
    position: static;
    transform: none;
    flex: 1;
    justify-content: flex-start;
}

.logo {
    color: white;
    font-size: 48px;
    text-decoration: none;
    font-family: 'Brush Script MT', cursive;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.logo img {
    height: 200px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo .logo-default {
    display: block;
}

.logo .logo-scrolled {
    display: none;
}

.navbar.scrolled .logo {
    font-size: 36px;
    margin-right: 40px;
    color: #000;
}

.navbar.scrolled .logo img {
    height: 80px;
}

.navbar.scrolled .logo .logo-default {
    display: none;
}

.navbar.scrolled .logo .logo-scrolled {
    display: block;
}

/* Horizontal Menu */
.nav-menu {
    display: none;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1.5px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.more-dropdown a::after {
    content: ' •••';
    margin-left: 2px;
}

/* Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    color: white;
    font-size: 12px;
    letter-spacing: 1.5px;
    cursor: pointer;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.dropdown-btn:hover {
    opacity: 0.8;
}

.arrow-down {
    font-size: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(40, 35, 30, 0.95);
    min-width: 200px;
    margin-top: 10px;
    border-radius: 4px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.book-now-btn {
    background: transparent;
    border: 1.5px solid white;
    border-radius: 50px;
    color: white;
    padding: 12px 30px;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* When `.book-now-btn` is used directly on an anchor, ensure there's no underline */
.book-now-btn {
    background: transparent;
    border: 1.5px solid white;
    border-radius: 50px;
    color: white;
    padding: 12px 30px;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

/* Backwards-compatible: if markup still nests an <a> inside, keep it un-decorated */
.book-now-btn a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.book-now-btn:hover {
    background: white;
    color: #28231e;
}

.book-now-btn:hover a {
    color: inherit;
}

/* Ensure scrolled navbar variant also has no underline and correct hover colors */
.navbar.scrolled .book-now-btn {
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

.navbar.scrolled .book-now-btn:hover {
    background: #fff;
    color: black;
}

/* Overlay Menu */
.overlay-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 460px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.96);
    z-index: 2000;
    transition: left 0.4s ease-in-out;
    overflow-y: auto;
}

.overlay-menu.active {
    left: 0;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: black;
    font-size: 36px;
    cursor: pointer;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.menu-content {
    padding: 100px 50px 50px;
}

.main-menu {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    text-decoration: none;
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: 400;
    padding: 10px 0;
    transition: padding-left 0.3s ease;
}

.menu-item:hover {
    padding-left: 10px;
}

.menu-item .arrow {
    font-size: 36px;
    font-weight: 300;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 40px 0;
}

.secondary-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.secondary-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1px;
    transition: padding-left 0.3s ease;
}

.secondary-menu a:hover {
    padding-left: 10px;
}

/* Hide mobile book now button on desktop */
.mobile-book-now {
    display: none;
}

/* Hero Section with Video */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Hero Video Styles */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.hero-h1-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Chiffon Semi Bold", serif;
}

.hero-h1-content h1{
    font-size: 55px;
    font-weight: 400;
    font-family: "Chiffon Semi Bold", serif;
    letter-spacing: 6px;
    margin-bottom: 20px;
    text-transform: none;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 400;
    font-family: "Chiffon Semi Bold", serif;
    letter-spacing: 6px;
    margin-bottom: 20px;
    text-transform: none;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    line-height: 1.3;
}

.hero-content p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 50px;
    font-size: 14px;
    letter-spacing: 3px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar {
        padding: 30px 40px;
    }
    
    .navbar.scrolled {
        padding: 15px 40px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 35px 40px;
    }
    
    .navbar.scrolled {
        padding: 35px 30px;
        justify-content: space-between;
    }
    
    .navbar.scrolled .nav-menu {
        display: none;
    }
    
    /* Hide menu text on mobile */
    .menu-text {
        display: none;
    }
    
    /* Move menu button to right when scrolled on mobile */
    .navbar.scrolled .nav-left {
        order: 2;
    }
    
    .navbar.scrolled .nav-center {
        order: 1;
        position: static;
        transform: none;
        flex: 1;
        justify-content: flex-start;
    }
    
    .navbar.scrolled .nav-right {
        display: none;
    }
    
    .navbar.scrolled .menu-btn {
        display: flex;
    }
    
    .navbar.scrolled .menu-btn span {
        background: #000;
    }
    
    .logo {
        font-size: 36px;
    }
    
    .navbar.scrolled .logo {
        font-size: 32px;
    }
    
    .dropdown {
        display: none;
    }
    
    /* Hide desktop book now button on mobile */
    .book-now-btn {
        display: none;
    }
    
    /* Mobile book now button in overlay menu */
    .mobile-book-now {
        display: block;
        margin-top: 40px;
        text-align: center;
    }
    
    .menu-book-btn {
        display: inline-block;
        background: transparent;
        border: 2px solid #1a1a1a;
        color: #1a1a1a;
        background-color: white;
        padding: 15px 50px;
        font-size: 14px;
        letter-spacing: 3px;
        text-decoration: none;
        text-transform: uppercase;
        transition: all 0.4s ease;
    }
    
    .menu-book-btn:hover {
        background: #1a1a1a;
        color: white;
    }
    
    .overlay-menu {
        max-width: 100%;
    }
    
    .menu-content {
        padding: 80px 30px 30px;
    }
    
    .menu-item {
        font-size: 22px;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-h1-content h1 {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-btn {
        padding: 12px 35px;
        font-size: 12px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-h1-content {
        padding-left: 20px;
    }
    
    .hero-h1-content h1 {
        font-size: 28px;
        letter-spacing: 3px;
    }
}

/* Tablet devices */
@media (max-width: 768px) {
    .hero-h1-content {
        padding-left: 40px;
    }
    
    .hero-h1-content h1 {
        font-size: 36px;
        letter-spacing: 4px;
    }
}

/* Hero arrow (bottom center) */
.hero-arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 48px;
    z-index: 60;
    /* subtle rounded background with a very light blur */
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 6px 18px rgba(6,10,12,0.06);
    backdrop-filter: blur(2px);
    transition: transform 280ms ease, box-shadow 280ms ease, background 280ms ease;
}

.hero-arrow:hover {
    transform: translateX(-50%) translateY(-6px) scale(1.02);
    box-shadow: 0 12px 24px rgba(6,10,12,0.10);
}

.hero-arrow svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    animation: arrowPulse 1.6s infinite cubic-bezier(.2,.9,.2,1);
}

@keyframes arrowPulse {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.9; }
    100% { transform: translateY(0); opacity: 1; }
}

/* gentle float for the round button */
@keyframes heroFloat {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
    100% { transform: translateX(-50%) translateY(0); }
}
.hero-arrow { animation: heroFloat 3.2s ease-in-out infinite; }

/* Smooth scrolling */
html { scroll-behavior: smooth; }

@media (max-width: 768px) {
    .hero-arrow { bottom: 20px; width: 52px; height: 52px; }
    .hero-arrow svg { width: 22px; height: 22px; }
}

/* Why Book Direct Section */
.why-book-direct {
    background: #f0eaec;
    padding: 80px 60px;
    margin-bottom: 80px;
}

.why-book-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.why-book-subtitle {
    color: #8b7d6b;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.why-book-title {
    font-size: 36px;
    font-weight: 400;
    font-family: "Chiffon Semi Bold", sans-serif;
    letter-spacing: 2px;
    color: #2c2420;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.index-benefits-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.index-benefits-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.index-benefits-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.index-benefits-icon svg {
    width: 100%;
    height: 100%;
    color: #9e8c72;
}

.index-benefits-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.index-benefits-title {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #2c2420;
    margin: 0;
    text-transform: capitalize;
    white-space: nowrap;
}

.index-benefits-subtitle {
    font-size: 11px;
    font-style: italic;
    color: #8b7d6b;
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
}

/* Responsive for Why Book Direct Section */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .why-book-direct {
        padding: 60px 30px;
    }
    
    .why-book-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* About Section */
/* About Section */
.about-section {
    background: #fff;
    padding: 100px 60px;
    margin-bottom: 50px;
}

.about-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-images {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
}

.about-img-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
    height: 380px;
    z-index: 1;
}

.about-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid #fff;
}

.about-img-small-group {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.about-img-small {
    position: absolute;
}

.about-img-small:first-child {
    bottom: 70px;
    right: 70px;
    width: 240px;
    height: 240px;
}

.about-img-small:last-child {
    top: 70px;
    right: 30px;
    width: 160px;
    height: 160px;
}

.about-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid #fff;
}

.about-content {
    max-width: 1200px;
    text-align: center;
    padding: 0 40px;
}

.about-subtitle {
    color: #9e8c72;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.about-title {
    font-size: 42px;
    font-weight: 600;
    font-family: "Chiffon Semi Bold", serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.about-description {
    font-size: 16px;
    font-weight: 400;
    font-family: sans-serif;
    color: #666;
    margin-bottom: 45px;
    line-height: 1.7;
}

/* About Highlights Section */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.highlight-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.highlight-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
}

.highlight-description {
    font-size: 15px;
    font-weight: 400;
    font-family: sans-serif;
    color: #666;
    line-height: 1.6;
    max-width: 220px;
}

.about-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* Responsive for About Section */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        max-width: 450px;
        height: 450px;
        margin: 0 auto;
    }
    
    .about-img-large {
        width: 340px;
        height: 340px;
    }
    
    .about-img-small:first-child {
        width: 210px;
        height: 210px;
    }
    
    .about-img-small:last-child {
        width: 140px;
        height: 140px;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 30px;
    }
    
    .about-container {
        display: flex;
        flex-direction: column;
    }
    
    .about-content {
        display: contents;
    }
    
    .about-text-wrapper {
        order: 1;
    }
    
    .about-subtitle {
        margin-bottom: 29px;
    }
    
    .about-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .about-description {
        font-size: 15px;
        margin-bottom: -25px;
    }
    
    .about-images {
        max-width: 380px;
        height: 380px;
        order: 2;
        margin: 25px auto;
        margin-bottom: -25px;
    }
    
    .about-stats {
        order: 3;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-top: -30px;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 40px;
        order: 4;
    }
    
    .highlight-item {
        max-width: 100%;
    }
    
    .highlight-description {
        max-width: 100%;
    }
    
    .about-img-large {
        width: 280px;
        height: 280px;
    }
    
    .about-img-small:first-child {
        width: 180px;
        height: 180px;
    }
    
    .about-img-small:last-child {
        width: 120px;
        height: 120px;
    }
    
    .stat-item h3 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .about-images {
        max-width: 320px;
        height: 320px;
    }
    
    .about-img-large {
        width: 240px;
        height: 240px;
    }
    
    .about-img-small:first-child {
        width: 150px;
        height: 150px;
    }
    
    .about-img-small:last-child {
        width: 100px;
        height: 100px;
    }
    
    .about-title {
        font-size: 26px;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
}

/* Features Section */
.features-section {
    background: #083e45;
    padding: 100px 60px;
    margin-top: -80px;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.features-map-image {
    position: relative;
    top: 60px;
}

.features-map-image img {
    width: auto;
    height: 400px;
    display: block;
}

.features-right-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.features-header {
    text-align: left;
}

.features-subtitle {
    color: #9e8c72;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: capitalize;
    text-align: left;
}

.features-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: left;
    font-family: "Chiffon Semi Bold", serif;
}

.features-description {
    font-size: 16px;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.7;
    max-width: 600px;
    text-align: left;
    font-family: sans-serif;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/*.feature-card:hover {
    transform: translateY(-5px);
}*/

.feature-icon {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    color: #9e8c72;
}

/*.feature-card:hover .feature-icon {
    background: #9e8c72;
    transform: scale(1.1);
}

.feature-card:hover .feature-icon svg {
    color: #fff;
}
*/
.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: "Chiffon Semi Bold", serif;
}

.feature-text {
    font-size: 15px;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.7;
    font-family: sans-serif;
}


/* Responsive for Features Section */
@media (max-width: 1024px) {
    .features-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-map-image {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-right-section {
        gap: 30px;
    }
    
    .features-header {
        text-align: center;
    }
    
    .features-subtitle {
        text-align: center;
    }
    
    .features-title {
        text-align: center;
    }
    
    .features-description {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 30px;
    }
    
    .features-map-image {
        max-width: 100%;
        width: 100%;
        margin: 0 auto 30px;
        padding: 0 20px;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .features-map-image img {
        max-width: 320px;
        width: 100%;
        height: auto;
    }
    
    .features-content-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .features-title {
        font-size: 32px;
    }
    
    .features-description {
        font-size: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 20px;
    }
    
    .features-map-image {
        padding: 0 10px;
    }
    
    .features-map-image img {
        max-width: 280px;
    }
    
    .features-title {
        font-size: 26px;
    }
    
    .features-description {
        font-size: 14px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
}

/* Tour Packages Section */
.packages-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.packages-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.packages-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 50px;
    font-family: "Chiffon Semi Bold", serif;
    padding: 0 50px;
}

.packages-header-left {
    flex: 1;
}

.packages-header-right {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.packages-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #9e8c72;
    margin-bottom: 15px;
}

.packages-title {
    font-size: 42px;
    font-weight: 300;
    color: #2c2c2c;
    line-height: 1.2;
    margin: 0;
}

.packages-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.packages-scroll-wrapper {
    position: relative;
    overflow: hidden;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
    width: 100vw;
}

.packages-grid {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}


@keyframes scrollPackages {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.package-card {
    flex: 0 0 340px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /*transition: all 0.3s ease;*/
}

.package-card:hover {
    /*transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);*/
}

.package-image {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

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

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

.package-content {
    padding: 30px;
    text-align: center;
}

.package-name {
    font-family: "Chiffon Semi Bold", serif;
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 25px 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.package-location-text {
    font-family: "Chiffon Semi Bold", serif;
    color: #666;
    font-weight: 400;
}

.package-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.package-btn {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #d0d0d0;
    background: transparent;
    color: #2c2c2c;
}

.package-btn:hover {
    background: #2c2c2c;
    color: #fff;
    border-color: #2c2c2c;
}

/* Responsive for Packages Section */
@media (max-width: 1024px) {
    .packages-container {
        padding: 0;
    }
    
    .packages-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .packages-title {
        font-size: 38px;
    }
    
    .package-image {
        height: 340px;
    }
    
    .packages-grid {
        animation: scrollPackages 35s linear infinite;
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 60px 0;
    }
    
    .packages-container {
        padding: 0;
    }
    
    .packages-header {
        margin-bottom: 40px;
    }
    
    .packages-title {
        font-size: 32px;
    }
    
    .packages-description {
        font-size: 15px;
    }
    
    .package-card {
        flex: 0 0 300px;
    }
    
    .package-image {
        height: 300px;
    }
    
    .package-name {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .package-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .packages-grid {
        animation: scrollPackages 30s linear infinite;
    }
}

@media (max-width: 480px) {
    .packages-title {
        font-size: 28px;
    }
    
    .package-card {
        flex: 0 0 280px;
    }
    
    .package-image {
        height: 260px;
    }
    
    .package-content {
        padding: 20px;
    }
    
    .package-name {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .package-actions {
        gap: 10px;
    }
    
    .package-btn {
        padding: 9px 12px;
        font-size: 11px;
    }
    
    .packages-grid {
        animation: scrollPackages 25s linear infinite;
    }
}

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

.destinations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.destinations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding: 0 50px;
}

.destinations-header-left {
    flex: 1;
}

.destinations-pretitle {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #9e8c72;
    margin-bottom: 15px;
}

.destinations-title {
    font-size: 42px;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    font-family: "Chiffon Semi Bold", serif;
}

.destinations-subtitle {
    font-size: 16px;
    color: #9e8c72;
    margin: 0;
    max-width: 600px;
    font-family: sans-serif;
}

.view-all-destinations-btn {
    padding: 15px 15px;
    border: 2px solid #9e8c72;
    background: transparent;
    color: #9e8c72;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-all-destinations-btn:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.destinations-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.destinations-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 1140px;
}

.destinations-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.destinations-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.dest-scroll-btn {
    position: relative;
    width: 60px;
    height: 60px;
    min-width: 60px;
    border: none;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.dest-scroll-btn:hover svg {
    stroke: #9e8c72;
}

.dest-scroll-btn svg {
    transition: stroke 0.3s ease;
    stroke: #1a1a1a;
}

.destination-card {
    flex: 0 0 350px;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    transition: all 0.5s ease;
}

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

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

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

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.destination-name {
    flex: 1;
}

.destination-name h3 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
}

.destination-name p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 300;
}

.destination-name svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.destination-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.destination-rating svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.destinations-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-more-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-more-btn:hover {
    background: #9e8c72;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(158, 140, 114, 0.3);
}

.destinations-nav {
    display: flex;
    gap: 10px;
}

.dest-nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dest-nav-btn:hover {
    border-color: #9e8c72;
    background: #9e8c72;
}

.dest-nav-btn:hover svg {
    stroke: #fff;
}

.dest-nav-btn svg {
    stroke: #1a1a1a;
    transition: stroke 0.3s ease;
}

/* Responsive for Destinations Section */
@media (max-width: 1024px) {
    .destinations-section {
        padding: 80px 0;
    }
    
    .destinations-header {
        padding: 0 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .destinations-title {
        font-size: 38px;
    }
    
    .destinations-carousel-container {
        padding: 0 30px;
    }
    
    .dest-scroll-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .destination-card {
        flex: 0 0 320px;
    }
    
    .destination-image {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .destinations-section {
        padding: 60px 0;
    }
    
    .destinations-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .destinations-pretitle {
        font-size: 12px;
    }
    
    .destinations-title {
        font-size: 32px;
    }
    
    .view-all-destinations-btn {
        padding: 12px 25px;
        font-size: 11px;
    }
    
    .destinations-carousel-container {
        position: relative;
        padding: 0 60px;
    }
    
    .destinations-scroll-wrapper {
        overflow: visible;
        width: 100%;
    }
    
    .destinations-grid {
        display: block;
    }
    
    .destination-card {
        display: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .destination-card.active {
        display: block;
        animation: fadeIn 0.5s ease-in-out;
    }
    
    .dest-scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        color: #9e8c72;
        width: 45px;
        height: 45px;
        min-width: 45px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dest-scroll-prev {
        left: 10px;
    }
    
    .dest-scroll-next {
        right: 10px;
    }
    
    .dest-scroll-btn:hover {
        transform: translateY(-50%) scale(1.1);
    }
    
    .destination-image {
        height: 400px;
    }
    
    .destination-overlay {
        padding: 30px;
    }
    
    .destination-name h3 {
        font-size: 26px;
    }
    
    .destination-name p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .destinations-section {
        padding: 50px 0;
    }
    
    .destinations-title {
        font-size: 26px;
    }
    
    .destinations-carousel-container {
        padding: 0 50px;
    }
    
    .dest-scroll-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .dest-scroll-prev {
        left: 5px;
    }
    
    .dest-scroll-next {
        right: 5px;
    }
    
    .dest-scroll-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .destination-card {
        max-width: 100%;
    }
    
    .destination-image {
        height: 350px;
    }
    
    .destination-overlay {
        padding: 25px;
    }
    
    .destination-name h3 {
        font-size: 22px;
    }
    
    .destination-name p,
    .destination-rating {
        font-size: 12px;
    }
    
    .destination-rating {
        padding: 8px 14px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.gallery-container {
    max-width: 100%;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: auto auto auto;
    gap: 15px;
    padding: 40px;
    position: relative;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

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

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

/* Grid positioning for 8-column layout */
/* Column 1: 2 rectangular images */
.gallery-item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    height: 200px;
    margin-top: 50px;
}

.gallery-item-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 200px;
}

/* Column 2: 3 square images */
.gallery-item-3 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    aspect-ratio: 1 / 1;
    margin-top: 25px;
}

.gallery-item-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    aspect-ratio: 1 / 1;
    margin-top: -60px;
}

.gallery-item-5 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    aspect-ratio: 1 / 1;
    margin-top: -90px;
}

/* Column 3: 1 large rectangular image (height = 2 squares) */
.gallery-item-6 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    margin-top: 50px;
    margin-bottom: -50px;
    max-height: calc(100% - 50px);
}

/* Column 4: 1 large rectangular image (height = 2 squares) */
.gallery-item-7 {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
    max-height: calc(100% - 50px);
}

/* Column 5: 1 large rectangular image (height = 2 squares) */
.gallery-item-8 {
    grid-column: 5 / 6;
    grid-row: 1 / 3;
    max-height: calc(100% - 50px);
}

/* Column 6: 1 large rectangular image (height = 2 squares) */
.gallery-item-9 {
    grid-column: 6 / 7;
    grid-row: 1 / 3;
    margin-top: 50px;
    margin-bottom: -50px;
    max-height: calc(100% - 50px);
}

/* Column 7: 3 square images */
.gallery-item-10 {
    grid-column: 7 / 8;
    grid-row: 1 / 2;
    aspect-ratio: 1 / 1;
    margin-top: 25px;
}

.gallery-item-11 {
    grid-column: 7 / 8;
    grid-row: 2 / 3;
    aspect-ratio: 1 / 1;
    margin-top: -60px;
}

.gallery-item-12 {
    grid-column: 7 / 8;
    grid-row: 3 / 4;
    aspect-ratio: 1 / 1;
    margin-top: -90px;
}

/* Column 8: 2 rectangular images */
.gallery-item-13 {
    grid-column: 8 / 9;
    grid-row: 1 / 2;
    height: 200px;
    margin-top: 50px;
}

.gallery-item-14 {
    grid-column: 8 / 9;
    grid-row: 2 / 3;
    height: 200px;
}

.gallery-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.gallery-overlay-text h2 {
    font-size: 180px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 20px;
    text-transform: uppercase;
    font-family: "Chiffon Semi Bold", serif;
    margin: 0;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.gallery-testimonial-header {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 50%;
    pointer-events: none;
}

.gallery-testimonial-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 5px 0;
}

.gallery-testimonial-header p {
    font-size: 24px;
    font-weight: 400;
    color: #999;
    margin: 0;
    font-family: sans-serif;
}

.mobile-testimonial-header {
    display: none;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    background: none;
    border: none;
    color: white;
    font-size: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10000;
    font-weight: 300;
    line-height: 1;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 40px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 15px 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-image {
        max-width: 95%;
        max-height: 80%;
    }
}

/* Explore Destinations Section */
.explore-section {
    background: #fff;
    padding: 100px 60px;
}

.explore-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
}

.explore-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

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

.explore-card:hover img {
    transform: scale(1.08);
}

.explore-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.explore-card-large {
    height: 550px;
}

.explore-card-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.explore-card-small {
    height: 265px;
}

.explore-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.explore-title {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.3;
}

.explore-card-small .explore-title {
    font-size: 22px;
}

.explore-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.explore-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.explore-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: #9e8c72;
    transform: scale(1.1);
}

.explore-btn:hover svg {
    stroke: #fff;
}

.explore-btn svg {
    stroke: #1a1a1a;
    transition: stroke 0.3s ease;
}

.explore-time {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    z-index: 2;
}

.explore-time svg {
    stroke: #1a1a1a;
}

.explore-time span {
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 500;
}

/* Responsive for Explore Section */
@media (max-width: 1024px) {
    .explore-section {
        padding: 80px 40px;
    }
    
    .explore-container {
        grid-template-columns: 1fr;
    }
    
    .explore-card-group {
        flex-direction: row;
    }
    
    .explore-card-small {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .explore-section {
        padding: 60px 30px;
    }
    
    .explore-card-large {
        height: 400px;
    }
    
    .explore-card-small {
        height: 300px;
    }
    
    .explore-title {
        font-size: 24px;
    }
    
    .explore-card-small .explore-title {
        font-size: 20px;
    }
    
    .explore-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .explore-btn {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .explore-time {
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 640px) {
    .explore-card-group {
        flex-direction: column;
    }
    
    .explore-card-small {
        width: 100%;
        height: 280px;
    }
    
    .explore-title {
        font-size: 20px;
    }
    
    .explore-card-small .explore-title {
        font-size: 18px;
    }
}

/* Gallery Section */
.about-gallery-section {
    background: #f8f8f8;
    padding: 100px 0;
    overflow: hidden;
}

.about-gallery-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.about-gallery-subtitle {
    color: #9e8c72;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-gallery-title {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #1a1a1a;
    font-family: "Chiffon Semi Bold", serif;
}

.about-gallery-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.about-gallery-track {
    display: flex;
    gap: 20px;
    animation: scroll-left 30s linear infinite;
    width: fit-content;
}

.about-gallery-track:hover {
    animation-play-state: paused;
}

.about-gallery-item {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    overflow: hidden;
    border-radius: 0;
}

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

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

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive for Gallery Section */
@media (max-width: 768px) {
    .about-gallery-section {
        padding: 60px 0;
    }
    
    .about-gallery-header {
        margin-bottom: 40px;
    }
    
    .about-gallery-title {
        font-size: 32px;
    }
    
    .about-gallery-item {
        width: 280px;
        height: 200px;
    }
    
    .about-gallery-track {
        gap: 15px;
        animation: scroll-left 25s linear infinite;
    }
}

@media (max-width: 480px) {
    .about-gallery-title {
        font-size: 26px;
    }
    
    .about-gallery-item {
        width: 250px;
        height: 180px;
    }
    
    .about-gallery-track {
        gap: 10px;
        animation: scroll-left 20s linear infinite;
    }
}

/* Top Destinations Section */
.top-destinations-section {
    background: #fff;
    padding: 100px 60px;
}

.top-destinations-container {
    max-width: 1400px;
    margin: 0 auto;
}

.top-destinations-header {
    text-align: center;
    margin-bottom: 50px;
}

.top-destinations-title {
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.top-destinations-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

/* Destination Filters */
.top-destination-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 28px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #fff;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
}

.filter-btn:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.filter-btn.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* Destinations Grid */
.top-destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
}

.top-destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.top-destination-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.top-destination-card.medium {
    grid-column: span 2;
    grid-row: span 1;
}

.top-destination-card.small {
    grid-column: span 1;
    grid-row: span 1;
}

.top-destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.top-destination-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.top-destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.top-destination-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.top-destination-badge svg {
    stroke: #1a1a1a;
}

.top-destination-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.top-destination-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.top-destination-name {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.top-destination-card.large .top-destination-name {
    font-size: 26px;
}

.top-destination-card.medium .top-destination-name {
    font-size: 18px;
}

.top-destination-card.small .top-destination-name {
    font-size: 16px;
}

/* Filter Animation */
.top-destination-card.hidden {
    display: none;
}

/* Responsive for Top Destinations */
@media (max-width: 1024px) {
    .top-destinations-section {
        padding: 80px 40px;
    }
    
    .top-destinations-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
    
    .top-destination-card.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .top-destination-card.medium {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .top-destinations-section {
        padding: 60px 30px;
    }
    
    .top-destinations-title {
        font-size: 32px;
    }
    
    .top-destination-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .top-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 12px;
    }
    
    .top-destination-card.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .top-destination-card.medium {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .top-destination-card.small {
        grid-column: span 1;
    }
    
    .top-destination-badge {
        width: 35px;
        height: 35px;
        top: 15px;
        left: 15px;
    }
    
    .top-destination-info {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .top-destinations-title {
        font-size: 28px;
    }
    
    .top-destinations-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    
    .top-destination-card.large,
    .top-destination-card.medium,
    .top-destination-card.small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .top-destination-name {
        font-size: 18px !important;
    }
}

/* Booking Form Section */
.booking-form-section {
    background: #f8f8f8;
    padding: 100px 60px;
}

.booking-form-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-form-left {
    background: #fff;
    border-radius: 16px;
    padding: 50px 45px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.booking-form-wrapper {
    max-width: 650px;
}

.booking-form-main-title {
    font-size: 38px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.booking-form-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: #1a1a1a;
    background: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9e8c72;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

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

.booking-submit-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.booking-submit-btn:hover {
    background: #9e8c72;
    transform: translateY(-2px);
}

.booking-submit-btn svg {
    stroke: currentColor;
}

.booking-form-right {
    position: sticky;
    top: 120px;
}

.booking-benefits {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.booking-hero-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.benefits-content {
    padding: 40px 35px;
}

.benefits-title {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    align-items: start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    stroke: #9e8c71;
}

.benefit-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.benefit-text p {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

.booking-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge svg {
    stroke: #9e8c72;
    flex-shrink: 0;
}

.trust-badge span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Responsive for Booking Form Section */
@media (max-width: 1024px) {
    .booking-form-section {
        padding: 80px 40px;
    }
    
    .booking-form-container {
        gap: 50px;
    }
    
    .booking-form-right {
        position: static;
    }
}

@media (max-width: 768px) {
    .booking-form-section {
        padding: 60px 30px;
    }
    
    .booking-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-form-left {
        padding: 40px 30px;
    }
    
    .booking-form-main-title {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-content {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .booking-form-left {
        padding: 30px 20px;
    }
    
    .booking-form-main-title {
        font-size: 28px;
    }
    
    .booking-submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .benefits-title {
        font-size: 22px;
    }
}

/* Destination Details Hero Section */
.destination-details-hero {
    position: relative;
    height: 70vh;
    min-height: 550px;
    max-height: 700px;
    background: linear-gradient(135deg, #9e8c72 0%, #9e8c72 100%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.destination-details-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

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

.destination-details-hero .hero-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 300;
}

.destination-details-hero .hero-title {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Destination Details Page */
.destination-details-section {
    background: #f8f8f8;
    padding: 80px 100px;
    min-height: 100vh;
}

.destination-details-container {
    max-width: 1600px;
    margin: 0 auto;
}

.destination-details-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.destination-details-left {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.loading-state, .error-state {
    text-align: center;
    padding: 80px 20px;
}

.error-state h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.error-state p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.back-link {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #9e8c72;
}

.destination-details-header {
    margin-bottom: 40px;
}

.destination-details-title {
    font-size: 48px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.destination-details-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.destination-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.meta-item svg {
    stroke: #666;
}

.destination-tags-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dest-tag {
    background: #f5f5f5;
    color: #666;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 400;
    border: 1px solid #e0e0e0;
}

.destination-hero-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
}

.destination-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-article {
    line-height: 1.8;
}

.destination-intro {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.destination-body h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.destination-body p {
    font-size: 17px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 25px;
}

.destination-info-box {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 35px 30px;
    margin: 50px 0;
}

.destination-info-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-grid .info-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.info-grid .info-item svg {
    stroke: #9e8c72;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-grid .info-item strong {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    margin-bottom: 5px;
}

.info-grid .info-item p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.destination-cta {
    background: linear-gradient(135deg, #9e8c72 0%, #9e8c72 100%);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 60px;
    color: #fff;
}

.destination-cta h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.destination-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #9e8c72;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Related Destinations Sidebar */
.destination-details-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.related-destinations {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.related-destinations h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.related-destinations-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-destination-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-destination-card:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.related-destination-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-destination-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.related-destination-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.related-destination-subtitle {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.related-destination-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.related-tag {
    font-size: 11px;
    color: #9e8c72;
    background: rgba(158, 140, 114, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.no-related {
    text-align: center;
    color: #999;
    font-size: 14px;
    padding: 20px;
}

/* Responsive for Destination Details */
@media (max-width: 1200px) {
    .destination-details-grid {
        grid-template-columns: 1fr 320px;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .destination-details-section {
        padding: 80px 60px;
    }

    .destination-details-grid {
        grid-template-columns: 1fr;
    }
    
    .related-destinations {
        position: static;
    }
}

@media (max-width: 768px) {
    .destination-details-hero {
        height: 50vh;
        min-height: 350px;
        margin-top: 70px;
    }

    .destination-details-hero .hero-title {
        font-size: 48px;
    }

    .destination-details-hero .hero-subtitle {
        font-size: 12px;
    }

    .destination-details-section {
        padding: 80px 30px;
    }
    
    .destination-details-left {
        padding: 30px 25px;
    }

    .destination-details-title {
        font-size: 36px;
    }

    .destination-details-subtitle {
        font-size: 18px;
    }

    .destination-hero-image {
        height: 300px;
    }

    .destination-body h2 {
        font-size: 26px;
        margin-top: 35px;
    }

    .destination-body p {
        font-size: 16px;
    }

    .destination-cta {
        padding: 40px 30px;
    }

    .destination-cta h3 {
        font-size: 26px;
    }
    
    .related-destination-card {
        flex-direction: column;
    }
    
    .related-destination-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .destination-details-hero {
        height: 45vh;
        min-height: 300px;
    }

    .destination-details-hero .hero-title {
        font-size: 36px;
    }

    .destination-details-hero .hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .destination-details-container {
        padding: 0 0px;
    }

    .destination-details-title {
        font-size: 28px;
    }

    .destination-hero-image {
        height: 250px;
    }

    .destination-info-box {
        padding: 25px 20px;
    }
}

/* Contact Information Section */
.contact-info-section {
    background: #fff;
    padding: 100px 60px;
}

.contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-left {
    padding-right: 20px;
}

.contact-subtitle {
    color: #9e8c72;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-main-title {
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: "Chiffon Semi Bold", serif;
}

.contact-description {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
    font-family: sans-serif;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-detail-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-detail-text {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

.contact-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    color: #9e8c72;
    transform: translateY(-3px);
}

.contact-info-right {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 50px 45px;
}

.contact-form-wrapper {
    max-width: 500px;
}

.contact-form-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: "Chiffon Semi Bold", serif;
}

.contact-form-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
    font-family: sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: sans-serif;
    color: #1a1a1a;
    background: #fff;
    transition: all 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

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

.contact-submit-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    letter-spacing: 0.5px;
    font-family: sans-serif;
}

.contact-submit-btn:hover {
    background: #9e8c72;
    transform: translateY(-2px);
}

/* Responsive for Contact Info Section */
@media (max-width: 1024px) {
    .contact-info-section {
        padding: 80px 40px;
    }
    
    .contact-info-container {
        gap: 60px;
    }
    
    .contact-main-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 60px 30px;
    }
    
    .contact-info-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-left {
        padding-right: 0;
    }
    
    .contact-main-title {
        font-size: 28px;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-right {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .contact-main-title {
        font-size: 24px;
    }
    
    .contact-form-title {
        font-size: 24px;
    }
    
    .contact-info-right {
        padding: 30px 20px;
    }
    
    .contact-submit-btn {
        width: 100%;
    }
}

/* Call to Action Banner */
.cta-banner {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('../img/gallery/g\ \(6\).webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: "Chiffon Semi Bold", serif;
    letter-spacing: 1px;
}

.cta-button {
    background: white;
    color: #1a1a1a;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-family: 'Cormorant Garamond', serif;
}

.cta-button:hover {
    background: #9e8c72;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-banner {
        height: 300px;
    }
    
    .cta-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 10px 30px;
        font-size: 14px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 10px 50px;
    background: #fff;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-carousel-wrapper {
    position: relative;
    padding: 0 80px;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.testimonials-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.testimonials-title span {
    color: #999;
    font-weight: 400;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Desktop: Show 3 testimonials horizontally */
@media (min-width: 769px) {
    .testimonials-carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    /* When slide 0 (testimonial 1) is active, show slides 0, 1, 2 */
    .testimonial-slide:nth-child(1).active,
    .testimonial-slide:nth-child(1).active + .testimonial-slide,
    .testimonial-slide:nth-child(1).active + .testimonial-slide + .testimonial-slide {
        display: block !important;
    }
    
    /* When slide 3 (testimonial 4) is active, show slides 3, 4, 5 */
    .testimonial-slide:nth-child(4).active,
    .testimonial-slide:nth-child(4).active + .testimonial-slide,
    .testimonial-slide:nth-child(4).active + .testimonial-slide + .testimonial-slide {
        display: block !important;
    }
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

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

.testimonial-rating .star {
    color: #ffc107;
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
}

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

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-image span {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Different gradient colors for variety */
.testimonial-slide:nth-child(1) .author-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonial-slide:nth-child(2) .author-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.testimonial-slide:nth-child(3) .author-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.testimonial-slide:nth-child(4) .author-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.testimonial-slide:nth-child(5) .author-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.testimonial-slide:nth-child(6) .author-image {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 3px 0;
}

.author-role {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #9e8c72;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.testimonial-nav:hover {
    background: transparent;
    color: #9e8c72;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testimonial-dot.active {
    background: #9e8c72;
    width: 30px;
    border-radius: 6px;
}

.testimonial-dot:hover {
    background: #9e8c72;
}

/* Responsive for Gallery Section */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(6, 180px);
        padding: 30px;
    }
    
    .gallery-item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
    
    .gallery-item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .gallery-item-3 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .gallery-item-4 {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }
    
    .gallery-item-5 {
        grid-column: 4 / 5;
        grid-row: 1 / 3;
    }
    
    .gallery-item-6 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .gallery-item-7 {
        grid-column: 2 / 3;
        grid-row: 3 / 5;
    }
    
    .gallery-item-8 {
        grid-column: 3 / 4;
        grid-row: 3 / 4;
    }
    
    .gallery-item-9 {
        grid-column: 4 / 5;
        grid-row: 3 / 5;
    }
    
    .gallery-item-10 {
        grid-column: 1 / 2;
        grid-row: 4 / 6;
    }
    
    .gallery-item-11 {
        grid-column: 3 / 4;
        grid-row: 4 / 5;
    }
    
    .gallery-item-12 {
        grid-column: 3 / 4;
        grid-row: 5 / 6;
    }
    
    .gallery-overlay-text h2 {
        font-size: 120px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        overflow: hidden;
        padding: 0;
    }
    
    .gallery-container {
        overflow: hidden;
        padding: 0;
    }
    
    .gallery-grid {
        display: flex;
        transition: transform 0.3s ease-out;
        padding: 0;
        gap: 0;
        touch-action: pan-y;
        user-select: none;
    }
    
    .gallery-item {
        min-width: 100vw;
        width: 100vw;
        flex-shrink: 0;
        margin: 0 !important;
        padding: 0 !important;
        height: 30vh !important;
        grid-column: unset !important;
        grid-row: unset !important;
        aspect-ratio: unset !important;
        max-height: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
        overflow: hidden;
        position: relative;
        border-radius: 0;
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        pointer-events: auto;
        display: block;
        cursor: pointer;
    }
    
    .gallery-overlay-text,
    .gallery-testimonial-header {
        display: none;
    }
    
    .mobile-testimonial-header {
        display: block;
        text-align: center;
        margin-bottom: 40px;
        padding: 40px 20px 0;
    }
    
    .mobile-testimonial-header h3 {
        font-size: 28px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.3;
        margin: 0 0 5px 0;
    }
    
    .mobile-testimonial-header p {
        font-size: 20px;
        font-weight: 400;
        color: #999;
        margin: 0;
    }
}

/* Responsive for Testimonials Section */
@media (max-width: 1024px) {
    .testimonials-carousel-wrapper {
        padding: 0 70px;
    }
    
    .testimonial-nav {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 60px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-dots {
        margin-top: 30px;
        gap: 10px;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-dot.active {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 15px;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }
    
    .testimonial-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .testimonial-prev {
        left: -5px;
    }
    
    .testimonial-next {
        right: -5px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-dots {
        margin-top: 25px;
        gap: 8px;
    }
    
    .testimonial-dot {
        width: 8px;
        height: 8px;
    }
    
    .testimonial-dot.active {
        width: 20px;
    }
}

/* Packages Section */
.packages-page-section {
    padding: 80px 100px;
    background: #ffffff;
}

.packages-page-container {
    max-width: 1600px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    font-family: "Chiffon Semi Bold", serif;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 300;
}

.packages-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.packages-page-header-left {
    flex: 1;
}

.packages-page-subtitle {
    font-size: 16px;
    color: #9e8c72;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 500;
}

.packages-page-title {
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.packages-page-header-right {
    flex: 1;
    max-width: 500px;
}

.packages-page-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
}

.packages-page-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
}

.packages-page-scroll-wrapper::-webkit-scrollbar {
    /* horizontal scrollbar only: keep small height, hide vertical by setting width to 0 */
    height: 8px;
    width: 0px;
}

.packages-page-scroll-wrapper::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.packages-page-scroll-wrapper::-webkit-scrollbar-thumb {
    /* make thumb transparent to avoid the brown line; keeps layout consistent */
    background: transparent;
    border-radius: 10px;
}

.packages-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    min-width: min-content;
}

.package-page-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

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

/* Modern VIP card enhancements + staggered scroll-in animation */
.packages-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.package-page-card {
    border-radius: 12px;
    overflow: hidden;
    will-change: transform, opacity;
    transform: translateY(28px) scale(.995);
    opacity: 0;
    transition: transform 520ms cubic-bezier(.2,.9,.2,1) calc(var(--i) * 120ms),
                opacity 520ms ease calc(var(--i) * 120ms),
                box-shadow 300ms ease 0s;
}

.package-page-card.in-view {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.package-page-image {
    height: 380px;
    position: relative;
    overflow: hidden;
}

.package-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(.2,.9,.2,1);
}

.package-page-card:hover .package-page-image img {
    transform: scale(1.08) translateY(-8px);
}

.package-page-location {
    background: rgba(255,255,255,0.97);
    color: #333;
    padding: 8px 14px;
    border-radius: 22px;
    position: absolute;
    left: 18px;
    bottom: 18px;
    box-shadow: 0 10px 30px rgba(30,30,30,0.08);
}

.package-actions {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

/* Responsive column layout: 2 cols on medium, 3 on wide screens */
@media (min-width: 992px) {
    .packages-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px;
    }
    .package-page-image { height: 340px; }
}

@media (min-width: 1400px) {
    .packages-page-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 44px;
    }
    .package-page-image { height: 360px; }
}

@media (max-width: 768px) {
    .packages-page-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .package-page-image { height: 260px; }
}

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

.package-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.package-page-location {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.package-page-location svg {
    flex-shrink: 0;
}

.package-page-content {
    padding: 28px;
}

.package-page-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 15px;
}

.package-page-name {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    flex: 1;
    min-height: 56px;
}

.package-page-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fef9e7;
    padding: 6px 12px;
    border-radius: 20px;
    flex-shrink: 0;
}

.star {
    color: #ffc107;
    font-size: 16px;
}

.rating-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.package-page-price {
    font-size: 14px;
    color: #999;
    margin-bottom: 18px;
    font-weight: 300;
}

.package-page-price strong {
    font-size: 28px;
    color: #9e8c72;
    font-weight: 700;
}

.package-page-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.feature-item svg {
    flex-shrink: 0;
    color: #9e8c72;
}

.package-page-booking-btn {
    display: inline-block;
    width: auto;
    justify-content: center;
    background: white;
    color: #1a1a1a;
    text-align: center;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 1px solid #d0d0d0;
    margin-right: 12px;
}

.package-page-booking-btn:last-child {
    margin-right: 0;
}

.package-page-booking-btn:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for Packages */
@media (max-width: 1400px) {
    .packages-page-section {
        padding: 70px 80px;
    }
}

@media (max-width: 1200px) {
    .packages-page-section {
        padding: 60px 60px;
    }
    
    .packages-page-header {
        flex-direction: column;
        gap: 25px;
    }
    
    .packages-page-header-right {
        max-width: 100%;
    }
    
    .packages-page-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    }
}

@media (max-width: 992px) {
    .packages-page-section {
        padding: 50px 40px;
    }
    
    .packages-page-title {
        font-size: 40px;
    }
    
    .packages-page-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .packages-page-section {
        padding: 40px 30px;
    }
    
    .packages-page-title {
        font-size: 32px;
    }
    
    .packages-page-description {
        font-size: 16px;
    }
    
    .packages-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-page-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }
    
    .package-page-name {
        font-size: 20px;
        min-height: 54px;
    }
    
    .package-page-image {
        width: 100%;
        height: 240px;
        flex-shrink: 0;
    }
    
    .package-page-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .package-page-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .package-page-features {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .packages-page-section {
        padding: 30px 20px;
    }
    
    .packages-page-title {
        font-size: 28px;
    }
    
    .packages-page-subtitle {
        font-size: 14px;
    }
    
    .package-page-content {
        padding: 20px;
    }
    
    .package-page-header-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .package-page-rating {
        align-self: flex-start;
    }
    
    .package-page-name {
        min-height: 52px;
    }
    
    .package-page-image {
        height: 200px;
    }
}

/* Package Details Page */
.package-details-section {
    padding: 120px 100px 80px;
    background: #f8f8f8;
    min-height: 100vh;
}

.package-details-container {
    max-width: 1600px;
    margin: 0 auto;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.back-button:hover {
    color: #9e8c72;
    transform: translateX(-5px);
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-3px);
}

.package-details-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.package-details-left {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.package-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.package-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-tabs {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    background: white;
}

.tab-btn {
    flex: 1;
    padding: 18px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
}

.tab-btn:hover {
    color: #1a1a1a;
    background: #f8f8f8;
}

.tab-btn.active {
    color: #9e8c72;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #9e8c72;
}

.tab-content {
    padding: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.package-highlights h3,
.tour-guides h3,
.details-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.package-highlights ul {
    list-style: none;
    padding: 0;
}

.package-highlights li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.package-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9e8c72;
    font-weight: bold;
    font-size: 18px;
}

.tour-guides {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

.guides-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.guide-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
}

.guide-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.guide-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.guide-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.guide-rating .star {
    color: #ffc107;
}

/* Details Tab */
.details-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.details-content li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 15px;
}

.included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.not-included-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

/* Reviews Tab */
.reviews-summary {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.rating-overview {
    text-align: center;
}

.rating-number {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.rating-stars {
    color: #ffc107;
    font-size: 24px;
    margin: 10px 0;
    letter-spacing: 5px;
}

.rating-text {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    padding: 25px;
    background: #f8f8f8;
    border-radius: 12px;
}

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.review-rating {
    color: #ffc107;
    font-size: 14px;
    letter-spacing: 2px;
}

.review-text {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 10px;
}

.review-date {
    font-size: 13px;
    color: #999;
}

/* Right Sidebar */
.package-details-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.other-packages {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.other-packages h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.other-packages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.other-package-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.other-package-card:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.other-package-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.other-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-package-info {
    flex: 1;
}

.other-package-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.other-package-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
}

.other-package-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.other-package-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #1a1a1a;
    font-weight: 500;
}

.other-package-rating .star {
    color: #ffc107;
}

.booking-cta {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-book-button {
    display: block;
    width: 100%;
    background: #9e8c72;
    color: white;
    text-align: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-book-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(158, 140, 114, 0.3);
}

/* Responsive Design for Package Details */
@media (max-width: 1400px) {
    .package-details-section {
        padding: 100px 80px 60px;
    }
    
    .package-details-grid {
        grid-template-columns: 1fr 350px;
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .package-details-section {
        padding: 100px 60px 60px;
    }
    
    .package-details-grid {
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 992px) {
    .package-details-section {
        padding: 90px 40px 50px;
    }
    
    .package-details-grid {
        grid-template-columns: 1fr;
    }
    
    .package-details-right {
        order: 2;
    }
    
    .package-main-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .package-details-section {
        padding: 80px 30px 40px;
    }
    
    .tab-content {
        padding: 30px 25px;
    }
    
    .package-main-image {
        height: 300px;
    }
    
    .tab-btn {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .guides-list {
        flex-direction: column;
    }
    
    .guide-item {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .package-details-section {
        padding: 70px 20px 30px;
    }
    
    .tab-content {
        padding: 25px 20px;
    }
    
    .package-main-image {
        height: 250px;
    }
    
    .other-package-card {
        flex-direction: column;
    }
    
    .other-package-image {
        width: 100%;
        height: 150px;
    }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappJump 2s ease-in-out infinite;
}

.whatsapp-float.above-cookie {
    bottom: 140px;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappSplash 2s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float:hover::before {
    animation: none;
}

/* Jumping Animation */
@keyframes whatsappJump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Splashing/Ripple Animation */
@keyframes whatsappSplash {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-float.above-cookie {
        bottom: 160px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-float.above-cookie {
        bottom: 180px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(158, 140, 114, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: visible;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgba(158, 140, 114, 1);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(158, 140, 114, 0.4);
}

.scroll-to-top .arrow-icon {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.scroll-to-top .progress-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    pointer-events: none;
}

.scroll-to-top .progress-ring-circle {
    stroke: rgba(255, 255, 255, 0.8);
    stroke-linecap: round;
    stroke-dasharray: 169.65;
    stroke-dashoffset: 169.65;
    transition: stroke-dashoffset 0.1s linear;
}

.progress-ring-circle {
    stroke-width: 3;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

.scroll-to-top.above-cookie {
    bottom: 140px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top .progress-ring {
        visibility: hidden;
    }

    .scroll-to-top .arrow-icon {
        width: 22px;
        height: 22px;
    }

    .scroll-to-top.above-cookie {
        bottom: 160px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .scroll-to-top .progress-ring {
        visibility: hidden;
    }

    .scroll-to-top .arrow-icon {
        width: 20px;
        height: 20px;
    }

    .scroll-to-top.above-cookie {
        bottom: 180px;
    }
}


/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #9e8c72;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    flex: 1;
    color: #fff;
}

.cookie-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Cormorant Garamond', serif;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    white-space: nowrap;
}

.cookie-decline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-accept {
    background: #9e8c72;
    color: #fff;
    border: 2px solid #9e8c72;
}

.cookie-accept:hover {
    background: #9e8c72;
    border-color: #9e8c72;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(158, 140, 114, 0.4);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-text h3 {
        font-size: 18px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
    }
}
/* Hero Image Container */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark overlay for better text readability */
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* About Hero Section */
.about-hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('../img/Intro.mp4') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    overflow: hidden;
}

.hero-content {
    text-align: left;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    border-radius: 50px;
    color: white;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15));
    padding: 10px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0.9;
    width: fit-content;
}

.hero-title {
    font-size: 72px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.hero-btn {
    border: 2px solid white;
    border-radius: 50px;
    background: white;
    color: #333;
    padding: 15px 40px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.hero-btn:hover {
    background: transparent;
    color: white;
}

.hero-scroll {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid white;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    transform: scale(1.1);
    color:#6d201d;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.scroll-line {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.scroll-text {
    font-size: 12px;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.scroll-line::before {
    content: '';
    width: 1px;
    height: 200px;
    background: rgba(255, 255, 255, 0.3);
    display: block;
}

.scroll-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    left: 0;
    width: 1px;
    height: 80px;
    background: white;
    animation: scrollAnimation 2s ease-in-out infinite;
}

.arrow-down {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes scrollAnimation {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(120px);
        opacity: 0;
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(5px);
    }
}

.hero-info {
    position: absolute;
    bottom: 50px;
    left: 150px;
    right: 50px;
    display: flex;
    gap: 40px;
    z-index: 2;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 400px;
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    color: white;
}

.info-item p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles for About Hero */
@media (max-width: 1200px) {
    .about-hero {
        padding-left: 80px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-info {
        left: 30px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding-left: 40px;
        padding-right: 40px;
        height: 80vh;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .hero-btn {
        padding: 12px 35px;
        font-size: 12px;
    }
    
    .hero-scroll {
        right: 30px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 25px;
        left: 20px;
        right: 20px;
        bottom: 30px;
    }
    
    .info-item {
        max-width: 100%;
    }
    
    .info-item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding-left: 20px;
        padding-right: 20px;
        align-items: flex-start;
        padding-top: 100px;
        height: 70vh;
        min-height: 600px;
    }
    
    .hero-content {
        text-align: left;
        width: 100%;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 10px;
        margin-bottom: 12px;
        letter-spacing: 1.5px;
    }
    
    .hero-btn {
        padding: 10px 25px;
        font-size: 10px;
        width: auto;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .hero-info {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        gap: 20px;
        padding: 0;
        margin-top: 0;
        background: transparent;
    }
    
    .info-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .info-item p {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #9e8c72;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    flex: 1;
    color: #fff;
}

.cookie-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Cormorant Garamond', serif;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    white-space: nowrap;
}

.cookie-decline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-accept {
    background: #9e8c72;
    color: #fff;
    border: 2px solid #9e8c72;
}

.cookie-accept:hover {
    background: #9e8c72;
    border-color: #9e8c72;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(158, 140, 114, 0.4);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-text h3 {
        font-size: 18px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
    }
}