:root {
    --primary-blue: #1D63A0;
    --highlight-orange: #FF9800;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --text-gray: #CCCCCC;
    --glass-bg: rgba(26, 42, 60, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0f172a;
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(43, 56, 86, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img {
    max-height: 35px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-grow: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--highlight-orange);
    opacity: 1;
}

.user-action {
    display: flex;
    align-items: center;
}

.user-action::before {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    margin-right: 20px;
}

.user-action .profile-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-action .profile-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.slider-bg.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.4) 0%, rgba(30, 41, 59, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: -100px;
}

.location-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin: 10px 0;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-title .highlight {
    color: var(--highlight-orange);
}

#hero-location, #hero-title {
    transition: opacity 0.5s ease-in-out;
}

.whatsapp-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e2630;
    border: 1px solid #e8a83a;
    padding: 10px 25px;
    border-radius: 40px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.whatsapp-pill:hover {
    background: #e8a83a;
    color: #1e2630;
    transform: translateY(-2px);
}

.whatsapp-pill svg {
    width: 24px;
    height: 24px;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.whatsapp-text .bold {
    font-size: 16px;
    font-weight: 600;
}

/* Services Menu */
.services-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.services-menu {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px; /* Proper generous padding */
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 950px;
}

.service-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #21432f; /* Dark green */
    transition: transform 0.3s ease, color 0.3s ease;
    gap: 12px;
}

.service-link i {
    font-size: 26px;
    color: #21432f;
    transition: color 0.3s ease;
}

.service-link span {
    font-size: 14px;
    font-weight: 500; /* Not bold */
}

.service-link:hover {
    transform: translateY(-3px);
    color: #3b8256;
}

.service-link:hover i {
    color: #3b8256;
}

/* About Section */
.about-section {
    padding: 140px 50px 100px;
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #3b8256;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-content .eyebrow .line {
    width: 40px;
    height: 2px;
    background-color: #3b8256;
}

.about-title {
    font-size: 52px;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-title .highlight-green {
    color: #22c55e;
}

.about-description {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 50px;
    padding-right: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 25px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
}

.feature-pill.green-bg {
    background-color: #ebf5ee;
}

.feature-pill.peach-bg {
    background-color: #fdf5ef;
}

.feature-pill svg {
    color: #6b7280;
    flex-shrink: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: 40px;
}

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

.experience-card {
    position: absolute;
    bottom: 50px;
    left: -40px;
    background: #233d2e;
    border-radius: 24px;
    padding: 40px 35px;
    color: white;
    width: 260px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.experience-card .exp-years {
    font-size: 48px;
    font-weight: 700;
    color: #f59e0b;
    line-height: 1;
}

.experience-card .exp-label {
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 8px;
    margin-bottom: 20px;
    opacity: 0.8;
    text-transform: uppercase;
}

.experience-card p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Bento Grid Section */
.bento-section {
    padding: 100px 50px;
    background: #f3f4f6; /* Light grey */
    font-family: 'Outfit', sans-serif;
}

.bento-header {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.bento-header .eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #3b8256;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bento-header .eyebrow .line {
    width: 40px;
    height: 2px;
    background-color: #3b8256;
}

.bento-header h2 { 
    font-size: 48px; 
    color: #1a1a1a; 
    margin-bottom: 20px; 
    font-weight: 500; 
    line-height: 1.1;
}

.bento-header p { 
    font-size: 16px; 
    color: #6b7280; 
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.4fr;
    grid-auto-rows: 240px;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.card-1 { grid-column: 3 / 4; grid-row: 1 / 3; }
.card-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.card-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
.card-4 { grid-column: 1 / 2; grid-row: 1 / 3; }
.card-5 { grid-column: 3 / 4; grid-row: 3 / 4; }
.card-6 { grid-column: 1 / 3; grid-row: 3 / 4; }

.bento-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.bento-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 13px;
    opacity: 0.4;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Specific Cards */
.bento-img-card {
    background-size: cover;
    background-position: center;
    color: white;
    justify-content: flex-end;
}
.bento-img-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}
.bento-img-card > * {
    position: relative;
    z-index: 2;
}

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}
.bento-icon svg { width: 22px; height: 22px; }

.bento-text-card {
    background: #ffffff;
    color: #1a1a1a;
}
.bento-text-card .bento-icon {
    background: #f3f4f6;
    color: #1a1a1a;
}
.bento-text-card h3 { font-size: 20px; margin-bottom: 12px; font-weight: 700; }
.bento-text-card p { font-size: 14px; color: #6b7280; line-height: 1.6; }

.bento-img-card h3 { font-size: 24px; margin-bottom: 12px; font-weight: 700; }
.bento-img-card p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; max-width: 90%; }

/* Card 5 Special Layout */
.card-5 {
    padding: 0;
    flex-direction: row;
    background: #ffffff;
}
.card-5-content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-5-content h3 { font-size: 20px; margin-bottom: 12px; font-weight: 700; color: #1a1a1a; }
.card-5-content p { font-size: 14px; color: #6b7280; line-height: 1.6; }

.card-5-img {
    width: 45%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.card-5-img .bento-number { right: 20px; top: 20px; }

/* Card 6 Special */
.card-6 {
    background: #0d271e;
    color: white;
    justify-content: center;
}
.card-6 .bento-icon {
    background: rgba(255,255,255,0.1);
    color: white;
}
.card-6 h3 { font-size: 20px; margin-bottom: 12px; font-weight: 700; }
.card-6 p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; max-width: 85%; }
.card-6-arrow {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}
.card-6-arrow:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-50%) translateX(5px);
}

/* Destinations Section */
.destinations-section {
    padding: 100px 50px;
    background: #f9fafa;
    font-family: 'Outfit', sans-serif;
}

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

.dest-header .eyebrow {
    color: #3b8256;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.dest-header .eyebrow .line {
    width: 40px;
    height: 2px;
    background-color: #3b8256;
}

.dest-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -1px;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.dest-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: block;
    height: 480px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.dest-card-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-card-bg {
    transform: scale(1.05);
}

.dest-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
    z-index: 1;
}

.dest-arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    transition: background 0.3s, transform 0.3s;
}

.dest-card:hover .dest-arrow {
    background: rgba(255,255,255,0.3);
    transform: translateX(5px);
}

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

.dest-meta {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-text {
    color: #f59e0b; /* Yellow/Orange */
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dest-content h3 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.dest-line {
    width: 30px;
    height: 2px;
    background: #f59e0b;
    margin-bottom: 12px;
    transition: width 0.3s ease;
}

.dest-card:hover .dest-line {
    width: 50px;
}

.dest-content p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin: 0;
}

/* Hotels Section */
.hotels-section {
    padding: 120px 50px;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

.hotels-header {
    margin-bottom: 70px;
}
.hotels-header .eyebrow {
    color: #3b8256;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.hotels-header .eyebrow .line {
    width: 40px;
    height: 2px;
    background-color: #3b8256;
}
.hotels-header h2 {
    font-size: 42px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}
.hotels-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    border-radius: 2px;
}
.hotels-header p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-top: 15px;
}

.hotels-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    height: 600px;
}

.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.col-center {
    justify-content: center;
}

.col-main {
    /* Main center column spans full height */
}

.col-split {
    /* Split columns automatically stack */
}

.gallery-img {
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    width: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.gallery-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.col-center .gallery-img {
    height: 300px; /* Increased from 250px for better proportions */
}

.img-tall {
    height: 350px;
}

.img-short {
    height: 230px;
}

.img-huge {
    height: 100%; /* 600px */
}

/* Attractions Section */
.attractions-section {
    position: relative;
    padding: 120px 50px;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.moving-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://images.pexels.com/photos/248797/pexels-photo-248797.jpeg?auto=compress&cs=tinysrgb&w=3000');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: panBackground 20s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes panBackground {
    0% { transform: scale(1.2) translateX(-4%); }
    100% { transform: scale(1.2) translateX(4%); }
}

.attractions-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(245, 247, 250, 0.85); /* Light glassmorphism overlay */
    backdrop-filter: blur(8px);
    z-index: 1;
}

.attractions-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.attractions-header {
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.attractions-header .eyebrow {
    color: #2563eb; /* Blue color */
}

.attractions-header .eyebrow .line {
    background-color: #2563eb; /* Blue color */
}

.attractions-header h2 {
    font-size: 46px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.attractions-header p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
}

.view-all {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 3px;
    transition: color 0.3s, border-color 0.3s;
    letter-spacing: 1px;
}

.view-all:hover {
    color: #3b8256;
    border-color: #3b8256;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.attraction-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.attraction-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
}

.card-top .icon {
    font-size: 32px;
    color: #1a1a1a;
}

.card-top .badge {
    background: #2563eb; /* Vibrant Blue like screenshot */
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.attraction-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 12px;
}

.attraction-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Activities Section */
.activities-section {
    padding: 120px 50px;
    background-color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.activities-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.activities-left {
    flex: 1;
    position: relative;
    height: 500px;
}

.decor-dots {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#2563eb 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
    opacity: 0.2;
}

.activities-left .img-large {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 500px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.activities-right {
    flex: 1;
}

.activities-right h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.activities-right .subtitle {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.activity-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.activity-item .text-blue {
    color: #2563eb;
    font-size: 24px;
    margin-top: 2px;
}

.activity-item h4 {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 8px;
}

.activity-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}


/* Contact Section */
.contact-section {
    padding: 100px 0 0;
    background-color: #f4f6f8;
    font-family: 'Outfit', sans-serif;
}

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

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e2e8f0;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-eyebrow i {
    color: #3b8256;
}

.contact-header h2 {
    font-size: 46px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #e5f0ea;
    color: #3b8256;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.contact-card h3 {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.help-link {
    color: #3b8256;
    font-weight: 600;
    text-decoration: none;
}

.contact-map {
    width: 100%;
    line-height: 0;
}

.contact-map iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}


/* Footer Section */
.site-footer {
    background-color: #0f172a;
    color: #94a3b8;
    font-family: 'Outfit', sans-serif;
    padding-top: 80px;
    position: relative;
    border-top: 1px solid #1e293b;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-col .underline {
    width: 30px;
    height: 2px;
    background-color: #f59e0b;
    margin-bottom: 25px;
}

.brand-col .footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.brand-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-right: 20px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #f59e0b;
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #cbd5e1;
}

.trust-badges i {
    color: #f59e0b;
    margin-right: 5px;
}

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

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

.links-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.links-col ul li a i {
    font-size: 10px;
    margin-right: 10px;
    color: #f59e0b;
}

.links-col ul li a:hover {
    color: #f59e0b;
}

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

.contact-col .icon-box {
    width: 32px;
    height: 32px;
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-col p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    color: #cbd5e1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 20px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.highlight-orange {
    color: #f59e0b;
    font-weight: 600;
}

.scroll-top {
    position: absolute;
    right: 40px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background-color: #06b6d4;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.scroll-top:hover {
    background-color: #0891b2;
    color: white;
}


/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        padding: 20px;
    }
    .nav-links {
        display: none; /* In a real app, implement a hamburger menu */
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .experience-card {
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
        max-width: 300px;
    }
    
    .about-section {
        padding: 100px 20px 60px;
    }
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .card-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
    .card-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
    .card-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
    .card-4 { grid-column: 1 / 3; grid-row: 3 / 4; }
    .card-5 { grid-column: 1 / 3; grid-row: 4 / 5; }
    .card-6 { grid-column: 1 / 3; grid-row: 5 / 6; }
    
    .bento-section {
        padding: 100px 20px;
    }

    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hotels-gallery {
        flex-wrap: wrap;
        height: auto;
    }
    
    .gallery-col {
        min-width: 45%;
    }
    
    .col-main .img-huge {
        height: 400px;
    }

    .attractions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 52px;
    }
    .services-menu {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        padding: 20px;
        bottom: 20px;
    }
    .service-item {
        min-width: 80px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-main-img {
        height: 400px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .card-1 { grid-column: 1 / 2; grid-row: 1 / 2; min-height: 300px; }
    .card-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
    .card-3 { grid-column: 1 / 2; grid-row: 3 / 4; }
    .card-4 { grid-column: 1 / 2; grid-row: 4 / 5; min-height: 300px; }
    .card-5 { grid-column: 1 / 2; grid-row: 5 / 6; flex-direction: column; }
    .card-6 { grid-column: 1 / 2; grid-row: 6 / 7; }
    
    .card-5-img {
        width: 100%;
        height: 200px;
    }
    
    .bento-header h2 {
        font-size: 36px;
    }
    
    .card-6-arrow {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 20px;
    }
    
    .card-6-arrow:hover {
        transform: translateX(5px);
    }

    .dest-grid {
        grid-template-columns: 1fr;
    }

    .destinations-section {
        padding: 80px 20px;
    }

    .dest-header h2 {
        font-size: 32px;
    }

    .hotels-section {
        padding: 80px 20px;
    }
    
    .hotels-header h2 {
        font-size: 32px;
    }
    
    .gallery-col {
        min-width: 100%;
    }
    
    .col-center .gallery-img,
    .img-tall, 
    .img-short, 
    .img-huge {
        height: 250px;
    }

    .attractions-section {
        padding: 80px 20px;
    }
    
    .header-left h2 {
        font-size: 32px;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .activities-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .activities-left {
        width: 100%;
        height: 400px;
    }
    
    .activities-left .img-large {
        width: 90%;
        height: 350px;
    }
    
    .activities-left .img-small {
        width: 60%;
        height: 250px;
    }
    
    .activities-right h2 {
        font-size: 36px;
    }
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2563eb;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.theme-btn:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-2px);
}
