/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-logo h2 {
    color: #0047ab;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: -3px;
    font-family: 'Playfair Display', serif;
}

.nav-logo span {
    color: #718096;
    font-size: 0.85rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #0047ab;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0047ab, #4299e1);
    transition: width 0.3s ease;
}

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

.book-now-btn {
    background: linear-gradient(135deg, #0047ab, #2b6cb0);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 71, 171, 0.3);
    font-size: 0.95rem;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 71, 171, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 26px;
    height: 3px;
    background: #2d3748;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
    padding: 110px 20px 60px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hero-content {
    max-width: 650px;
    margin-left: auto;
    margin-right: 3rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-weight: 500;
    color: #2d3748;
    font-size: 0.9rem;
}

.feature-badge .icon {
    font-size: 1.1rem;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #0047ab, #2b6cb0);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 71, 171, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 71, 171, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #0047ab;
    border: 2px solid #0047ab;
}

.btn-secondary:hover {
    background: #0047ab;
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    text-align: center;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    opacity: 0;
    animation: fadeInRight 1s ease 0.5s forwards;
    line-height: 1.5;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.about-text p {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 15px;
    border-left: 5px solid #0047ab;
    transition: all 0.3s ease;
}

.highlight:hover {
    background: #edf2f7;
    transform: translateX(5px);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight h4 {
    color: #0047ab;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.highlight p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.about-image .image-placeholder {
    height: 500px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Suites Section */
.suites {
    padding: 100px 0;
    background: #f7fafc;
}

.suites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.suite-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.suite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.suite-card.featured {
    border: 2px solid #0047ab;
    transform: scale(1.02);
}

.suite-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.suite-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0047ab;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.suite-image .image-placeholder {
    height: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.suite-info {
    padding: 2.5rem;
}

.suite-info h3 {
    color: #1a202c;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.suite-info p {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.suite-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.suite-features li {
    color: #4a5568;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.suite-features li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #0047ab;
    font-weight: bold;
    font-size: 1.1rem;
}

.suite-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0047ab;
    font-family: 'Playfair Display', serif;
}

.per-night {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Amenities Section */
.amenities {
    padding: 100px 0;
    background: white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.amenity-card {
    text-align: center;
    padding: 2.5rem;
    background: #f7fafc;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.amenity-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.amenity-card.signature {
    background: linear-gradient(135deg, #0047ab, #2b6cb0);
    color: white;
    border: none;
}

.amenity-card.signature:hover {
    background: linear-gradient(135deg, #2b6cb0, #0047ab);
}

.amenity-card.signature .amenity-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.amenity-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.amenity-card h3 {
    color: #1a202c;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.amenity-card.signature h3 {
    color: white;
}

.amenity-card p {
    color: #4a5568;
    line-height: 1.7;
}

.amenity-card.signature p {
    color: rgba(255, 255, 255, 0.9);
}

/* Location Section */
.location {
    padding: 100px 0;
    background: #f7fafc;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.location-info h3 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.location-info p {
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.attractions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.attraction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.attraction:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.attraction.featured {
    background: linear-gradient(135deg, #0047ab, #2b6cb0);
    color: white;
    padding: 2rem;
}

.attraction h4 {
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.attraction.featured h4 {
    color: white;
    font-size: 1.1rem;
}

.attraction span {
    color: #0047ab;
    font-weight: 600;
    font-size: 0.95rem;
}

.attraction.featured span {
    color: rgba(255, 255, 255, 0.9);
}

.attraction p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.map-placeholder {
    height: 500px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-details {
    background: #f7fafc;
    padding: 3rem;
    border-radius: 20px;
}

.contact-details h3 {
    color: #1a202c;
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.detail {
    margin-bottom: 2rem;
}

.detail strong {
    color: #0047ab;
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.detail p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.hours p {
    margin-bottom: 0.25rem;
}

.contact-form h3 {
    color: #1a202c;
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0047ab;
    box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.1);
    background: white;
}

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

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #0047ab;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.footer-section h3 {
    font-size: 1.3rem;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0047ab;
    transform: translateY(-2px);
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0047ab;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #718096;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #718096;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0047ab;
}

/* Notification */
.notification {
    position: fixed;
    top: 110px;
    right: 20px;
    background: #0047ab;
    color: white;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.notification.show {
    display: flex;
    transform: translateX(0);
}

.notification.success {
    background: #48bb78;
}

.notification.error {
    background: #f56565;
}

#notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

#notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        padding: 3rem 0;
        gap: 1.5rem;
    }

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

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 130px 20px 60px;
    }

    .hero-content {
        margin: 0 0 3rem 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        justify-content: center;
    }

    .about-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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