/* ==========================================
   3 Friends Guest House — PHP Website Styles
   ========================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-text: #2c1810;
    --color-accent: #c8956c;
    --color-bg: #f5f0eb;
    --color-dark: #1a1a1a;
    --color-cream: #faf8f5;
    --color-umber: #8b5e3c;
    --font-display: 'DM Serif Display', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* ---- Custom Cursor ---- */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: difference;
    display: none;
}

.custom-cursor.hovering {
    width: 48px;
    height: 48px;
    background: rgba(200, 149, 108, 0.15);
    backdrop-filter: blur(2px);
}

@media (hover: hover) and (pointer: fine) {
    .custom-cursor {
        display: block;
    }
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.5s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(245, 240, 235, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-main {
    color: var(--color-text);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-sub {
    color: rgba(44, 24, 16, 0.5);
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    transition: opacity 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--color-text);
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
}

.nav-btn {
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 10px 28px;
    border-radius: 100px;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: var(--color-umber);
}

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

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger {
    background: var(--color-text);
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(245, 240, 235, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile-link {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text);
    padding: 8px 0;
}

.nav-mobile-btn {
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 14px 28px;
    border-radius: 100px;
    text-align: center;
    margin-top: 8px;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.2) 50%, rgba(26,26,26,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 40px 120px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-label {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.hero-heading {
    margin-bottom: 28px;
}

.hero-line {
    display: block;
    font-family: var(--font-display);
    font-size: 120px;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    padding: 14px 36px;
    border-radius: 100px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--color-accent);
    border-color: transparent;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.5);
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ---- Animations ---- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Map Section ---- */
.map-section {
    background: var(--color-dark);
    padding: 0;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    min-height: 500px;
}

.map-info {
    width: 40%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-dark);
}

.map-heading {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}

.map-address {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.map-address svg {
    flex-shrink: 0;
}

.map-directions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--color-accent);
    color: #fff;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: var(--color-umber);
    transform: translateY(-2px);
}

.map-btn svg {
    transition: transform 0.3s ease;
}

.map-btn:hover svg {
    transform: translateX(4px);
}

.map-btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
}

.map-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.map-btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
}

.map-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.map-hours {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

/* ---- Floating Action Buttons ---- */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    position: relative;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

.fab-whatsapp {
    background: #25D366;
    color: #fff;
}

.fab-whatsapp:hover {
    background: #128C7E;
}

.fab-call {
    background: var(--color-accent);
    color: #fff;
}

.fab-call:hover {
    background: var(--color-umber);
}

.fab-label {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-dark);
    color: #fff;
    font-family: var(--font-body);
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fab:hover .fab-label {
    opacity: 1;
}

.map-embed {
    width: 60%;
    min-height: 500px;
    position: relative;
    background: #2a2a2a;
}

.map-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    filter: grayscale(0.2) contrast(1.05);
}

/* ---- Intro Section ---- */
.intro {
    background: var(--color-bg);
    padding: 160px 0;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 64px;
}

.intro-left {
    width: 55%;
}

.intro-right {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.intro-heading {
    font-family: var(--font-display);
    font-size: 72px;
    line-height: 1.15;
    color: var(--color-text);
}

.intro-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: rgba(44, 24, 16, 0.7);
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
}

.feature-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(44, 24, 16, 0.5);
}

/* ---- Rooms ---- */
.rooms {
    background: var(--color-cream);
    padding: 100px 0 120px;
}

.rooms-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-heading {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.1;
    color: var(--color-text);
}

.rooms-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.room-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.room-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.room-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: 100px;
}

.room-content {
    padding: 28px;
}

.room-name {
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    display: block;
    margin-bottom: 12px;
}

.room-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.room-price {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--color-text);
}

.room-price-unit {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(44, 24, 16, 0.5);
}

.room-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(44, 24, 16, 0.65);
    margin-bottom: 12px;
}

.room-features {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: rgba(44, 24, 16, 0.45);
    margin-bottom: 20px;
}

.room-specs {
    display: flex;
    gap: 20px;
}

.room-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(44, 24, 16, 0.6);
}

/* ---- Amenities ---- */
.amenities {
    background: var(--color-bg);
    padding: 140px 0 160px;
}

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

.amenities-heading {
    font-family: var(--font-display);
    font-size: 100px;
    line-height: 1.15;
    color: var(--color-text);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.scatter-word {
    display: inline-block;
    white-space: nowrap;
    margin-right: 0.3em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.amenities-heading.revealed .scatter-word {
    opacity: 1;
    transform: translateY(0);
}

.amenities-heading.revealed .scatter-word:nth-child(1) { transition-delay: 0s; }
.amenities-heading.revealed .scatter-word:nth-child(2) { transition-delay: 0.05s; }
.amenities-heading.revealed .scatter-word:nth-child(3) { transition-delay: 0.1s; }
.amenities-heading.revealed .scatter-word:nth-child(4) { transition-delay: 0.15s; }
.amenities-heading.revealed .scatter-word:nth-child(5) { transition-delay: 0.2s; }
.amenities-heading.revealed .scatter-word:nth-child(6) { transition-delay: 0.25s; }
.amenities-heading.revealed .scatter-word:nth-child(7) { transition-delay: 0.3s; }

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

.amenity-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

.amenity-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.amenity-icon {
    margin-bottom: 16px;
}

.amenity-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
}

.amenity-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(44, 24, 16, 0.55);
}

/* ---- Gallery ---- */
.gallery {
    background: var(--color-dark);
    padding: 120px 0;
}

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

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

.gallery-label {
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
}

.gallery-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    perspective: 1200px;
    perspective-origin: 50% 50%;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
    animation: galleryItemReveal 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.3s; }
.gallery-item:nth-child(5) { animation-delay: 0.4s; }
.gallery-item:nth-child(6) { animation-delay: 0.5s; }
.gallery-item:nth-child(7) { animation-delay: 0.6s; }
.gallery-item:nth-child(8) { animation-delay: 0.7s; }
.gallery-item:nth-child(9) { animation-delay: 0.8s; }

@keyframes galleryItemReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

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

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

/* ---- Testimonials ---- */
.testimonials {
    background: var(--color-bg);
    padding: 140px 0 160px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

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

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 60px;
    line-height: 0.8;
    color: var(--color-accent);
    display: block;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: rgba(44, 24, 16, 0.7);
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
}

.testimonial-location {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(44, 24, 16, 0.45);
    margin-top: 4px;
}

/* ---- Contact ---- */
.contact {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(26,26,26,0.88), rgba(26,26,26,0.93));
}

.contact-content {
    position: relative;
    z-index: 10;
    padding: 100px 40px;
}

.contact-heading {
    font-family: var(--font-display);
    font-size: 80px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}

.contact-subtext {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 48px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    color: #fff;
}

.contact-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--color-accent);
    color: #fff;
    padding: 16px 44px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--color-umber);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 149, 108, 0.3);
}

/* ---- Footer ---- */
.footer {
    background: var(--color-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    display: block;
}

.footer-logo-sub {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
    display: block;
    margin-bottom: 16px;
}

.footer-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
}

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

.footer-social a {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-accent);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-links-col h4 {
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col li {
    margin-bottom: 10px;
}

.footer-links-col a {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    transition: color 0.3s ease;
}

.footer-links-col a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

@media (max-width: 1024px) {
    .hero-line {
        font-size: 80px;
    }

    .intro-heading {
        font-size: 56px;
    }

    .section-heading {
        font-size: 48px;
    }

    .amenities-heading {
        font-size: 64px;
    }

    .contact-heading {
        font-size: 60px;
    }

    .intro-container {
        flex-direction: column;
    }

    .intro-left,
    .intro-right {
        width: 100%;
    }

    .map-info {
        padding: 60px 40px;
    }

    .map-heading {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0 24px;
    }

    .hero-line {
        font-size: 52px;
    }

    .hero-content {
        padding: 0 24px 100px;
    }

    .intro {
        padding: 100px 0;
    }

    .intro-container,
    .rooms-grid,
    .amenities-grid,
    .testimonials-grid,
    .gallery-container,
    .amenities-container,
    .testimonials-container,
    .footer-container {
        padding: 0 24px;
    }

    .intro-heading {
        font-size: 42px;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 40px;
    }

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

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

    .amenities-heading {
        font-size: 42px;
        margin-bottom: 48px;
    }

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

    .gallery-header {
        flex-direction: column;
        gap: 8px;
    }

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

    .contact-heading {
        font-size: 44px;
    }

    .map-container {
        flex-direction: column;
    }

    .map-info {
        width: 100%;
        padding: 60px 24px;
    }

    .map-heading {
        font-size: 36px;
    }

    .map-embed {
        width: 100%;
        min-height: 350px;
    }

    .map-embed iframe {
        min-height: 350px;
    }

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

    .footer-top {
        flex-direction: column;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-line {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .intro-heading {
        font-size: 36px;
    }

    .section-heading {
        font-size: 32px;
    }

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

    .amenities-heading {
        font-size: 32px;
    }

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

    .contact-heading {
        font-size: 36px;
    }

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

    .room-price {
        font-size: 36px;
    }

    .floating-actions {
        bottom: 16px;
        right: 16px;
    }

    .fab {
        width: 48px;
        height: 48px;
    }

    .fab svg {
        width: 20px;
        height: 20px;
    }

    .fab-label {
        display: none;
    }

    .map-directions {
        flex-direction: column;
    }

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