/* Sun Land Tours - Stylesheet */
/* ============================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --gold: #C89B3C;
    --gold-light: #D4AF37;
    --gold-dark: #A67C2E;
    --night-blue: #0D2B45;
    --night-blue-light: #164269;
    --sand: #F8F4EC;
    --white: #FFFFFF;
    --text: #2F2F2F;
    --text-light: #6B6B6B;
    --sunset: #D66A2D;
    --border: rgba(255, 255, 255, 0.15);
    --shadow: rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--sand);
    line-height: 1.6;
    min-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 155, 60, 0.3);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--night-blue);
}

.btn-dark {
    background: var(--night-blue);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--night-blue-light);
}

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

.section-title span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--night-blue);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Header & Top Bar */
.top-bar {
    background: var(--night-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

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

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

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

.top-bar-info .top-phones {
    font-weight: 500;
    letter-spacing: 0.02em;
}

.top-bar-info i {
    color: var(--gold);
    flex-shrink: 0;
}

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

.top-bar-social a {
    color: var(--white);
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--gold);
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

/* Navbar */
.navbar {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    background: rgba(13, 43, 69, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-inner {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background: rgba(13, 43, 69, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.navbar-inner.scrolled {
    position: fixed;
    top: 0;
    background: rgba(13, 43, 69, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    height: 48px;
    width: auto;
    display: block;
}

/* Keep old logo styles for backward compatibility (can be removed later) */
.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
}

.logo-text {
    color: var(--white);
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: -4px;
}

.logo-text span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

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

.nav-menu a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a i {
    font-size: 13px;
    color: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover i,
.nav-menu a.active i {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

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

.btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--gold);
    color: var(--white);
}

/* Language dropdown */
.language-switch {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--night-blue);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 160px;
    z-index: 9999;
}

.language-switch::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
    z-index: 9998;
}

.language-switch:hover .lang-dropdown,
.language-switch.open .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--sand);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.lang-flag {
    font-size: 16px;
    flex-shrink: 0;
}

.lang-dropdown a:hover {
    background: rgba(200, 155, 60, 0.2);
    color: var(--gold);
}

/* User dropdown menu */
.user-menu {
    position: relative;
}

.user-menu-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.user-menu-toggle:checked ~ .user-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.user-menu-btn {
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding: 6px 10px 6px 10px !important;
    background: transparent;
    border: 1.5px solid rgba(200, 155, 60, 0.5);
    border-radius: 24px;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.user-menu-btn:hover {
    background: rgba(200, 155, 60, 0.2);
    border-color: var(--gold);
    color: var(--gold) !important;
}

.user-menu-btn .user-avatar-mini,
.user-menu .btn-login .user-avatar-mini {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--night-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    flex-shrink: 0;
}

.user-menu-btn i,
.user-menu .btn-login i {
    font-size: 14px;
    flex-shrink: 0;
}

.user-menu-btn .fa-chevron-down,
.user-menu .btn-login .fa-chevron-down {
    font-size: 9px;
    opacity: 0.7;
    transition: transform 0.2s;
}

.user-menu-toggle:checked ~ .user-menu-btn .fa-chevron-down {
    transform: rotate(180deg);
}
}

.user-menu:hover .user-dropdown,
.user-menu.open .user-dropdown,
.user-menu:focus-within .user-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 14px;
    padding: 6px;
    min-width: 210px;
    z-index: 1000;
    box-shadow: 0 12px 40px rgba(13, 43, 69, 0.2);
    border: 1px solid rgba(200, 155, 60, 0.2);
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.user-dropdown .ud-header {
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
    margin-bottom: 4px;
}

.user-dropdown .ud-name {
    font-weight: 700;
    color: var(--night-blue);
    font-size: 15px;
}

.user-dropdown .ud-email {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--night-blue);
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 500;
}

.user-dropdown a:hover {
    background: rgba(200, 155, 60, 0.1);
    color: var(--gold);
}

.user-dropdown a i {
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--gold);
    margin-right: 0;
}

.user-dropdown .ud-divider {
    height: 1px;
    background: #eee;
    margin: 4px 0;
}

.user-dropdown .ud-logout {
    color: #c0392b !important;
}

.user-dropdown .ud-logout i {
    color: #c0392b !important;
}

.user-dropdown .ud-logout:hover {
    background: rgba(192, 57, 43, 0.08) !important;
    color: #c0392b !important;
}

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .container {
    width: 100%;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: 
        linear-gradient(180deg, rgba(13, 43, 69, 0.3) 0%, rgba(13, 43, 69, 0.6) 60%, rgba(13, 43, 69, 0.9) 100%),
        linear-gradient(135deg, #D66A2D 0%, #C89B3C 30%, #0D2B45 70%, #051a2b 100%);
    background-size: cover;
    background-position: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 43, 69, 0.65) 0%, rgba(13, 43, 69, 0.35) 50%, rgba(214, 106, 45, 0.1) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 40px;
    max-width: 720px;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.hero-title {
    font-size: 46px;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.15;
    min-height: 2.3em;
}

.hero-title .highlight {
    color: var(--gold);
    font-weight: 700;
}

.typewriter-text {
    color: var(--white);
}

.typewriter-cursor {
    color: var(--gold);
    font-weight: 300;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    max-width: 560px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Features Bar */
.features-bar {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0 15px;
}

.features-bar .container {
    background: var(--night-blue);
    border-radius: 16px;
    border: 1px solid rgba(200, 155, 60, 0.3);
    padding: 35px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    background: rgba(200, 155, 60, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
}

.feature-text h3 {
    color: #D66A2D;
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700;
}

.feature-text p {
    color: #C89B3C;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}

/* Destinations Section */
.destinations {
    padding: 100px 0;
    background: var(--sand);
}

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

.destination-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.destination-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    font-size: 18px;
    color: var(--night-blue);
    margin-bottom: 10px;
}

.destination-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
}

.destination-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.destination-card .btn {
    width: 100%;
    padding: 12px;
    font-size: 13px;
}

/* Newsletter */
.newsletter {
    background: var(--night-blue);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-icon {
    font-size: 40px;
    color: var(--gold);
}

.newsletter-text h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 5px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    min-width: 400px;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    outline: none;
}

.newsletter-form .btn {
    border-radius: 0 8px 8px 0;
    padding: 16px 28px;
}

/* Footer */
.footer {
    background: var(--night-blue);
    color: var(--white);
    padding: 70px 0 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

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

.footer-brand .site-logo {
    height: 60px;
    width: auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Mobile Bottom Navigation */
@media (min-width: 769px) {
    .mobile-bottom-nav,
    body > .mobile-bottom-nav,
    footer + .mobile-bottom-nav {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        pointer-events: none !important;
    }
}

.mobile-bottom-nav {
    display: none !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 99999;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    box-sizing: border-box;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.mobile-bottom-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
    position: relative;
    min-width: 0;
}

.mobile-bottom-item i {
    font-size: 20px;
    transition: var(--transition);
}

.mobile-bottom-item.active,
.mobile-bottom-item:hover {
    color: var(--gold);
}

.mobile-bottom-item.active i,
.mobile-bottom-item:hover i {
    transform: translateY(-3px);
}

.mobile-bottom-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 0 0 4px 4px;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: var(--white);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 99998;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.mobile-sticky-cta .btn {
    width: 100%;
    padding: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .features-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--night-blue);
        flex-direction: column;
        padding: 100px 40px;
        gap: 25px;
        transition: var(--transition);
    }
    .nav-menu.active {
        right: 0;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-title {
        font-size: 40px;
        min-height: 2.3em;
    }
    .hero-content {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .newsletter .container {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-form {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
    body.has-sticky-cta {
        padding-bottom: 140px;
    }
    .login-page {
        padding-bottom: 90px;
        min-height: calc(100vh - 70px);
    }
    .dashboard-page {
        padding-bottom: 70px;
    }
    .dashboard-page .main-content {
        padding-bottom: 80px;
    }
    .top-bar-info {
        display: none;
    }
    .top-bar {
        padding: 8px 0;
    }
    .top-bar-social {
        width: 100%;
        justify-content: space-between;
    }
    .navbar {
        top: 36px;
        padding: 12px 0;
    }
    .navbar.scrolled {
        padding: 10px 0;
    }
    .navbar-inner {
        top: 36px;
    }
    .site-logo {
        height: 32px;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .logo-icon::before {
        width: 50px;
        height: 50px;
    }
    .logo-text h1 {
        font-size: 18px;
    }
    .logo-text span {
        font-size: 9px;
    }
    .btn-login {
        padding: 8px 14px;
        font-size: 12px;
    }
    .btn-login span {
        display: none;
    }
    .user-menu-btn span,
    .user-menu .btn-login span {
        display: inline;
    }
    .user-menu-btn {
        padding: 5px 8px !important;
        font-size: 12px;
        gap: 4px;
    }
    .user-menu-btn .user-avatar-mini {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    .mobile-toggle {
        font-size: 22px;
    }
    .hero {
        min-height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 110px 0 0;
        position: relative;
    }
    .hero .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 1;
        width: 100%;
    }
    .hero-content {
        padding-top: 0;
        padding-bottom: 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateY(-3vh);
    }
    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
        justify-content: center;
        margin-bottom: 15px;
    }
    .hero-subtitle::before {
        width: 25px;
    }
    .hero-title {
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 15px;
        min-height: 2.5em;
    }
    .hero-description {
        font-size: 15px;
        margin-bottom: 22px;
        max-width: 100%;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
    }
    .hero-buttons .btn {
        width: 100%;
        padding: 14px;
    }
    .features-bar {
        display: none !important;
    }
    .features-bar .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 12px;
        border-radius: 12px;
        background: var(--night-blue);
        border: 1px solid rgba(200, 155, 60, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    .feature-item {
        gap: 8px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 8px 4px;
    }
    .feature-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
        border-radius: 8px;
    }
    .feature-text h3 {
        font-size: 12px;
        margin-bottom: 2px;
    }
    .feature-text p {
        display: none;
    }
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .destination-card {
        display: flex;
        flex-direction: row;
        overflow: hidden;
    }
    .destination-img {
        width: 40%;
        min-width: 140px;
        height: auto;
    }
    .destination-content {
        flex: 1;
        padding: 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .destination-content h3 {
        font-size: 17px;
    }
    .destination-content .btn {
        margin-top: auto;
    }
    .section-title h2 {
        font-size: 26px;
    }
    .section-title p {
        font-size: 14px;
    }
    .newsletter {
        padding-bottom: 85px;
    }
    .newsletter .container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .newsletter-content {
        flex-direction: column;
        gap: 12px;
    }
    .newsletter-form {
        min-width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    .newsletter-form input,
    .newsletter-form .btn {
        border-radius: 8px;
        width: 100%;
    }
    .footer {
        padding-bottom: 70px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
.footer-brand .logo .site-logo {
    height: 55px;
}
        justify-content: center;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .mobile-bottom-nav {
        display: flex !important;
    }
    .mobile-sticky-cta {
        display: block;
        bottom: 70px;
    }
    .page-banner {
        padding-top: 100px;
        min-height: 280px;
    }
    .page-banner-content h1 {
        font-size: 28px;
    }
    .page-banner-content p {
        font-size: 15px;
    }
    .services-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }
    .offer-card {
        margin-bottom: 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info,
    .contact-form {
        padding: 25px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .stat-card {
        padding: 18px;
    }
    .stat-value {
        font-size: 22px;
    }
    .dashboard-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
        min-height: 2.4em;
    }
    .hero-content {
        padding-top: 0;
        padding-bottom: 30px;
        transform: translateY(-2vh);
    }
    .features-bar {
        bottom: 50px;
    }
    .hero-description {
        font-size: 14px;
    }
    .section-title h2 {
        font-size: 24px;
    }
    .mobile-bottom-item span {
        font-size: 10px;
    }
    .mobile-bottom-item i {
        font-size: 18px;
    }
    .destination-card {
        flex-direction: column;
    }
    .destination-img {
        width: 100%;
        height: 180px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-height: 700px) and (min-width: 769px) {
    .hero-content {
        padding-top: 0;
        padding-bottom: 50px;
        transform: translateY(-4vh);
    }
    .hero-title {
        font-size: 38px;
        min-height: 2.2em;
    }
    .hero-description {
        margin-bottom: 20px;
        font-size: 16px;
    }
    .hero-subtitle {
        margin-bottom: 15px;
    }
    .features-bar {
        bottom: 60px;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Inner Pages Common */
.page-banner {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
    padding-top: 120px;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 43, 69, 0.85) 0%, rgba(13, 43, 69, 0.6) 100%);
    z-index: -1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-banner-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-banner-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Services Page */
.services-section {
    padding: 80px 0;
    background: var(--sand);
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(200, 155, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 28px;
}

.service-card h3 {
    color: var(--night-blue);
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Offers Page */
.offers-section {
    padding: 80px 0;
    background: var(--sand);
}

.offers-filters {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.filter-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--night-blue);
    margin-bottom: 8px;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.filter-group select:focus,
.filter-group input:focus {
    border-color: var(--gold);
}

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

.offer-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    position: relative;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--sunset);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.offer-img {
    height: 220px;
    overflow: hidden;
}

.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.offer-content {
    padding: 25px;
}

.offer-content h3 {
    color: var(--night-blue);
    font-size: 20px;
    margin-bottom: 12px;
}

.offer-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 13px;
}

.offer-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.offer-price .old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

.offer-price .new-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
}

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

.offer-actions .btn {
    flex: 1;
    padding: 12px;
    font-size: 13px;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: var(--sand);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    background: var(--night-blue);
    color: var(--white);
    padding: 40px;
    border-radius: 16px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 10px;
    background: rgba(200, 155, 60, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-form h3 {
    color: var(--night-blue);
    font-size: 24px;
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--night-blue);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}

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

.map-section {
    padding-bottom: 80px;
    background: var(--sand);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--night-blue);
    font-size: 16px;
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-light);
    font-size: 14px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
}

.login-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.login-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 43, 69, 0.7);
    z-index: -1;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.login-card .logo {
    justify-content: center;
    margin-bottom: 30px;
}

.login-card .site-logo {
    height: 55px;
}

/* Admin Login Card */
.admin-login-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(200,155,60,0.2);
}

.login-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--night-blue), #1a3f5c);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(200,155,60,0.3);
}

.login-badge i {
    font-size: 14px;
}

.login-subtitle {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 25px;
    margin-top: -10px;
}

.login-form-admin {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-input-icon {
    position: relative;
}

.login-input-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 15px;
    pointer-events: none;
}

.login-input-icon input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    background: #fafafa;
    box-sizing: border-box;
}

.login-input-icon input:focus {
    border-color: var(--gold);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(200,155,60,0.1);
}

.btn-login-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--night-blue), #1a3f5c);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 5px;
}

.btn-login-submit:hover {
    background: linear-gradient(135deg, #1a3f5c, var(--night-blue));
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(13, 43, 69, 0.25);
}

.btn-login-submit i {
    transition: transform 0.3s;
}

.btn-login-submit:hover i {
    transform: translateX(4px);
}

.login-card .logo-icon {
    background: var(--gold);
}

.login-card .logo-text {
    color: var(--night-blue);
}

.login-card h2 {
    text-align: center;
    color: var(--night-blue);
    margin-bottom: 30px;
    font-size: 28px;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.forgot-password {
    color: var(--gold);
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    color: var(--text-light);
    font-size: 14px;
}

.login-footer a {
    color: var(--gold);
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Dashboard */
.dashboard-page {
    display: flex;
    min-height: 100vh;
    background: #f0f2f5;
}

.sidebar {
    width: 280px;
    background: var(--night-blue);
    color: var(--white);
    padding: 30px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 30px 30px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.sidebar-logo .site-logo {
    height: 40px;
    width: auto;
}

.sidebar-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.sidebar-logo .logo-text h1 {
    font-size: 18px;
}

.sidebar-logo .logo-text span {
    font-size: 9px;
}

.sidebar-menu {
    padding: 0 20px;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: rgba(200, 155, 60, 0.2);
    color: var(--gold);
}

.sidebar-menu i {
    width: 20px;
}

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 30px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-header h1 {
    color: var(--night-blue);
    font-size: 28px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stat-card-header h3 {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stat-icon.gold {
    background: rgba(200, 155, 60, 0.1);
    color: var(--gold);
}

.stat-icon.blue {
    background: rgba(13, 43, 69, 0.1);
    color: var(--night-blue);
}

.stat-icon.orange {
    background: rgba(214, 106, 45, 0.1);
    color: var(--sunset);
}

.stat-icon.green {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--night-blue);
    margin-bottom: 5px;
}

.stat-change {
    font-size: 13px;
    color: var(--text-light);
}

.dashboard-section {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 30px;
}

.dashboard-section h2 {
    color: var(--night-blue);
    font-size: 20px;
    margin-bottom: 25px;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    text-align: left;
    padding: 15px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e0e0e0;
}

tbody td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

tbody tr:hover {
    background: #fafafa;
}

.status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status.confirmed {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status.pending {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.status.cancelled {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Privacy Page */
.privacy-section {
    padding: 80px 0;
    background: var(--sand);
}

.privacy-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.privacy-sidebar {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.privacy-sidebar h3 {
    color: var(--night-blue);
    font-size: 18px;
    margin-bottom: 20px;
}

.privacy-sidebar ul li {
    margin-bottom: 10px;
}

.privacy-sidebar ul li a {
    color: var(--text-light);
    font-size: 14px;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.privacy-sidebar ul li a:hover {
    background: rgba(200, 155, 60, 0.1);
    color: var(--gold);
}

.privacy-content {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px var(--shadow);
}

.privacy-content h2 {
    color: var(--night-blue);
    font-size: 24px;
    margin: 30px 0 15px;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Offer Card Without Price */
.offer-short-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-actions .btn {
    flex: 1;
    padding: 12px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Offer Details Page */
.offer-details-section {
    padding: 80px 0;
    background: var(--sand);
}

.offer-details-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.offer-details-main {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.offer-details-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.offer-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-details-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--sunset);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
}

.offer-details-info,
.offer-details-features,
.offer-details-itinerary,
.offer-details-includes,
.offer-reviews {
    padding: 35px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-details-info h2,
.offer-details-features h2,
.offer-details-itinerary h2,
.offer-details-includes h2,
.offer-reviews h2 {
    color: var(--night-blue);
    font-size: 24px;
    margin-bottom: 20px;
}

.offer-details-info p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 15px;
}

.offer-details-info .lead-text {
    color: var(--night-blue);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--sand);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--sand);
    border-radius: 10px;
    color: var(--night-blue);
    font-weight: 500;
}

.feature-item i {
    color: var(--gold);
    font-size: 18px;
}

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

.itinerary-item {
    display: flex;
    gap: 15px;
}

.itinerary-marker {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.itinerary-content p {
    color: var(--text-light);
    line-height: 1.6;
    padding-top: 8px;
}

.offer-details-includes ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.offer-details-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.offer-details-includes li i {
    color: var(--success);
    font-size: 16px;
}

/* Offer Sidebar */
.offer-details-sidebar {
    position: sticky;
    top: 100px;
}

.offer-booking-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px var(--shadow);
    border: 2px solid rgba(200, 155, 60, 0.2);
}

.offer-booking-price {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.offer-booking-price .old-price {
    display: block;
    color: #888;
    text-decoration: line-through;
    font-size: 16px;
    margin-bottom: 5px;
}

.offer-booking-price .new-price {
    display: block;
    color: var(--gold);
    font-size: 36px;
    font-weight: 800;
}

.offer-booking-price .price-person {
    display: block;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 5px;
}

.offer-details-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: #fff;
    border: 1px solid rgba(200, 155, 60, 0.35);
    border-radius: 14px;
    padding: 18px 22px;
    margin: 10px 0 30px;
    box-shadow: 0 6px 20px rgba(13, 43, 69, 0.06);
}

.offer-details-price .od-price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.offer-details-price .od-price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
}

.offer-details-price .od-price-new {
    color: var(--gold);
    font-size: 30px;
    font-weight: 800;
}

.offer-details-price .od-price-unit {
    color: var(--text-light);
    font-size: 14px;
}

.offer-booking-meta {
    margin-bottom: 25px;
}

.booking-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-light);
}

.booking-meta-item:last-child {
    border-bottom: none;
}

.booking-meta-item i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.btn-whatsapp {
    width: 100%;
    background: #25D366 !important;
    border-color: #25D366 !important;
    margin-bottom: 15px;
}

.btn-whatsapp:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
}

.booking-note {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
}

/* Reviews and Ratings */
.reviews-summary {
    background: var(--sand);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-average {
    text-align: center;
}

.average-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.average-stars {
    color: var(--gold);
    font-size: 18px;
    margin: 10px 0;
}

.average-count {
    color: var(--text-light);
    font-size: 14px;
}

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

.no-reviews {
    text-align: center;
    color: var(--text-light);
    padding: 30px;
    background: var(--sand);
    border-radius: 12px;
}

.review-item {
    padding: 25px;
    background: var(--sand);
    border-radius: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.review-meta h4 {
    color: var(--night-blue);
    font-size: 16px;
    margin-bottom: 3px;
}

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

.review-rating {
    color: var(--gold);
    font-size: 14px;
}

.review-text {
    color: var(--text-light);
    line-height: 1.7;
}

.review-form-wrapper {
    background: var(--sand);
    border-radius: 16px;
    padding: 30px;
}

.review-form-wrapper h3 {
    color: var(--night-blue);
    font-size: 20px;
    margin-bottom: 20px;
}

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

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: var(--gold);
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Responsive Inner Pages */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .offers-filters {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .privacy-layout {
        grid-template-columns: 1fr;
    }
    .privacy-sidebar {
        position: static;
    }
    .sidebar {
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 1000;
    }
    .sidebar.active {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0;
    }
    .offer-details-grid {
        grid-template-columns: 1fr;
    }
    .offer-details-sidebar {
        position: static;
        order: -1;
    }
    .offer-details-image {
        height: 300px;
    }
    .offer-details-info,
    .offer-details-features,
    .offer-details-itinerary,
    .offer-details-includes,
    .offer-reviews {
        padding: 25px;
    }
    .features-grid,
    .offer-details-includes ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner-content h1 {
        font-size: 32px;
    }
    .services-grid,
    .offers-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .offers-filters {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .login-card {
        padding: 30px 20px;
    }
    .offer-price .new-price {
        font-size: 20px;
    }
    .offer-booking-price .new-price {
        font-size: 30px;
    }
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* WhatsApp Phone Modal */
.whatsapp-modal-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    padding: 20px;
}

.whatsapp-modal {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.whatsapp-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.whatsapp-modal-close:hover { color: #333; }

.whatsapp-modal-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.whatsapp-modal-icon i { font-size: 34px; color: #fff; }

.whatsapp-modal h3 {
    font-size: 20px;
    color: var(--night-blue);
    margin-bottom: 6px;
}

.whatsapp-modal > p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 25px;
}

.whatsapp-phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wa-phone-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 12px;
    text-decoration: none !important;
    color: var(--night-blue);
    transition: all 0.25s;
    text-align: left;
}

.wa-phone-link:hover {
    background: #dcfce7;
    border-color: #25D366;
    transform: translateX(4px);
}

.wa-phone-link i {
    font-size: 22px;
    color: #25D366;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.wa-phone-link strong {
    display: block;
    font-size: 16px;
    color: var(--night-blue);
    font-weight: 600;
}

.wa-phone-link span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}
