/* ========================================
   MODERN LUXURY DESIGN SYSTEM
   ======================================== */

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

:root {
    /* Luxury Color Palette */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-gradient: linear-gradient(135deg, #2D3436 0%, #000000 100%);
    --gold-accent: #FFD700;
    --rose-gold: #B76E79;
    
    /* Modern Colors */
    --dark: #1a1a2e;
    --light: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --text-dark: #2c3e50;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.25);
    --text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   PAGE LOADER - SUKROSWEB BRANDED
   ======================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: pulse 2s ease infinite;
}

.loader-developer {
    margin-top: 20px;
    opacity: 0.7;
    font-size: 0.85rem;
}

.loader-developer strong {
    color: var(--gold-accent);
    font-weight: 700;
    letter-spacing: 1px;
}

/* ========================================
   BASE STYLES
   ======================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light);
    overflow-x: hidden;
}

/* Beautiful Selection */
::selection {
    background: var(--rose-gold);
    color: white;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER - LUXURY GLASS MORPHISM
   ======================================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1;
}

.header-cta {
    display: flex;
    gap: 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-call {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-call:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.cta-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.cta-whatsapp:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ========================================
   HERO - STUNNING PARALLAX
   ======================================== */

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
    animation: fadeInUp 1s ease-out;
    line-height: 1.2;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 300;
}

.amenity-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    transition: var(--transition-smooth);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge svg {
    color: var(--gold-accent);
}

.hero-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-nav-link {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.hero-nav-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-nav-primary {
    background: var(--gold-accent);
    color: var(--dark);
    border-color: var(--gold-accent);
}

.hero-nav-primary:hover {
    background: #ffed4e;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.hero-image-container {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-smooth);
}

.hero-image:hover {
    transform: scale(1.02);
}

/* ========================================
   SECTIONS - MODERN SPACING
   ======================================== */

.section {
    padding: 100px 0;
    position: relative;
}

.section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: var(--dark);
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* ========================================
   ABOUT - ELEGANT CONTENT
   ======================================== */

.about {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.about-content p:nth-child(1) { animation-delay: 0.1s; }
.about-content p:nth-child(2) { animation-delay: 0.2s; }
.about-content p:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.stat-box {
    text-align: center;
    padding: 20px;
    transition: var(--transition-smooth);
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box i {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

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

/* ========================================
   ROOMS - LUXURY CARDS
   ======================================== */

.rooms {
    background: white;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.room-card:hover::before {
    transform: scaleX(1);
}

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

.room-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.room-card h3 {
    padding: 25px 25px 15px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amenities-list {
    padding: 0 25px 25px;
    list-style: none;
}

.amenities-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.amenities-list li:last-child {
    border-bottom: none;
}

.amenities-list li:before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-size: 1.2rem;
}

/* ========================================
   TESTIMONIALS - SOCIAL PROOF
   ======================================== */

.testimonials {
    background: white;
    position: relative;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 200px;
    font-family: var(--font-heading);
    color: rgba(102, 126, 234, 0.1);
    z-index: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: var(--gold-accent);
    font-size: 1.2rem;
    margin-right: 5px;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
}

.testimonial-author strong {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ========================================
   GALLERY - MASONRY GRID
   ======================================== */

.gallery {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    grid-auto-flow: dense;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.gallery-item::after {
    content: '🔍 View';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.gallery-item:hover::before,
.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: var(--shadow-xl);
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(6) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

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

/* ========================================
   LOCATION - MODERN MAP
   ======================================== */

.location {
    background: white;
}

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

.location-info {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.location-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 25px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-info address {
    font-style: normal;
    line-height: 2;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.nearby-attractions {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.nearby-attractions h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.nearby-attractions ul {
    list-style: none;
}

.nearby-attractions li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.nearby-attractions li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

.nearby-attractions li:hover {
    transform: translateX(5px);
    color: var(--dark);
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #e0e0e0; /* Fallback background */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
    border-radius: 20px;
    z-index: 2;
}

/* Add a border with gradient */
.map-container {
    border: 3px solid transparent;
    background-image: 
        linear-gradient(white, white),
        var(--primary-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.map-wrapper {
    width: 100%;
}

.map-link {
    text-align: center;
    margin-top: 20px;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.map-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   CONTACT - PREMIUM FORM
   ======================================== */

.contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    color: white;
}

.contact h2 {
    color: white;
}

.contact h2::after {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3,
.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

.contact-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.contact-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--gold-accent);
}

.cta-buttons-large {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.cta-button-large {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    background: white;
    color: var(--dark);
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button-large:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-button-large.cta-whatsapp {
    background: #25d366;
    color: white;
}

/* Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: white;
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.15);
}

.submit-button {
    background: var(--gold-accent);
    color: var(--dark);
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* ========================================
   FOOTER - ELEGANT DARK
   ======================================== */

.footer {
    background: var(--dark-gradient);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
    line-height: 2;
}

.footer-info strong {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-info address {
    font-style: normal;
}

.footer-info a {
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-nav, .footer-seo {
    display: flex;
    flex-direction: column;
}

.footer-nav h3, .footer-seo h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gold-accent);
}

.footer-nav a, .footer-seo a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
    position: relative;
    padding-left: 15px;
}

.footer-nav a::before, .footer-seo a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-nav a:hover::before, .footer-seo a:hover::before {
    opacity: 1;
}

.footer-nav a:hover, .footer-seo a:hover {
    color: white;
    padding-left: 20px;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Developer Credits Section */
.developer-credits {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.developer-credits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--primary-gradient);
    animation: shimmerLine 3s infinite;
}

@keyframes shimmerLine {
    0% {
        width: 100px;
        opacity: 0.5;
    }
    50% {
        width: 200px;
        opacity: 1;
    }
    100% {
        width: 100px;
        opacity: 0.5;
    }
}

.credit-text {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.pulse-heart {
    color: #ff4757;
    animation: heartPulse 1.5s ease infinite;
    display: inline-block;
    margin: 0 5px;
}

@keyframes heartPulse {
    0% {
        transform: scale(1);
    }
    20% {
        transform: scale(1.2);
    }
    40% {
        transform: scale(1);
    }
    60% {
        transform: scale(1.1);
    }
    80% {
        transform: scale(1);
    }
}

.developer-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.developer-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.5s ease;
    z-index: -1;
}

.developer-link:hover::before {
    left: 0;
}

.developer-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    border-color: transparent;
    color: white;
}

.developer-link strong {
    font-weight: 700;
    background: linear-gradient(90deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
}

.developer-link:hover strong {
    -webkit-text-fill-color: white;
}

.company-name {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--gold-accent);
    position: relative;
}

.developer-link:hover .company-name {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Add a subtle glow effect on hover */
.developer-link::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s;
}

.developer-link:hover::after {
    opacity: 1;
    transform: rotate(15deg) scale(1.2);
}

/* Mobile Responsive Developer Credits */
@media (max-width: 768px) {
    .developer-credits {
        flex-direction: column;
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .developer-link {
        padding: 10px 25px;
    }
}

/* Add floating animation for the entire credits section */
.developer-credits {
    animation: floatCredits 4s ease-in-out infinite;
}

@keyframes floatCredits {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ========================================
   MOBILE RESPONSIVE - PREMIUM
   ======================================== */

@media (max-width: 768px) {
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .hero-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-nav-link {
        width: 80%;
        text-align: center;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    /* Header */
    .brand-name {
        font-size: 1.3rem;
    }
    
    .cta-button span {
        display: none;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }
    
    .amenity-badges {
        gap: 10px;
    }
    
    .badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    /* Grid Layouts */
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-container {
        height: 350px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons-large {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   LOADING ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   SCROLL REVEAL EFFECTS
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* ========================================
   SPECIAL EFFECTS
   ======================================== */

/* Floating animation for badges */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge {
    animation: float 3s ease-in-out infinite;
}

.badge:nth-child(2) { animation-delay: 0.5s; }
.badge:nth-child(3) { animation-delay: 1s; }
.badge:nth-child(4) { animation-delay: 1.5s; }

/* Pulse effect for CTAs */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

.cta-call {
    animation: pulse 2s infinite;
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
}