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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e23;
    --accent-color: #ffa500;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #fff;
    --transition: all 0.3s ease;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo img {
    height: 50px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

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

.nav-link:hover {
    color: var(--accent-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('assets/hero/hero-back-2.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--text-light);
    margin-bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(45, 80, 22, 0.3), rgba(107, 142, 35, 0.3));
    animation: pulse 8s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

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

.hero-logo {
    margin-top: 4rem;
    margin-bottom: 0rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-logo img {
    max-width: 300px;
    height: auto;
    transition: var(--transition);
}

.hero-logo img:hover {
    transform: scale(1.1) rotate(5deg);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    animation: slideInRight 1s ease;
}

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

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--dark-bg);
    color: var(--text-light);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 20px auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

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

/* Accommodation Section */
.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.accommodation-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.accommodation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.2), transparent);
    transition: var(--transition);
}

.accommodation-card:hover::before {
    left: 100%;
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.3);
}

.accommodation-card.featured {
    border: 2px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
}

.sleeps {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.card-body ul {
    list-style: none;
}

.card-body ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.card-body ul li i {
    color: var(--accent-color);
    margin-right: 10px;
}

.info-box {
    background: rgba(255, 165, 0, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
}

.info-box h4 {
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
}

.info-box ul li {
    padding: 0.3rem 0;
}

.btn-booking {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    cursor: pointer;
    font-family: inherit;
}

.btn-booking:hover {
    background: transparent;
    color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.4);
}

/* Tickets Section */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.ticket-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

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

.ticket-image {
    height: 250px;
    overflow: hidden;
}

.ticket-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.ticket-content {
    padding: 2rem;
}

.ticket-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.ticket-date {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.ticket-info {
    list-style: none;
    margin-top: 1.5rem;
}

.ticket-info li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.ticket-info li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

/* Stages Section */
.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.stage-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
}

.stage-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: var(--transition);
    border-radius: 50%;
}

.stage-card:hover::before {
    width: 300px;
    height: 300px;
}

.stage-card:hover {
    transform: translateY(-10px);
}

/* Stage Image Carousel */
.stage-image-carousel {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    position: relative;
}

.stage-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.stage-image.active {
    opacity: 1;
}

.stage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.stage-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.stage-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.stage-card ul li {
    padding: 0.5rem 0;
}

/* Line-up Section */
.lineup-placeholder {
    text-align: center;
    padding: 4rem 2rem;
}

.lineup-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.lineup-placeholder h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(255, 165, 0, 0.1);
    transform: translateX(10px);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    margin-bottom: 1rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group input[readonly] {
    background: rgba(255, 165, 0, 0.1);
    border-color: var(--accent-color);
    cursor: not-allowed;
}

.subject-highlight {
    animation: highlightPulse 1.5s ease;
}

@keyframes highlightPulse {
    0%, 100% {
        background: rgba(255, 165, 0, 0.1);
        border-color: var(--accent-color);
        box-shadow: 0 0 0 rgba(255, 165, 0, 0);
    }
    50% {
        background: rgba(255, 165, 0, 0.3);
        border-color: var(--accent-color);
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
    }
}

.form-response {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-response.success {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
    color: #00ff00;
    display: block;
}

.form-response.error {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff0000;
    color: #ff0000;
    display: block;
}

/* Footer */
.footer {
    background: #000;
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.footer-section ul li {
    padding: 0.3rem 0;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gallery CTA Elements */
.image-gallery-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.about-image:hover .image-gallery-cta {
    opacity: 1;
}

.gallery-overlay-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.gallery-overlay-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 165, 0, 0.6);
}

.gallery-overlay-link i {
    font-size: 1.3rem;
}

/* Gallery CTA Banner */
.gallery-cta-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.gallery-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.gallery-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 4rem;
    color: var(--accent-color);
    animation: float 3s ease-in-out infinite;
}

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

.cta-text {
    flex: 1;
    color: white;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
}

.cta-btn:hover {
    box-shadow: 0 6px 30px rgba(255, 165, 0, 0.6);
}

.cta-btn i {
    font-size: 1.2rem;
}

/* Social Media Follow Section */
.social-follow-section {
    margin-top: 3rem;
    padding: 2.5rem 0;
    text-align: center;
}

.social-follow-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.social-follow-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.social-follow-text p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
}

.social-follow-icons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.social-icon:hover .icon-wrapper::before {
    width: 120%;
    height: 120%;
}

.social-icon .icon-wrapper i {
    position: relative;
    z-index: 2;
}

.social-icon.instagram .icon-wrapper {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    box-shadow: 0 5px 20px rgba(131, 58, 180, 0.4);
}

.social-icon.facebook .icon-wrapper {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

.social-icon.tiktok .icon-wrapper {
    background: linear-gradient(135deg, #000000 0%, #EE1D52 50%, #69C9D0 100%);
    box-shadow: 0 5px 20px rgba(238, 29, 82, 0.4);
}

.social-icon:hover .icon-wrapper {
    transform: translateY(-10px) scale(1.1);
}

.social-icon.instagram:hover .icon-wrapper {
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.6);
}

.social-icon.facebook:hover .icon-wrapper {
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.6);
}

.social-icon.tiktok:hover .icon-wrapper {
    box-shadow: 0 10px 30px rgba(238, 29, 82, 0.6);
}

.social-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.social-icon:hover .social-label {
    color: var(--accent-color);
    transform: scale(1.05);
}

/* Floating Animation for Social Icons */
@keyframes floatSocial {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.social-icon:nth-child(1) .icon-wrapper {
    animation: floatSocial 3s ease-in-out infinite;
}

.social-icon:nth-child(2) .icon-wrapper {
    animation: floatSocial 3s ease-in-out infinite 0.5s;
}

.social-icon:nth-child(3) .icon-wrapper {
    animation: floatSocial 3s ease-in-out infinite 1s;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
    }

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

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

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

    .about-content {
        grid-template-columns: 1fr;
    }

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

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

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

    .section-title {
        font-size: 2rem;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-icon {
        font-size: 3rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-overlay-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .social-follow-section {
        margin-top: 2rem;
        padding: 2rem 0;
    }

    .social-follow-text h3 {
        font-size: 1.5rem;
    }

    .social-follow-text p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .social-follow-icons {
        gap: 1.5rem;
    }

    .social-icon .icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .social-label {
        font-size: 0.85rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 5% auto;
    padding: 2.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.4s ease;
    box-shadow: 0 10px 50px rgba(255, 165, 0, 0.3);
}

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

.modal-content h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2rem;
}

.close {
    color: var(--accent-color);
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover,
.close:focus {
    color: #ff8c00;
    transform: rotate(90deg);
}

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

#bookingForm .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

#bookingForm .form-group input,
#bookingForm .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

#bookingForm .form-group input:focus,
#bookingForm .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

#bookingForm .form-group input[readonly] {
    background: rgba(255, 165, 0, 0.2);
    border-color: var(--accent-color);
    cursor: not-allowed;
    color: var(--accent-color);
    font-weight: 600;
}

#bookingForm button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
}

#bookingFormResponse {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }
}
