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

:root {
    --royal-gold: #D4AF37;
    --deep-gold: #B8860B;
    --light-gold: #F4E4BC;
    --royal-blue: #1a1a2e;
    --dark-blue: #0f0f1e;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #666666;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

/* Top Bar */
.top-bar {
    background: var(--royal-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    color: var(--royal-gold);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 28px;
    color: var(--royal-blue);
    letter-spacing: 3px;
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--royal-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--royal-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--royal-gold);
    transition: width 0.3s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--royal-gold), var(--deep-gold));
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(26, 26, 46, 0.5), rgba(15, 15, 30, 0.6)),
                url('https://ik.imagekit.io/Khoji/IMG-20240627-WA0002.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: var(--royal-gold);
    color: var(--royal-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    max-width: 800px;
}

.slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--royal-gold);
}

/* Featured Section */
.featured-section {
    padding: 100px 0;
    background: var(--white);
}

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

.featured-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.featured-icon {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--royal-gold), var(--deep-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.section-tag {
    display: inline-block;
    color: var(--royal-gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    color: var(--royal-blue);
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-description {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.featured-questions h3 {
    color: var(--royal-blue);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.featured-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--royal-gold), var(--deep-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 24px;
    color: var(--royal-blue);
    margin-bottom: 5px;
}

.card-content p {
    color: var(--text-light);
    font-size: 14px;
}

/* Video & Stats Section */
.video-stats-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(15, 15, 30, 0.9)),
                url('https://ik.imagekit.io/Khoji/img-3923-1024x683_15_72720.jpeg') center/cover;
    position: relative;
}

.video-stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-title {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 40px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.video-play-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--royal-gold), var(--deep-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
}

.video-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6);
}

.stats-image {
    margin-bottom: 30px;
}

.stats-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-card p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

/* Best Deal Section */
.best-deal-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.deal-header {
    margin-bottom: 50px;
}

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

.deal-specs {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-light);
    font-weight: 500;
}

.spec-value {
    color: var(--royal-blue);
    font-weight: 600;
}

.room-type-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.room-btn {
    padding: 12px 25px;
    border: 2px solid var(--royal-blue);
    background: var(--white);
    color: var(--royal-blue);
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.room-btn.active,
.room-btn:hover {
    background: linear-gradient(135deg, var(--royal-gold), var(--deep-gold));
    color: var(--white);
    border-color: var(--royal-gold);
}

.deal-image-text {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.deal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.deal-info h3 {
    font-size: 28px;
    color: var(--royal-blue);
    margin-bottom: 20px;
}

.deal-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Rooms Section */
.rooms-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 60px;
}

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

.room-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.room-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.room-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--royal-gold);
    color: var(--royal-blue);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.room-content {
    padding: 25px;
}

.room-price {
    color: var(--royal-gold);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.room-title {
    font-size: 20px;
    color: var(--royal-blue);
    margin-bottom: 20px;
}

.room-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.detail-item i {
    color: var(--royal-gold);
    width: 20px;
}

.btn-secondary {
    width: 100%;
    background: var(--royal-blue);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-secondary:hover {
    background: var(--royal-gold);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(15, 15, 30, 0.95)),
                url('https://images.unsplash.com/photo-1618773928121-c32242e63f39?w=1920&h=800&fit=crop') center/cover;
    position: relative;
}

.section-header {
    text-align: left;
}

.section-title.white {
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.contact-content {
    display: block;
    margin-bottom: 50px;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    width: 100%;
}

.contact-map iframe {
    border-radius: 10px;
    width: 100%;
    display: block;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-gold);
}

.contact-info-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.contact-info-card {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    flex: 1;
    max-width: 300px;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--royal-gold), var(--deep-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
}

.contact-info-card p {
    font-size: 18px;
    font-weight: 600;
    color: var(--royal-blue);
    margin-bottom: 5px;
}

.contact-info-card span {
    color: var(--text-light);
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--royal-blue);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .featured-content,
    .video-stats-content,
    .deal-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-right {
        gap: 20px;
    }
    
    .social-icons {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar {
        padding: 15px 0;
        font-size: 12px;
    }
    
    /* Header Mobile */
    .navbar {
        flex-wrap: wrap;
        padding: 15px 0;
    }
    
    .logo h1 {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .nav-right {
        width: 100%;
        justify-content: space-between;
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .social-icons {
        order: 2;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
        border-top: 1px solid #eee;
        margin-top: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
        order: 1;
    }
    
    /* Hero Mobile */
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero-tag {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    /* Sections Mobile */
    .featured-section,
    .video-stats-section,
    .best-deal-section,
    .rooms-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    /* Featured Section Mobile */
    .featured-content {
        gap: 40px;
    }
    
    .image-wrapper img {
        height: 300px;
    }
    
    .featured-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }
    
    .featured-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    /* Video Stats Mobile */
    .video-title {
        font-size: 32px;
    }
    
    .video-play-button {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
    
    .stats-image img {
        height: 250px;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    /* Best Deal Mobile */
    .deal-header {
        margin-bottom: 30px;
    }
    
    .deal-content {
        gap: 30px;
    }
    
    .deal-specs {
        padding: 25px;
    }
    
    .spec-item {
        padding: 15px 0;
        font-size: 14px;
    }
    
    .room-type-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .room-btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }
    
    .deal-image-text {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .deal-image img {
        height: 300px;
    }
    
    .deal-info h3 {
        font-size: 24px;
    }
    
    /* Rooms/Events Grid Mobile */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .room-image {
        height: 220px;
    }
    
    .room-content {
        padding: 20px;
    }
    
    .room-price {
        font-size: 22px;
    }
    
    .room-title {
        font-size: 18px;
    }
    
    .detail-item {
        font-size: 13px;
    }
    
    /* Contact Mobile */
    .contact-content {
        margin-bottom: 30px;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-info-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 25px 30px;
        max-width: 100%;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 25px 0;
    }
    
    .footer p {
        font-size: 12px;
        padding: 0 15px;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .card-content h4 {
        font-size: 20px;
    }
    
    .room-price {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--royal-blue);
    cursor: pointer;
    padding: 5px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}

/* Contact Modal */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

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

.contact-modal {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.contact-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.contact-modal-close:hover {
    background: var(--light-gray);
    color: var(--royal-blue);
}

.contact-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--royal-blue);
    margin-bottom: 30px;
    text-align: center;
}

.contact-modal-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-modal-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-modal-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.contact-modal-item i {
    font-size: 28px;
    color: var(--royal-gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--royal-gold), var(--deep-gold));
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-modal-item div {
    flex: 1;
}

.contact-modal-item strong {
    display: block;
    color: var(--royal-blue);
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-modal-item a {
    color: var(--royal-blue);
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

@media (max-width: 768px) {
    .contact-modal {
        padding: 30px 25px;
        max-width: 90%;
    }
    
    .contact-modal h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .contact-modal-item {
        padding: 15px;
        gap: 15px;
    }
    
    .contact-modal-item i {
        font-size: 24px;
        width: 45px;
        height: 45px;
    }
    
    .contact-modal-item a {
        font-size: 16px;
    }
}
