:root {
    --cag-orange: #E89B26;
    --cag-orange-hover: #D48A1A;
    --cag-green: #1B5E20;
    --cag-green-light: #2E7D32;
    --cag-dark: #0F0F1A;
    --cag-dark-secondary: #1A1A2E;
    --cag-dark-card: #16162B;
    --cag-white: #FFFFFF;
    --cag-light-gray: #F8F8F8;
    --cag-border: #E5E5E5;
    --cag-text-dark: #333333;
    --cag-text-medium: #666666;
    --cag-text-light: #999999;
    --cag-text-on-dark: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-ui: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--cag-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.section-padding { padding: 80px 0; }

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover { background: var(--cag-orange-hover); transform: translateY(-2px); }

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

.btn-outline:hover { background: var(--cag-orange); color: var(--cag-white); }

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

.btn-white:hover { background: var(--cag-light-gray); }

.section-subtitle {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cag-orange);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--cag-text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-desc {
    font-size: 16px;
    color: var(--cag-text-medium);
    max-width: 600px;
}

/* ============== TOP BAR ============== */
.top-bar {
    background: var(--cag-dark);
    color: var(--cag-text-on-dark);
    padding: 10px 0;
    font-family: var(--font-ui);
    font-size: 13px;
}

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

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

.top-bar-info a {
    color: var(--cag-text-on-dark);
    opacity: 0.85;
}

.top-bar-info a:hover { opacity: 1; color: var(--cag-orange); }

.top-bar-info i { margin-right: 6px; color: var(--cag-orange); font-size: 12px; }

.top-bar-social { display: flex; gap: 16px; }

.top-bar-social a {
    color: var(--cag-text-on-dark);
    opacity: 0.7;
    font-size: 14px;
}

.top-bar-social a:hover { opacity: 1; color: var(--cag-orange); }

/* ============== HEADER / NAVIGATION ============== */
.site-header {
    background: var(--cag-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-logo img { height: 50px; width: auto; }

.site-nav { display: flex; gap: 32px; align-items: center; }

.site-nav a {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    color: var(--cag-text-dark);
    position: relative;
}

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

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

.site-nav a:hover { color: var(--cag-orange); }

.nav-cta { margin-left: 16px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cag-text-dark);
    transition: var(--transition);
}

/* ============== MOBILE NAV ============== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--cag-white);
    z-index: 2000;
    padding: 80px 32px 32px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
}

.mobile-nav.open { right: 0; }

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
}

.mobile-nav-overlay.open { display: block; }

.mobile-nav a {
    display: block;
    padding: 14px 0;
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 500;
    color: var(--cag-text-dark);
    border-bottom: 1px solid var(--cag-border);
}

.mobile-nav a:hover { color: var(--cag-orange); }

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--cag-text-dark);
}

/* ============== HERO SLIDER ============== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

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

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

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15,15,26,0.85) 0%, rgba(15,15,26,0.4) 60%, transparent 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.hero-slide-content .container { max-width: 700px; }

.hero-slide-content h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--cag-white);
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.hero-slide.active .hero-slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.hero-slide.active .hero-slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-content .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
}

.hero-slide.active .hero-slide-content .btn {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.hero-slider-dot.active {
    background: var(--cag-orange);
    border-color: var(--cag-white);
}

.hero-slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.hero-slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--cag-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: var(--transition);
    font-size: 18px;
}

.hero-slider-arrow:hover {
    background: var(--cag-orange);
    border-color: var(--cag-orange);
}

/* ============== ABOUT SECTION ============== */
.about-section { background: var(--cag-white); }

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

.about-images { position: relative; }

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-small {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--cag-white);
    box-shadow: var(--shadow-lg);
}

.about-img-small img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.about-content .section-subtitle { color: var(--cag-orange); }

.about-content .section-title { font-size: 32px; }

.about-content p {
    color: var(--cag-text-medium);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
}

/* ============== SERVICES SECTION ============== */
.services-section { background: var(--cag-light-gray); }

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

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

.service-card {
    background: var(--cag-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.service-card h3 {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--cag-text-dark);
}

.service-card p {
    font-size: 14px;
    color: var(--cag-text-medium);
    line-height: 1.7;
}

/* ============== FACILITIES SECTION (Homepage) ============== */
.facilities-section {
    background: var(--cag-light-gray);
    padding: 80px 0;
}

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

.facility-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.facility-row:last-of-type {
    margin-bottom: 40px;
}

.facility-row.reverse {
    direction: rtl;
}

.facility-row.reverse > * {
    direction: ltr;
}

.facility-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--cag-green);
    margin-bottom: 16px;
    line-height: 1.3;
}

.facility-content p {
    color: var(--cag-text-medium);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.facility-content .btn-readmore {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--cag-text-dark);
    background: transparent;
    color: var(--cag-text-dark);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.facility-content .btn-readmore:hover {
    background: var(--cag-text-dark);
    color: var(--cag-white);
}

.facility-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.facility-image:hover img {
    transform: scale(1.03);
}

.facilities-cta {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .facility-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    .facility-row.reverse {
        direction: ltr;
    }
    .facility-image img {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .facilities-section {
        padding: 60px 0;
    }
    .facility-content h3 {
        font-size: 24px;
    }
    .facility-image img {
        height: 240px;
    }
}

/* ============== FEATURE SECTIONS (Banquets, Restaurant, Lounge) ============== */
.feature-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.feature-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.feature-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15,15,26,0.75);
}

.feature-section .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-section-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--cag-green-light);
    margin-bottom: 16px;
}

.feature-section-content p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-section-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-section-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ============== EXPERIENCE SECTION ============== */
.experience-section { background: var(--cag-white); }

.experience-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-image { position: relative; }

.experience-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--cag-orange);
    color: var(--cag-white);
    padding: 20px 30px;
    border-radius: var(--radius);
    text-align: center;
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.experience-content .section-subtitle { color: var(--cag-orange); }

.experience-content .section-title { font-size: 32px; }

.experience-content p {
    color: var(--cag-text-medium);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ============== BOOK DIRECTLY CTA ============== */
.book-cta-section {
    background: var(--cag-dark);
    color: var(--cag-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.book-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 20px 20px;
}

.book-cta-section .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.book-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.book-cta-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    font-size: 15px;
}

.book-cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.book-cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.book-cta-feature i {
    width: 40px;
    height: 40px;
    background: rgba(232,155,38,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cag-orange);
    font-size: 16px;
}

.book-cta-feature span {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
}

.book-cta-buttons { display: flex; gap: 16px; }

.book-cta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ============== ROOMS SECTION ============== */
.rooms-section { background: var(--cag-light-gray); }

.rooms-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

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

.room-card {
    background: var(--cag-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-card-image {
    position: relative;
    overflow: hidden;
}

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

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

.room-card-content { padding: 28px; }

.room-card-content h3 {
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--cag-text-dark);
}

.room-card-content p {
    font-size: 14px;
    color: var(--cag-text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--cag-text-light);
}

.room-card-meta span { display: flex; align-items: center; gap: 4px; }

.room-card-meta i { color: var(--cag-orange); font-size: 12px; }

.room-card .btn { width: 100%; text-align: center; }

/* ============== GALLERY SECTION ============== */
.gallery-section { background: var(--cag-white); }

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

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

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15,15,26,0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.gallery-item-overlay i {
    color: var(--cag-white);
    font-size: 24px;
}

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

.lightbox.open { display: flex; }

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--cag-white);
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cag-white);
    font-size: 30px;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* ============== TESTIMONIALS SECTION ============== */
.testimonials-section { background: var(--cag-light-gray); }

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

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

.testimonial-card {
    background: var(--cag-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cag-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cag-white);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 18px;
}

.testimonial-info h4 {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-info .platform {
    font-size: 12px;
    color: var(--cag-text-light);
}

.testimonial-rating {
    color: var(--cag-orange);
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--cag-text-medium);
    line-height: 1.7;
    font-style: italic;
}

.google-rating-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    justify-content: center;
}

.google-rating-badge .stars {
    color: var(--cag-orange);
    font-size: 20px;
}

.google-rating-badge .text {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--cag-text-medium);
}

.google-rating-badge .score {
    font-weight: 700;
    color: var(--cag-text-dark);
}

/* ============== BOOKING CTA BAR ============== */
.booking-bar {
    background: var(--cag-dark);
    color: var(--cag-white);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.booking-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232,155,38,0.1) 0%, transparent 50%);
}

.booking-bar .container { position: relative; z-index: 2; }

.booking-bar h3 {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cag-orange);
    margin-bottom: 12px;
}

.booking-bar h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 8px;
}

.booking-bar p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    font-size: 15px;
}

.booking-bar .phone {
    font-family: var(--font-ui);
    font-size: 36px;
    font-weight: 700;
    color: var(--cag-orange);
    margin-bottom: 20px;
    display: inline-block;
}

.booking-bar .phone:hover { color: var(--cag-orange-hover); }

/* ============== FOOTER ============== */
.site-footer {
    background: var(--cag-dark);
    color: var(--cag-white);
    padding: 80px 0 0;
}

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

.footer-brand img { height: 50px; margin-bottom: 20px; }

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

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

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

.footer-column h4 {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--cag-white);
}

.footer-column ul { list-style: none; }

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

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

.footer-column ul li a:hover { color: var(--cag-orange); padding-left: 4px; }

.footer-contact p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--cag-orange);
    margin-top: 4px;
    font-size: 14px;
}

.footer-contact a { color: rgba(255,255,255,0.7); }

.footer-contact a:hover { color: var(--cag-orange); }

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

/* ============== STICKY MOBILE CTA ============== */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--cag-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 12px 20px;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sticky-mobile-cta .btn {
    padding: 12px;
    font-size: 13px;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 991px) {
    .site-nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: block; }

    .section-title { font-size: 30px; }
    .section-padding { padding: 60px 0; }

    .about-section .container,
    .feature-section .container,
    .experience-section .container,
    .book-cta-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer .container { grid-template-columns: repeat(2, 1fr); }

    .hero-slide-content h1 { font-size: 40px; }
    .hero-slider { min-height: 500px; height: 70vh; }
}

@media (max-width: 767px) {
    .top-bar-info span:not(.phone) { display: none; }
    .top-bar .container { justify-content: center; }

    .section-title { font-size: 26px; }
    .hero-slide-content h1 { font-size: 32px; }
    .hero-slide-content p { font-size: 16px; }
    .hero-slider { height: 60vh; min-height: 450px; }

    .services-grid,
    .rooms-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .site-footer .container { grid-template-columns: 1fr; }

    .book-cta-features { grid-template-columns: 1fr; }
    .book-cta-buttons { flex-direction: column; }

    .about-img-small { display: none; }

    .sticky-mobile-cta { display: grid; }
    body { padding-bottom: 70px; }

    .experience-badge { padding: 15px 20px; }
    .experience-badge .years { font-size: 32px; }

    .rooms-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .booking-bar .phone { font-size: 28px; }
}

@media (max-width: 575px) {
    .container { padding: 0 16px; }
    .section-padding { padding: 50px 0; }
    .btn { padding: 12px 24px; font-size: 13px; }
    .hero-slide-content h1 { font-size: 28px; }
    .feature-section-content h2 { font-size: 26px; }
    .book-cta-content h2 { font-size: 28px; }
    .booking-bar h2 { font-size: 22px; }
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============== PAGE STYLES ============== */
.page-header {
    background: var(--cag-dark);
    color: var(--cag-white);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}

.page-content {
    padding: 60px 0;
}

.page-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin: 32px 0 16px;
    color: var(--cag-text-dark);
}

.page-content h3 {
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--cag-green);
}

.page-content p {
    color: var(--cag-text-medium);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Contact form */
.contact-form {
    background: var(--cag-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--cag-text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--cag-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--cag-text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cag-orange);
    box-shadow: 0 0 0 3px rgba(232,155,38,0.1);
}

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

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

.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Room detail */
.room-detail-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 40px;
}

.room-detail-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
}

.room-detail-gallery img:first-child {
    grid-row: span 2;
    height: 100%;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.room-amenity {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--cag-light-gray);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--cag-text-dark);
}

.room-amenity i { color: var(--cag-orange); }
