/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #daa520;
    --secondary-gold: #b8860b;
    --dark-gold: #8b6914;
    --light-gold: #f5e8c6;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --black: #000000;
    --success: #25D366;
    --whatsapp: #25D366;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title .highlight {
    color: var(--primary-gold);
    font-family: 'Great Vibes', cursive;
    font-size: 2.8rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.section-padding {
    padding: 80px 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(218, 165, 32, 0.2);
    color: white;
}

/* Sticky WhatsApp & Call Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn, .call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background: var(--whatsapp);
}

.call-btn {
    background: var(--primary-gold);
}

.whatsapp-btn:hover, .call-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.whatsapp-btn i, .call-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.whatsapp-btn span, .call-btn span {
    font-size: 0.9rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background: var(--dark-bg);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.contact-info span {
    margin-right: 20px;
    display: inline-block;
    margin-bottom: 5px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--primary-gold);
}

.social-links a {
    color: white;
    margin-left: 15px;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    color: var(--primary-gold);
}

/* Logo */
.logo-container {
    text-align: center;
}
.logo-container img{
    height: 100px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin: 0;
    line-height: 1;
}

.logo-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    letter-spacing: 3px;
    font-weight: 600;
}

.footer-logo .logo-text {
    font-size: 2rem;
}

.footer-logo .logo-subtext {
    font-size: 0.9rem;
}

.navbar {
    padding: 15px 0;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-gold) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.btn-book {
    background: var(--primary-gold);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 30px;
    margin-left: 20px !important;
}

.btn-book:hover {
    background: var(--secondary-gold);
}

/* Hero Section */
.hero-section {
    margin-top: 120px;
}

.hero-slide {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.hero-btn {
    background: var(--primary-gold);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.hero-btn:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-gold) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-gold) !important;
}

/* Services Section */
.services-section {
    background: var(--light-bg);
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin: 0;
}

/* About Section */
.about-section {
    background: white;
}

.about-content {
    padding-right: 30px;
}

.features-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--primary-gold);
    margin-right: 15px;
    font-size: 1.2rem;
}

.feature-item span {
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Banquet Facilities */
.facility-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-10px);
}

.facility-image {
    height: 250px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-content {
    padding: 25px;
}

.facility-content h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.capacity {
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.facility-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.facility-content li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.facility-content li i {
    color: var(--primary-gold);
}

.btn-enquire {
    background: var(--primary-gold);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-enquire:hover {
    background: var(--secondary-gold);
    color: white;
    transform: translateY(-3px);
}

/* Packages Section */
.packages-section {
    background: var(--light-bg);
}

.package-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-gold);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-gold);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
}

.package-header {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    padding: 30px;
    text-align: center;
}

.package-header h3 {
    margin: 0;
    font-size: 1.8rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
}

.package-body {
    padding: 30px;
}

.package-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-body li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-body li i {
    color: var(--primary-gold);
}

.package-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.btn-package {
    background: var(--primary-gold);
    color: white;
    padding: 12px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-package:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(218, 165, 32, 0.2);
    color: white;
}

/* Stay Accommodation */
.stay-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.stay-card:hover {
    transform: translateY(-10px);
}

.stay-image {
    height: 300px;
    overflow: hidden;
}

.stay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stay-card:hover .stay-image img {
    transform: scale(1.1);
}

.stay-content {
    padding: 30px;
}

.stay-content h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stay-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.stay-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.stay-content li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stay-content li i {
    color: var(--primary-gold);
}

.btn-stay {
    background: var(--primary-gold);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-stay:hover {
    background: var(--secondary-gold);
    color: white;
    transform: translateY(-3px);
}

/* Swimming Pool */
.pool-section {
    background: white;
}

.pool-content h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 2rem;
}

.pool-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.pool-features {
    margin: 30px 0;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.feature-item h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-item p {
    margin: 0;
    color: var(--text-light);
}

.pool-timing {
    background: var(--light-gold);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.pool-timing h4 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pool-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pool-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.pool-image:hover img {
    transform: scale(1.05);
}

/* Contact Info */
.contact-info-section {
    background: var(--light-bg);
}

.contact-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.phone-numbers {
    margin: 20px 0;
}

.phone-numbers p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.btn-call, .btn-direction, .btn-whatsapp {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-call {
    background: var(--primary-gold);
    color: white;
}

.btn-direction {
    background: var(--dark-bg);
    color: white;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

.btn-call:hover, .btn-direction:hover, .btn-whatsapp:hover {
    transform: translateY(-3px);
    color: white;
}

/* Footer */
.main-footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--primary-gold);
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list i {
    color: var(--primary-gold);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title .highlight {
        font-size: 2.2rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .sticky-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn, .call-btn {
        padding: 12px 15px;
    }
    
    .whatsapp-btn span, .call-btn span {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .navbar-nav .btn-book {
        margin-left: 0 !important;
        margin-top: 10px;
    }
    
    .top-bar .contact-info {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .top-bar .social-links {
        text-align: center;
    }
    
    .sticky-buttons {
        flex-direction: row;
        gap: 10px;
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .logo-container img{
    height: 80px;
}
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title .highlight {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}