/* pages.css - Complete Styles for All Pages */

/* ============================================
   COMMON PAGE STYLES
   ============================================ */

/* Page Hero Sections */
.page-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 150px 0;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
   
    margin-top: 200px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
}

.hero-btn:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-3px);
}

/* Section Common Styles */
.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title .highlight {
    color: var(--primary-gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Card Common Styles */
.mission-card,
.facility-overview,
.team-card,
.contact-info-card,
.service-card,
.banquet-type-card,
.room-card,
.dining-card,
.recreation-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.mission-card:hover,
.facility-overview:hover,
.team-card:hover,
.contact-info-card:hover,
.service-card:hover,
.banquet-type-card:hover,
.room-card:hover,
.dining-card:hover,
.recreation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    padding: 120px 0;
}

.about-story {
    padding-right: 30px;
}

.about-story h2 {
    color: var(--primary-gold);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-card {
    text-align: center;
    padding: 40px 25px;
}

.mission-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.mission-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.facility-overview {
    text-align: center;
    padding: 30px 20px;
}

.facility-overview i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.facility-overview h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.team-card .team-image {
    height: 250px;
    overflow: hidden;
}

.team-card .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 25px;
}

.team-content h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

.gallery-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    padding: 120px 0;
}

/* Filter Buttons */
.filter-buttons {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: var(--light-bg);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
}

/* Gallery Cards */
.gallery-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 30px;
}

.gallery-card a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin: 0 0 5px;
    color: white;
    font-size: 1.2rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-note {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Video Section */
.video-container {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.video-placeholder {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.play-btn {
    background: var(--primary-gold);
    color: white;
    border: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background: var(--secondary-gold);
    transform: scale(1.1);
}

.video-overlay h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    padding: 120px 0;
}

.contact-info-card {
    text-align: center;
    padding: 40px 25px;
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.phone-list p,
.address-details p,
.whatsapp-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.call-buttons,
.direction-button,
.whatsapp-button {
    margin-top: 25px;
}

.btn-call-now,
.btn-get-direction,
.btn-whatsapp-msg {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-call-now {
    background: var(--primary-gold);
    color: white;
}

.btn-call-now:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px);
}

.btn-get-direction {
    background: var(--dark-bg);
    color: white;
}

.btn-get-direction:hover {
    background: #333;
    transform: translateY(-3px);
}

.btn-whatsapp-msg {
    background: var(--whatsapp);
    color: white;
}

.btn-whatsapp-msg:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

/* Contact Form */
.form-container {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    color: var(--primary-gold);
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--text-dark);
}

.form-control {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(218, 165, 32, 0.25);
    outline: none;
}

.btn-submit {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-submit:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px);
}

/* Map Section */
.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Business Hours */
.hours-card {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hours-card h2 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 30px;
}

.hours-list {
    margin-top: 20px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item.highlight {
    color: var(--primary-gold);
    font-weight: 600;
}

/* ============================================
   WEDDING/MARRIAGE PAGE STYLES
   ============================================ */

.wedding-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.service-card {
    text-align: center;
    padding: 40px 25px;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.service-card ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.service-card ul li i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/* Wedding Packages */
.package-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.package-card.featured {
    transform: scale(1.05);
    z-index: 1;
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-gold);
    color: white;
    padding: 8px 40px;
    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 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
}

.duration {
    font-size: 0.9rem;
    opacity: 0.9;
}

.package-body {
    padding: 30px;
}

.package-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-body ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.package-body ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.package-body ul li i {
    margin-right: 10px;
    color: var(--primary-gold);
}

.package-body ul li i.fa-times {
    color: #ccc;
}

.package-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.btn-package {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
}

.btn-package:hover {
    background: transparent;
    color: var(--primary-gold);
}

/* Bride and Barat Stay */
.bride-stay-section,
.barat-stay-section {
    background: var(--light-bg);
}

.bride-content,
.barat-content {
    padding: 30px;
}

.bride-content h2,
.barat-content h2 {
    margin-bottom: 25px;
}

.features-list {
    margin: 25px 0;
}

.features-list .feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.features-list .feature i {
    color: var(--primary-gold);
    margin-right: 15px;
    font-size: 1.2rem;
}

.pricing-info {
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-tag {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin: 10px 0;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gold);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
    padding-right: calc(50% + 30px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: calc(50% + 30px);
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.timeline-content h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-gold);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    margin: 0 0 5px;
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   BANQUET PAGE STYLES
   ============================================ */

.banquet-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.banquet-type-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.banquet-image {
    height: 250px;
    overflow: hidden;
}

.banquet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banquet-type-card:hover .banquet-image img {
    transform: scale(1.1);
}

.banquet-content {
    padding: 25px;
}

.banquet-content h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.banquet-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.banquet-specs span i {
    margin-right: 5px;
    color: var(--primary-gold);
}

.banquet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.banquet-features span {
    background: var(--light-bg);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.banquet-features span i {
    margin-right: 5px;
    color: var(--primary-gold);
}

.btn-enquire {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
    font-size: 0.9rem;
}

.btn-enquire:hover {
    background: transparent;
    color: var(--primary-gold);
}

/* Banquet Features */
.banquet-features-section {
    background: var(--light-bg);
}

.features-content {
    padding-right: 30px;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    background: var(--primary-gold);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

/* Event Types */
.event-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.event-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Pricing Packages */
.pricing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 100%;
}

.pricing-card.featured {
    transform: scale(1.05);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-gold);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.pricing-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-header .price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-body {
    padding: 30px;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-body ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.pricing-body ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pricing-body ul li i {
    margin-right: 10px;
    color: var(--primary-gold);
}

.pricing-body ul li i.fa-times {
    color: #ccc;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.btn-pricing {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
}

.btn-pricing:hover {
    background: transparent;
    color: var(--primary-gold);
}

/* Catering Services */
.catering-section {
    background: var(--light-bg);
}

.catering-content {
    padding-left: 30px;
}

.cuisine-list h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cuisine-list ul {
    list-style: none;
    padding: 0;
}

.cuisine-list ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cuisine-list ul li i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.catering-features {
    margin-top: 30px;
}

.catering-features h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.features-grid .feature {
    display: flex;
    align-items: center;
}

.features-grid .feature i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/* ============================================
   RESORT PAGE STYLES
   ============================================ */

.resort-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Resort Overview */
.resort-overview-section {
    background: var(--light-bg);
}

.overview-content {
    padding-right: 30px;
}

.resort-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-right: 20px;
    min-width: 40px;
}

.highlight-item h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* Accommodation */
.room-card {
    height: 100%;
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
}

.room-content {
    padding: 25px;
}

.room-content h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.room-specs {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.room-features li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.room-features li i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.btn-book-room {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
    font-size: 0.9rem;
}

.btn-book-room:hover {
    background: transparent;
    color: var(--primary-gold);
}

/* Swimming Pool */
.pool-section {
    background: var(--light-bg);
}

.pool-content {
    padding-right: 30px;
}

.pool-content h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.pool-details {
    margin: 25px 0;
}

.detail-item {
    margin-bottom: 20px;
}

.detail-item h4 {
    color: var(--primary-gold);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.detail-item h4 i {
    margin-right: 10px;
}

.pool-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.pool-features-grid .feature {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.pool-features-grid .feature i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
    display: block;
}

/* Dining */
.dining-card {
    height: 100%;
}

.dining-image {
    height: 200px;
    overflow: hidden;
}

.dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dining-card:hover .dining-image img {
    transform: scale(1.1);
}

.dining-content {
    padding: 25px;
}

.dining-content h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.cuisine {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.dining-timing {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.dining-timing h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Recreation */
.recreation-card {
    text-align: center;
    padding: 30px 20px;
    height: 100%;
}

.recreation-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.recreation-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.recreation-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
}

.recreation-card ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.recreation-card ul li i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/* Conference Facilities */
.conference-section {
    background: var(--light-bg);
}

.conference-content {
    padding-right: 30px;
}

.conference-content h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.conference-features {
    margin-top: 30px;
}

.conference-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.conference-features .feature i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-right: 20px;
    min-width: 40px;
}

.conference-features .feature h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* Resort Packages */
.resort-package-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 100%;
}

.resort-package-card.featured {
    transform: scale(1.05);
    z-index: 1;
}

.resort-package-card .package-header {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    padding: 30px;
    text-align: center;
}

.resort-package-card .package-header h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.resort-package-card .package-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.resort-package-card .package-price span {
    font-size: 1rem;
    font-weight: 400;
}

.resort-package-card .package-body {
    padding: 30px;
}

.resort-package-card .package-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resort-package-card .package-body ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.resort-package-card .package-body ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.resort-package-card .package-body ul li i {
    margin-right: 10px;
    color: var(--primary-gold);
}

.resort-package-card .package-body ul li i.fa-times {
    color: #ccc;
}

.resort-package-card .package-footer {
    padding: 0 30px 30px;
    text-align: center;
}

/* ============================================
   CTA SECTION STYLES (Common)
   ============================================ */

.cta-section,
.cta-booking,
.cta-resort {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    text-align: center;
}

.cta-section h2,
.cta-booking h2,
.cta-resort h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-section p,
.cta-booking p,
.cta-resort p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-whatsapp {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: var(--primary-gold);
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 50px;
    font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1199px) {
    .page-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-hero {
        padding: 100px 0;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-story,
    .features-content,
    .catering-content,
    .pool-content,
    .conference-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-icon {
        left: 30px;
    }

    .package-card.featured,
    .pricing-card.featured,
    .resort-package-card.featured {
        transform: none;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .filter-buttons {
        gap: 5px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-whatsapp,
    .btn-lg {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .form-container {
        padding: 30px;
    }

    .contact-info-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .page-hero {
        padding: 80px 0;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-padding {
        padding: 40px 0;
    }

    .video-placeholder {
        height: 300px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
    }

    .timeline-icon {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .banquet-specs,
    .banquet-features {
        flex-direction: column;
        gap: 5px;
    }

    .features-grid,
    .pool-features-grid {
        grid-template-columns: 1fr;
    }
}