/* ===================================
   ROOT VARIABLES & CORE DESING
   =================================== */

:root {
    /* Premium Color Palette (from Logo) */
    --primary-color: #e67817;
    --primary-dark: #b85b0d;
    --primary-light: #fff5ed;
    --secondary-color: #007dc2;
    --accent-gold: #f5c406;
    --accent-green: #85c41e;
    --tertiary-color: #8f5e82;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f0e1cf;
    --medium-gray: #6c757d;
    --dark-gray: #4d4d4d;
    --black: #1a1a1a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #e67817 0%, #f5c406 100%);
    --gradient-secondary: linear-gradient(135deg, #007dc2 0%, #005a91 100%);
    --gradient-tertiary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-gold) 100%);
    --gradient-gold: linear-gradient(135deg, #f5c406 0%, #ffd94d 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Baskervville', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

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

/* SECTIONS & CONTAINER */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow-x: hidden;
}

.section-alt {
    background-color: var(--off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* ===================================
   FACILITIES SHOWCASE & MOVING TEXT
   =================================== */

.facilities-showcase {
    position: relative;
    padding: 0 0 150px 0;
    background: var(--white);
    overflow: hidden;
}

.moving-text-container {
    position: absolute;
    bottom: -65px;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.04;
    user-select: none;
}

.moving-text-track {
    display: flex;
    white-space: nowrap;
    animation: moveText 20s linear infinite;
}

.moving-text-track span {
    font-size: 8rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 50px;
}

@keyframes moveText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
}

.facility-card-new {
    padding: 2rem;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.facility-card-new:last-child {
    border-right: none;
}

.facility-icon-new {
    font-size: 2.5rem;
    color: var(--tertiary-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.facility-card-new h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.facility-card-new p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
}



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

.justify-center {
    justify-content: center !important;
}

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

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--off-white);
    border: 2px dashed var(--tertiary-color);
    border-radius: 50px;
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle img {
    height: 24px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 800px;
}

/* ===================================
   TOP BAR SECTION
   =================================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--black);
    color: var(--white);
    font-size: 0.85rem;
    z-index: 1001;
    display: flex;
    align-items: center;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-item a {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-item a:hover {
    color: var(--primary-color);
}

.top-bar-item i {
    color: var(--primary-color);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.nav-mobile-contact {
    display: none;
}

/* NAVIGATION BAR */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(230, 120, 23, 0.1);
}

.navbar.scrolled {
    top: 40px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 70px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: var(--primary-light);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(230, 120, 23, 0.3);
}

.nav-link.active::before {
    display: none;
}

.chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    /* background: var(--accent-green); */
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-normal);
    margin-left: 0.5rem;
}

.chat-btn:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(133, 196, 30, 0.4);
    color: var(--white);
}

.chat-btn i {
    font-size: 1.1rem;
    color: var(--accent-green);
}

.chat-btn:hover i {
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(230, 120, 23, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(230, 120, 23, 0.1);
    transition: var(--transition-normal);
}

.menu-toggle:hover {
    background: rgba(230, 120, 23, 0.1);
    border-color: rgba(230, 120, 23, 0.2);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle:hover span {
    background: var(--primary-color);
}

/* ===================================
   HERO SLIDER SECTION
   =================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 0s 1s;
    z-index: 1;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
    transition: opacity 1s ease-in-out;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-image {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.hero-stars {
    color: var(--accent-gold);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-slide.active .hero-stars {
    animation: slideInUp 0.8s ease-out forwards;
}

.hero-slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    font-family: var(--font-secondary);
}

.hero-slide.active .hero-slide-title {
    animation: slideInUp 0.8s ease-out forwards;
}

.hero-slide-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.hero-slide.active .hero-slide-subtitle {
    animation: slideInUp 0.8s ease-out 0.2s forwards;
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--white);
    transition: all 0.4s ease;
    opacity: 0;
}

.hero-slide.active .hero-slide-btn {
    animation: slideInUp 0.8s ease-out 0.4s forwards;
}

.hero-slide-btn:hover {
    background: var(--white);
    color: var(--black);
}

.hero-slide-btn span.arrow {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.hero-slide-btn:hover span.arrow {
    transform: translateX(5px);
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(230, 120, 23, 0.4);
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(230, 120, 23, 0.5);
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===================================
   ABOUT US SECTION
   =================================== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    transition: all 0.4s ease;
    align-self: flex-start;
}

.about-btn.about-btn-solid {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.about-btn.about-btn-solid:hover {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C00 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 120, 23, 0.3);
}

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

.about-btn span.arrow {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.about-btn:hover span.arrow {
    transform: translateX(5px);
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.03);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-wrapper {
    position: relative;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    padding: 80px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 120, 23, 0.18) 0%, rgba(230, 120, 23, 0) 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left;
}

.cta-badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: transparent;
    padding: 0;
    border: none;
}

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--font-secondary);
}

.cta-title .title-line-1 {
    display: block;
    color: var(--white);
}

.cta-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.cta-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-color);
}

.cta-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-btn span.arrow {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.cta-btn:hover span.arrow {
    transform: translateX(5px);
}

.cta-btn.cta-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.cta-btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* ===================================
   FOOTER SECTION
   =================================== */
.footer-new {
    position: relative;
    width: 100%;
    margin-top: 20px;
    z-index: 1;
}

.footer-main {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    border-radius: 60px 60px 0 0;
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(230, 120, 23, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(133, 196, 30, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.footer-main .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-img {
    height: 110px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-color);
    transition: all var(--transition-normal);
}

.footer-logo-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(230, 120, 23, 0.3);
}

.footer-tagline {
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.footer-social h5 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 15px 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 196, 6, 0.3);
    border-color: var(--accent-gold);
}

.social-icon svg,
.social-icon i {
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 20px;
}

.social-icon:hover i {
    color: #1a5490;
}

.hotel-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: -5px;
}

.hotel-social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    text-decoration: none;
}

.hotel-social-icons a:hover {
    color: var(--white);
    background: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 196, 6, 0.3);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 40px;
}

.footer-links-col h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 20px 0;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-links-col ul li a:hover::after {
    width: 100%;
}

.footer-contact .contact-list li a {
    word-break: break-word;
    display: inline-block;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.6;
}

.footer-contact .contact-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-contact .contact-list li a:hover {
    color: var(--accent-gold);
}

.footer-contact .contact-list li a:hover::after {
    width: 100%;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    margin: 50px 0 30px 0;
}

.footer-credits {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
}

.footer-credits p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 15px;
}

.footer-credits p a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credits p a:hover {
    color: var(--accent-gold);
}

/* REVEAL ON SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   FLOAT BUTTONS
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulseWhatsApp 2s infinite;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    color: white;
}

.whatsapp-float i {
    text-decoration: none;
    color: white;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.scroll-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 120, 23, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(230, 120, 23, 0.4);
}

.scroll-top i {
    color: var(--white);
}

/* ===================================
   FEATURED HOTEL SECTION
   =================================== */

.featured-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    border-radius: var(--radius-lg);
    padding: 3rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.featured-wrapper-reverse {
    grid-template-columns: 1fr 1.1fr;
}

.featured-wrapper-reverse .featured-content {
    order: 2;
}

.featured-wrapper-reverse .featured-image {
    order: 1;
}

/* ===================================
   FORM CONSENT STYLES
   =================================== */
.form-consent {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
}

.consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
    background-color: transparent;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.consent-checkbox label {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 400;
}

.consent-checkbox .error-message {
    position: absolute;
    bottom: -15px;
    left: 30px;
    font-size: 0.75rem;
    color: #ff4d4d;
    display: none;
}

.consent-checkbox.error .error-message {
    display: block;
}

.consent-checkbox.error input[type="checkbox"] {
    border-color: #ff4d4d;
}

@media (max-width: 768px) {
    .consent-checkbox label {
        font-size: 0.85rem;
    }
}

/* Safari Hotel Theme - Primary */
.featured-wrapper.safari-featured {
    background: rgba(230, 120, 23, 0.05);
    border-color: rgba(230, 120, 23, 0.3);
}

.safari-featured .facility-item,
.safari-featured .featured-points li i {
    color: var(--primary-color);
}

/* Grand Safari Theme - Secondary */
.featured-wrapper.grand-featured {
    background: rgba(0, 125, 194, 0.05);
    border-color: rgba(0, 125, 194, 0.3);
}

.grand-featured .facility-item,
.grand-featured .featured-points li i {
    color: var(--secondary-color);
}

/* Prime Safari Theme - Tertiary */
.featured-wrapper.prime-featured {
    background: rgba(143, 94, 130, 0.07);
    border-color: rgba(143, 94, 130, 0.3);
}

.prime-featured .facility-item,
.prime-featured .featured-points li i {
    color: var(--tertiary-color);
}

.featured-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.featured-desc {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.featured-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--black);
}

.featured-points li i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.facility-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.facility-track {
    display: flex;
    gap: 2rem;
    animation: slideFacilities 35s linear infinite;
    width: max-content;
}

.facility-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-gray);
    white-space: nowrap;
}

.facility-item i {
    font-size: 1.2rem;
}

@keyframes slideFacilities {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.featured-image {
    position: relative;
    width: 100%;
    min-height: 400px;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.featured-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-wrapper:hover .featured-image img {
    transform: scale(1.05);
}

/* ===================================
   HOTELS SHOWCASE SECTION
   =================================== */

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    text-decoration: none;
    transition: transform 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.showcase-card:hover .showcase-bg {
    transform: scale(1.08);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.showcase-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.showcase-content h3 {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    font-family: var(--font-secondary);
    letter-spacing: -0.5px;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.6rem;
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid var(--white);
    transition: all 0.3s ease;
}

.showcase-btn-yellow {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.showcase-card:hover .showcase-btn {
    background: var(--white);
    color: var(--black);
    transform: translateX(5px);
}

.showcase-card:hover .showcase-btn-yellow {
    background: var(--accent-gold);
    color: var(--black);
}

/* ===================================
   STATS COUNTER SECTION
   =================================== */

.counter-section {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('assets/banner/banner1-safari.webp');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: var(--white);
    padding: 80px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.counter-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.counter-number::after {
    content: '+';
}

.counter-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.9;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-wrapper {
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 60px;
    color: var(--black);
    opacity: 0.1;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.star-rating i {
    font-size: 20px;
    color: var(--accent-gold);
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-style: italic;
    font-family: var(--font-primary);
}

.testimonial-author {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 8px 0;
}

.author-position {
    font-size: 14px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--black);
    width: 16px;
    height: 16px;
}

.slider-dots .dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.mb-2rem {
    margin-bottom: 2rem;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.page-hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('assets/banner/banner1-safari.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 120px;
}

.page-hero.safari-hero {
    background-image: url('assets/banner/banner1-safari.webp');
}

.page-hero.grand-safari-hero {
    background-image: url('assets/banner/banner2-grand.webp');
}

.page-hero.prime-safari-hero {
    background-image: url('assets/banner/banner3-prime.webp');
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(17, 17, 17, 0.80) 50%, rgba(10, 10, 10, 0.9) 100%),
        radial-gradient(circle at 20% 30%, rgba(255, 167, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 167, 38, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page-hero-subtitle {
    color: var(--white);
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 167, 38, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(255, 167, 38, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 167, 38, 0.4);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Info Cards */
.contact-wrapper {
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(248, 124, 47, 0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--black);
}

/* Contact Social Section */
.contact-social-section {
    margin: 3rem 0 4rem;
}

.contact-social-wrapper {
    background: linear-gradient(135deg, rgba(248, 124, 47, 0.05) 0%, rgba(10, 10, 10, 0.05) 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(248, 124, 47, 0.1);
    transition: all 0.3s ease;
}

.contact-social-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(248, 124, 47, 0.1);
}

.contact-social-wrapper h3 {
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-social-wrapper p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s ease;
    min-width: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-social-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-social-icon span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
}

.contact-social-icon:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(248, 124, 47, 0.15);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    position: relative;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 167, 38, 0.1);
    background: var(--white);
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group.error .error-message {
    display: block;
}

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

.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 167, 38, 0.4);
    background: var(--black);
    color: var(--white);
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2rem;
    flex-shrink: 0;
}

.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.error-message-box {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #c0392b;
}

.form-message-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.form-message-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Hotel Location Blocks */
.hotel-locations-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 5rem;
}

.hotel-location-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.hotel-location-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hotel-location-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    position: relative;
    padding-bottom: 1rem;
}

.hotel-location-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: currentColor;
}

.hotel-address {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.hotel-location-map {
    height: 400px;
    width: 100%;
}

.hotel-location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Color Variants */
.hotel-card-safari {
    background: rgba(230, 120, 23, 0.05);
    border-color: rgba(230, 120, 23, 0.3);
}

.hotel-card-safari h3 {
    color: var(--primary-color);
}

.hotel-card-grand {
    background: rgba(0, 125, 194, 0.05);
    border-color: rgba(0, 125, 194, 0.3);
}

.hotel-card-grand h3 {
    color: var(--secondary-color);
}

.hotel-card-prime {
    background: rgba(143, 94, 130, 0.07);
    border-color: rgba(143, 94, 130, 0.3);
}

.hotel-card-prime h3 {
    color: var(--tertiary-color);
}

.hotel-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-safari {
    background: var(--primary-light);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.btn-grand {
    background: #e6f3fa;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-grand:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-prime {
    background: #f4eef3;
    color: var(--tertiary-color);
    border: 1px solid var(--tertiary-color);
}

.btn-prime:hover {
    background: var(--tertiary-color);
    color: var(--white);
}

/* Map */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.no-border {
    border: none;
    display: block;
}

.map-actions {
    text-align: center;
    margin-top: 2rem;
}

.contact-map-desc {
    max-width: 600px;
    margin: 0 auto 1rem;
}

.contact-desc-text {
    max-width: 700px;
    margin: 0 auto 1rem;
}

/* ===================================
   HOTEL SAFARI PAGE COMPONENTS
   =================================== */

/* venue grid */
.venue-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.venue-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.venue-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.venue-capacity {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.venue-info {
    padding: 2rem;
}

.venue-info h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.venue-info p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Cafe Stats */
.cafe-stats {
    display: flex;
    gap: 2rem;
    margin: 0 0 2rem 0;
}

.cafe-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--medium-gray);
    letter-spacing: 1px;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.event-type-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.event-type-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.event-type-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.event-type-card h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--black);
}

.mb-4rem {
    margin-bottom: 4rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-filters {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 120, 23, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
    color: var(--white);
}

.gallery-category {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-category,
.gallery-item:hover .gallery-zoom-icon {
    transform: translateY(0);
}

.gallery-zoom-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
    color: var(--white);
}

/* LIGHTBOX MODAL */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10002;
}

.lightbox-counter {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}

.lightbox-close {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-body {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: calc(100% - 100px);
    padding-top: 60px;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    user-select: none;
    padding: 20px;
    z-index: 10001;
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

.lightbox-thumbnails-container {
    height: 100px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    max-width: 90%;
    padding-bottom: 5px;
    scrollbar-width: thin;
    scrollbar-color: #444 #111;
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: #111;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.lightbox-thumb {
    height: 60px;
    width: 80px;
    min-width: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
    border: 2px solid transparent;
    border-radius: 4px;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.lightbox-thumb:hover {
    opacity: 1;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-visual {
        order: -1;
    }

    .featured-wrapper {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 2rem;
    }

    .featured-image {
        order: -1;
        min-height: 350px;
    }

    .footer-company {
        padding-bottom: 40px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

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

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

    .facility-card-new:nth-child(even) {
        border-right: none;
    }

    .facility-card-new {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .facility-card-new:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .moving-text-track span {
        font-size: 6rem;
    }

    .moving-text-container {
        bottom: -36px;
    }

    .venue-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 90vh;
        min-height: 500px;
    }

    .hero-slide-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-slide-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
    }

    .hero-slide-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-slider-nav,
    .hero-slider-prev,
    .hero-slider-next {
        display: none;
    }

    .hero-slider-dots {
        bottom: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .top-bar {
        display: none;
    }

    .navbar {
        top: 0 !important;
    }

    .logo-img {
        height: 60px;
        object-fit: contain;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 90px);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition: var(--transition-normal);
        overflow-y: auto;
        gap: 0.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: none;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 1.25rem;
        justify-content: flex-start;
        border-radius: var(--radius-md);
    }

    .nav-link.active {
        color: var(--white);
        background: var(--gradient-primary);
    }

    .nav-chat-btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    .chat-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
    }

    .nav-mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .mobile-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        color: var(--dark-gray);
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .contact-links {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }

    .contact-links br {
        display: none;
    }

    .mobile-contact-item i {
        color: var(--primary-color);
        font-size: 1.1rem;
        width: 25px;
        text-align: center;
    }

    .mobile-contact-item a {
        color: var(--dark-gray);
        text-decoration: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    .menu-toggle.active span {
        background: var(--white);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .footer-main {
        border-radius: 40px 40px 0 0;
        padding: 60px 0 0;
    }

    .footer-company {
        padding-bottom: 35px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .scroll-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .products-showcase-grid {
        grid-template-columns: 1fr;
    }

    .hotel-featured {
        padding: 2.5rem 0;
    }

    .featured-wrapper {
        padding: 2rem;
        gap: 1.5rem;
    }

    .featured-image {
        min-height: 280px;
    }

    .facilities-showcase {
        padding: 0 0 100px 0;
    }

    .moving-text-track span {
        font-size: 5rem;
    }

    .moving-text-container {
        bottom: -36px;
    }

    .testimonial-card {
        padding: 35px 30px;
    }

    .testimonial-text {
        font-size: 17px;
    }

    .page-hero {
        padding: 160px 0 80px;
        background-attachment: scroll;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-social-icons {
        gap: 1rem;
    }

    .contact-social-icon {
        min-width: 80px;
        padding: 1rem;
    }

    .hotel-location-card {
        grid-template-columns: 1fr;
    }

    .hotel-location-info {
        padding: 2rem;
    }

    .hotel-location-info h3 {
        font-size: 1.5rem;
    }

    .hotel-location-map {
        height: 300px;
    }

    .cta-wrapper {
        flex-direction: column;
        padding: 50px 35px;
        gap: 35px;
        text-align: center;
        border-radius: 28px;
    }

    .cta-content {
        text-align: center;
        max-width: 100%;
    }

    .cta-action {
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .event-type-card {
        padding: 1.5rem;
    }

    .gallery-item img {
        height: 250px;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        border-radius: 30px 30px 0 0;
        padding: 50px 0 0;
    }

    .featured-wrapper {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .featured-image {
        min-height: 240px;
    }

    .counter-label {
        font-size: 0.8rem;
    }

    .counter-section {
        padding: 60px 0;
    }

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

    .facility-card-new {
        border-right: none;
    }

    .facility-card-new:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .facility-card-new:nth-last-child(2) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .footer-company {
        padding-bottom: 30px;
        align-items: flex-start;
        text-align: left;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-bottom: 20px;
    }

    .footer-separator {
        margin: 40px 0 25px 0;
    }

    .footer-credits {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-bottom: 30px;
    }

    .footer-logo h3 {
        font-size: 24px;
    }

    .footer-desc {
        font-size: 14px;
    }

    .page-hero {
        padding: 140px 0 60px;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .contact-social-icon {
        min-width: 70px;
        padding: 0.75rem 0.5rem;
    }

    .contact-social-icon i {
        font-size: 1.4rem;
    }

    .breadcrumb-nav {
        padding: 0.75rem 1.25rem;
        gap: 0.5rem;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .quote-icon i {
        font-size: 40px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .cta-wrapper {
        padding: 40px 25px;
        border-radius: 22px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .gallery-item img {
        height: 180px;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .lightbox-thumbnails-container {
        height: 80px;
    }

    .lightbox-thumb {
        height: 50px;
        width: 70px;
        min-width: 70px;
    }
}

/* Coming Soon Section Styles */
.coming-soon-wrapper {
    background: linear-gradient(135deg, rgba(143, 94, 130, 0.08) 0%, rgba(143, 94, 130, 0.03) 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    border: 1px dashed var(--tertiary-color);
    position: relative;
    overflow: hidden;
}

.coming-soon-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
    font-weight: 600;
    color: var(--tertiary-color);
    border: 1px solid rgba(143, 94, 130, 0.2);
}

.pulse-icon {
    width: 10px;
    height: 10px;
    background: var(--tertiary-color);
    border-radius: 50%;
    position: relative;
}

.pulse-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--tertiary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* ===================================
   LEGAL & POLICY PAGES
   =================================== */
.legal-content {
    padding: 80px 0;
    line-height: 1.8;
    color: var(--text-color);
    background-color: #fcfcfc;
}

.legal-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.legal-box h2 {
    font-family: var(--font-baskerv);
    color: var(--secondary-color);
    margin: 35px 0 15px;
    font-size: 1.8rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.legal-box h2:first-of-type {
    margin-top: 0;
}

.legal-box p,
.legal-box ul {
    margin-bottom: 20px;
}

.legal-box ul {
    padding-left: 20px;
}

.legal-box li {
    margin-bottom: 10px;
}

.last-updated {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 40px;
    display: block;
    font-size: 0.9rem;
}

.highlight-box {
    border-left: 4px solid var(--primary-color);
    background: #fff9f5;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 40px 0;
    }

    .legal-box {
        padding: 30px 20px;
    }

    .legal-box h2 {
        font-size: 1.5rem;
    }
}