 /* Hero Section Height Control */
        .hero-header {
            min-height: 40vh !important;
            max-height: 60vh !important;
            display: flex;
            align-items: center;
        }
        .hero-header .container {
            padding-top: 1rem !important;
            padding-bottom: 1rem !important;
        }
        .hero-header .row {
            padding-top: 1rem !important;
            padding-bottom: 1rem !important;
        }
        .hero-header .col-lg-10 {
            padding-top: 1rem !important;
            margin-top: 1rem !important;
        }
        .hero-header h1 {
            font-size: 2.5rem !important;
            margin-bottom: 1rem !important;
        }
        .hero-header p {
            font-size: 1.1rem !important;
            margin-bottom: 1rem !important;
        }
        /* Mobile adjustments */
        @media (max-width: 768px) {
            .hero-header {
                min-height: 50vh !important;
                max-height: 70vh !important;
            }
            .hero-header h1 {
                font-size: 2rem !important;
            }
            .hero-header p {
                font-size: 1rem !important;
            }
        }
        @media (max-width: 576px) {
            .hero-header h1 {
                font-size: 1.1rem !important;
            }
            .hero-header p {
                font-size: 0.95rem !important;
            }
        }
        .content-section {
            max-width: 100vw;
            margin: 0 auto;
            padding: 60px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            position: relative;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #667eea 75%, #764ba2 100%);
            border-radius: 25px;
            margin-bottom: 40px;
            margin-top: 40px;
        }
        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dunes" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0 15 Q10 5 20 15 L20 20 L0 20 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dunes)"/></svg>');
            opacity: 0.3;
            pointer-events: none;
        }
        .content-section h2 {
            font-size: 3rem;
            background: linear-gradient(45deg, #ff6b6b, #feca57, #ff9ff3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 40px;
            text-align: center;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
        }
        .text-content {
            font-size: 1.1rem;
            color: #2c3e50;
            text-align: justify;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }
        .text-content:hover {
            transform: translateY(-5px);
        }
        .booking-btn {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: 30px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        .booking-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }
        .booking-btn:hover::before {
            left: 100%;
        }
        .booking-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
        }
        .btn-container {
            text-align: center;
            margin-top: 30px;
        }
        /* Gallery Section Styles */
        .gallery-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 60px 20px;
            text-align: center;
        }
        .gallery-section h2 {
            font-size: 3rem;
            background: linear-gradient(45deg, #ff6b6b, #feca57, #ff9ff3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 40px;
            font-weight: bold;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        .gallery-item:hover {
            transform: scale(1.05);
        }
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        .gallery-overlay span {
            font-size: 1.2rem;
            font-weight: bold;
        }
        /* FAQ Section Styles */
        .faq-section {
            max-width: 1000px;
            margin: 40px auto;
            padding: 60px 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .faq-section h2 {
            font-size: 3rem;
            background: linear-gradient(45deg, #ff6b6b, #feca57, #ff9ff3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 40px;
            text-align: center;
            font-weight: bold;
        }
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }
        .faq-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .faq-question {
            background: #f8f9fa;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background 0.3s ease;
        }
        .faq-question:hover {
            background: #e9ecef;
        }
        .faq-toggle {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ff6b6b;
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 200px;
        }
        .faq-answer p {
            margin: 0;
            color: #555;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .content-section {
                padding: 40px 15px;
            }
            .content-section h2 {
                font-size: 1.3rem;
            }
            .text-content {
                /* padding: 25px; */
                font-size: 0.9rem;
            }
            .booking-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
            .gallery-section {
                padding: 40px 15px;
            }
            .gallery-section h2,
            .faq-section h2 {
                font-size: 2.2rem;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .faq-section {
                padding: 40px 15px;
                margin: 20px;
            }
            .faq-question {
                padding: 15px;
                font-size: 1rem;
            }
        }



form {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

form label {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  color: #374151;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #0b6efd;
  box-shadow: 0 0 0 3px rgba(11, 110, 253, 0.2);
}

form button {
  background: #0b6efd;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

form button:hover {
  background: #0954c5;
}

.status {
  margin-top: 12px;
  font-size: 14px;
  color: #6b7280;
}
