/* ===================================
   Bayfront Resort - Custom Styles
   Midnight Blue + Mint Color Palette
   =================================== */

:root {
    --midnight: #0A2540;
    --midnight-light: #1A3A5C;
    --midnight-dark: #061A2E;
    --mint: #40E0D0;
    --mint-light: #7EF0E4;
    --mint-dark: #2BC4B6;
    --white: #FFFFFF;
    --off-white: #F8FAFB;
    --gray-50: #F0F4F6;
    --gray-100: #E2E8EC;
    --gray-200: #C5CDD4;
    --gray-400: #8A9BA8;
    --gray-600: #5A6B78;
    --gray-800: #2D3E4A;
    --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 37, 64, 0.12);
    --shadow-lg: 0 8px 32px rgba(10, 37, 64, 0.16);
    --shadow-xl: 0 16px 48px rgba(10, 37, 64, 0.20);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--midnight);
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--mint);
    color: var(--midnight);
    border-color: var(--mint);
}

.btn-primary:hover {
    background: var(--mint-light);
    border-color: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--midnight);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--midnight);
    border-color: var(--midnight);
}

.btn-outline:hover {
    background: var(--midnight);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--midnight);
}

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

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

.nav-links a {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-600);
    position: relative;
}

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

.nav-links a:hover {
    color: var(--midnight);
}

.nav-links a::after:hover {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--midnight);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 32px 24px;
    flex-direction: column;
    gap: 8px;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--midnight);
}

.mobile-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--midnight);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-link:hover {
    color: var(--mint-dark);
}

.mobile-btn {
    margin-top: 16px;
    justify-content: center;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 50%, var(--gray-50) 100%);
    padding-top: 72px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--mint);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--midnight);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--mint);
    top: 50%;
    left: 45%;
    opacity: 0.05;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--mint);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--midnight);
}

.text-mint {
    color: var(--mint-dark);
    position: relative;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 6/7;
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--mint);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.hero-floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.floating-card-icon {
    width: 48px;
    height: 48px;
    background: var(--mint);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-text {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--midnight);
}

/* ===================================
   Section Styles
   =================================== */
.section-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mint-dark);
    background: rgba(64, 224, 208, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 560px;
}

/* ===================================
   Rooms Section
   =================================== */
.rooms {
    padding: 120px 0;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--mint);
    color: var(--midnight);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.room-badge.premium {
    background: var(--midnight);
    color: var(--mint);
}

.room-content {
    padding: 28px;
}

.room-content h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.room-content > p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray-800);
}

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

/* Geometric Accents */
.geo-accent {
    position: absolute;
    pointer-events: none;
}

.geo-accent-1 {
    width: 300px;
    height: 300px;
    background: var(--mint);
    opacity: 0.04;
    border-radius: 50%;
    top: 10%;
    left: -100px;
}

.geo-accent-2 {
    width: 200px;
    height: 200px;
    background: var(--midnight);
    opacity: 0.03;
    border-radius: 50%;
    bottom: 10%;
    right: -50px;
}

/* ===================================
   Amenities Section
   =================================== */
.amenities {
    padding: 120px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.amenities .section-tag {
    background: rgba(64, 224, 208, 0.15);
    color: var(--mint);
}

.amenities .section-title {
    color: var(--white);
}

.amenities .section-subtitle {
    color: var(--gray-200);
}

.amenities-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.amenity-item {
    display: flex;
    gap: 20px;
}

.amenity-icon {
    width: 56px;
    height: 56px;
    background: rgba(64, 224, 208, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    flex-shrink: 0;
}

.amenity-text h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 4px;
}

.amenity-text p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Visual Stack */
.amenities-visual {
    position: relative;
}

.visual-stack {
    position: relative;
    height: 600px;
}

.visual-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-card-1 {
    width: 280px;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 3;
}

.visual-card-2 {
    width: 260px;
    height: 200px;
    top: 180px;
    right: 0;
    z-index: 2;
}

.visual-card-3 {
    width: 220px;
    height: 220px;
    bottom: 0;
    left: 60px;
    z-index: 1;
}

.card-pattern {
    width: 100%;
    height: 100%;
    background: var(--mint);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
}

.pattern-dots {
    display: grid;
    grid-template-columns: repeat(5, 8px);
    gap: 8px;
    margin-bottom: 16px;
}

.pattern-dots::before,
.pattern-dots::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--midnight);
    border-radius: 50%;
    opacity: 0.3;
}

.pattern-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--midnight);
}

.pattern-label {
    font-size: 0.875rem;
    color: var(--midnight);
    opacity: 0.7;
    text-align: center;
}

.geo-accent-3 {
    width: 400px;
    height: 400px;
    background: var(--mint);
    opacity: 0.03;
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
}

/* ===================================
   Location Section
   =================================== */
.location {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.detail-item {
    display: flex;
    gap: 16px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.detail-item strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    color: var(--midnight);
    margin-bottom: 2px;
}

.detail-item p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.nearby-attractions {
    margin-top: 32px;
}

.nearby-attractions h4 {
    font-size: 1rem;
    color: var(--midnight);
    margin-bottom: 16px;
}

.attractions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.attraction-tag {
    background: var(--white);
    border: 1px solid var(--gray-100);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.attraction-tag:hover {
    background: var(--mint);
    color: var(--midnight);
    border-color: var(--mint);
}

/* Map */
.location-map {
    position: relative;
}

.map-placeholder {
    background: var(--midnight);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(64, 224, 208, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(64, 224, 208, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.map-content {
    position: relative;
    z-index: 1;
}

.map-icon {
    width: 80px;
    height: 80px;
    background: rgba(64, 224, 208, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.map-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.map-content p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.geo-accent-4 {
    width: 250px;
    height: 250px;
    background: var(--mint);
    opacity: 0.04;
    border-radius: 50%;
    top: 20%;
    right: -80px;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

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

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

.about-img-1 {
    width: 280px;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 260px;
    height: 280px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-badge {
    position: absolute;
    bottom: 120px;
    left: 140px;
    background: var(--mint);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    text-align: center;
    z-index: 3;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--midnight);
}

.badge-label {
    font-size: 0.8125rem;
    color: var(--midnight);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content .section-subtitle {
    margin-bottom: 24px;
}

.about-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

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

.value-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--mint);
    line-height: 1;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1.0625rem;
    color: var(--midnight);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.geo-accent-5 {
    width: 350px;
    height: 350px;
    background: var(--midnight);
    opacity: 0.02;
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    padding: 100px 0;
    background: var(--mint);
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--white);
    opacity: 0.1;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -80px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    right: 10%;
}

.cta-shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: -30px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--midnight);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--midnight);
    opacity: 0.7;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--midnight);
    color: var(--mint);
    border-color: var(--midnight);
}

.cta .btn-primary:hover {
    background: var(--midnight-dark);
    border-color: var(--midnight-dark);
}

.cta .btn-secondary {
    background: var(--white);
    border-color: var(--white);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.contact-method {
    display: flex;
    gap: 16px;
}

.method-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-method strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    color: var(--midnight);
    margin-bottom: 2px;
}

.contact-method p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.contact-hours {
    margin-top: 32px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-hours h4 {
    font-size: 1rem;
    color: var(--midnight);
    margin-bottom: 8px;
}

.contact-hours p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.hours-note {
    font-size: 0.8125rem !important;
    color: var(--gray-400) !important;
    font-style: italic;
    margin-top: 4px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mint), var(--mint-light));
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--mint);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

/* Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(64, 224, 208, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--midnight-dark);
    padding: 80px 0 0;
    color: var(--gray-200);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-400);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-contact a {
    color: var(--gray-400);
}

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

.footer-newsletter p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.9375rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--mint);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input::placeholder {
    color: var(--gray-400);
}

.newsletter-form .btn {
    padding: 12px 20px;
    white-space: normal;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.footer-bottom p {
    margin: 0;
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-floating-card {
        left: 20px;
        bottom: 20px;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-layout,
    .location-content,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .amenities-visual {
        order: -1;
    }
    
    .visual-stack {
        height: 450px;
    }
    
    .about-images {
        height: 450px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding-top: 72px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-container {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        display: inline-flex;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .visual-stack {
        height: 380px;
    }
    
    .visual-card-1 {
        width: 220px;
        height: 280px;
    }
    
    .visual-card-2 {
        width: 200px;
        height: 160px;
    }
    
    .visual-card-3 {
        width: 180px;
        height: 180px;
        left: 40px;
    }
    
    .about-images {
        height: 380px;
    }
    
    .about-img-1 {
        width: 200px;
        height: 280px;
    }
    
    .about-img-2 {
        width: 180px;
        height: 200px;
    }
    
    .about-badge {
        left: 100px;
        bottom: 80px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .visual-stack {
        height: 320px;
    }
    
    .visual-card-1 {
        width: 180px;
        height: 240px;
    }
    
    .visual-card-2 {
        width: 160px;
        height: 130px;
    }
    
    .visual-card-3 {
        width: 150px;
        height: 150px;
        left: 30px;
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
