 /* Mega menu container */
.social-icons {
    display: flex;
    gap: 12px;          /* jarak antar ikon */
    align-items: center;
}

.social-icons a {
    color: #333;       /* bebas */
    font-size: 18px;   /* ukuran ikon */
    text-decoration: none;
}
.mega-menu {
    width: 900px;
    padding: 150px;
}
.dropdown-item {
    color: #050404;
    background-color:#00eaff  transparent !important;  /* transparan */
  
    position: relative;
    padding-left: 8px;
    transition: 0.3s;
    width: 316px;
 
}
.dropdown-item:hover, 
.dropdown-item:focus {
    background-color: transparent !important;
}
.dropdown-item:hover {
    color: #00eaff;
    transform: translateX(5px);
    text-shadow: 0 0 8px #00eaff;
}

/* LEFT NEON BULLET */
.dropdown-item::before {
    content: "";
    width: 4px;
    height: 6px;
    background: #00eaff;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    box-shadow: 0 0 8px #48595b;
    transition: 0.3s;
}

.dropdown-item:hover::before {
    opacity: 1;
}

/* ----- ANIMASI FADE ----- */
.dropdown-menu {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.35s ease;
    display: block;
    visibility: hidden;
}

.show.dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.service-title {
  color: #fff;
  font-size: 2.7rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}

.service-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 60px;
}

/* Card */
.service-card {
  height: 100%;
  padding: 40px 25px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.5s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(212,175,55,0.25);
  border-color: #d4af37;
}

/* Icon */
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(45deg,#d4af37,#ffc769);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2.4rem;
  color: #111;
  box-shadow: 0 0 25px rgba(212,175,55,.5);
  transition: 0.5s;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 0 35px rgba(255,215,0,0.8);
}

/* Text */
.service-card h4 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #ccc;
  font-size: 0.95rem;
}

/* entrance animation */
.service-card {
  animation: floatUp 1s ease forwards;
  opacity: 0;
}

.service-card:nth-child(1) {animation-delay: .1s}
.service-card:nth-child(2) {animation-delay: .3s}
.service-card:nth-child(3) {animation-delay: .5s}
.service-card:nth-child(4) {animation-delay: .7s}

@keyframes floatUp {
  from { transform: translateY(30px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
        :root {
            --primary-color: #FF6B35;
            --secondary-color: #0D7377;
            --dark-teal: #14505C;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background-color: rgb(6 115 119 / 17%) !important;
            padding: 0rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: white !important;
        }

        .navbar-brand span {
            color: var(--primary-color);
        }

        .nav-link {
            color: white !important;
            margin: 0 15px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            overflow: hidden;
            padding: 120px 0 80px;
        }

        /* Hero Slider */
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 15px;
        }

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

        .slider-dot.active {
            background: white;
            transform: scale(1.3);
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            font-size: 1.5rem;
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .slider-arrow.prev {
            left: 30px;
        }

        .slider-arrow.next {
            right: 30px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-text-left {
            padding-top: 50px;
            animation: fadeInLeft 1s ease-out;
        }

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

        .btn-contact-hero {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 30px;
            transition: all 0.3s;
            letter-spacing: 1px;
        }

        .btn-contact-hero:hover {
            background: #ff5520;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-contact-hero i {
            margin-left: 10px;
        }

        .hero-title-script {
            font-family: 'Brush Script MT', cursive;
            font-size: 5rem;
            color: #f3df82;
            margin-bottom: 0;
            line-height: 1;
            font-weight: normal;
            font-style: italic;
        }

        .hero-main-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #efefef;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .hero-description {
            font-size: 1.1rem;
           color: #f4de7a;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .hero-flower-image {
            position: relative;
            animation: fadeInRight 1s ease-out;
        }

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

        .flower-main {
            width: 100%;
            max-width: 600px;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
            animation: floatFlower 6s ease-in-out infinite;
        }

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

        /* Floating Social Media */
        .floating-social {
            position: fixed;
            right: 30px;
            top: 80%;
            transform: translateY(-10%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .social-float {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            transition: all 0.3s;
            position: relative;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .social-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }

        .social-float.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-float.tiktok {
            background: #000;
        }

        .social-float.youtube {
            background: #FF0000;
        }

        .social-float.whatsapp {
            background: #25D366;
        }

        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #FF0000;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            border: 2px solid white;
        }

        .snow-effect {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
            z-index: 1;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-title-script {
                font-size: 3.5rem;
            }
            
            .hero-main-title {
                font-size: 2rem;
            }

            .hero-flower-image {
                margin-top: 40px;
                text-align: center;
            }

            .floating-social {
                right: 15px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .slider-arrow.prev {
                left: 15px;
            }

            .slider-arrow.next {
                right: 15px;
            }
        }

        @media (max-width: 768px) {
            .hero-title-script {
                font-size: 2.5rem;
            }
            
            .hero-main-title {
                font-size: 1.5rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .floating-social {
                display: none;
            }
        }

        /* Product Section */
        .product-section {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            color: var(--dark-teal);
            font-weight: bold;
        }

        .product-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 30px;
        }

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

        .product-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        /* Info Banner */
        .info-banner {
            background: #7a9162;;
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .info-banner h3 {
            font-size: 2rem;
            margin-bottom: 30px;
        }

        /* Collection Section */
        .collection-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .collection-title {
            text-align: center;
            color: var(--secondary-color);
            margin-bottom: 50px;
            font-weight: 600;
        }

        .collection-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .collection-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .collection-item:hover img {
            transform: scale(1.1);
        }

        .collection-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 20px;
            color: white;
            font-weight: 600;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: white;
        }

        .service-card {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            background: #f8f9fa;
            margin-bottom: 20px;
            transition: all 0.3s;
        }

        .service-card:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-5px);
        }

        .service-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .service-card:hover i {
            color: white;
        }

        /* Newsletter */
        .newsletter-section {
            background: var(--dark-teal);
            color: white;
            padding: 60px 0;
        }

        .newsletter-section h3 {
            margin-bottom: 30px;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .btn-subscribe {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 40px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-subscribe:hover {
            background: #ff5520;
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            background: #0a3d42;
            color: white;
            padding: 60px 0 20px;
        }

        footer h5 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        footer a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        footer a:hover {
            color: white;
        }

        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s;
        }

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

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #999;
        }
        /* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-teal);
    font-weight: bold;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px 25px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item.show {
    opacity: 1;
    transform: translateY(0);
    
}

.faq-item:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.faq-answer {
    display: none;
    margin-top: 15px;
    color: #555;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeDown 0.5s ease;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  transform: translateY(40px);
  opacity: 0;
  transition: all .7s ease;
}

@keyframes fadeDown {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity:1; transform: translateY(0);}
}
/* FAQ PREMIUM */
.faq-premium {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

/* Box */
.faq-box {
  margin-bottom: 20px;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  transition: all .4s ease;
}

/* Button */
.faq-btn {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 20px;
  border: none;
  position: relative;
}

/* REMOVE DEFAULT BOOTSTRAP ICON */
.accordion-button::after {
  display: none;
}

/* Custom Icon */
.faq-btn::before {
  content: "+";
  font-size: 22px;
  font-weight: bold;
  position: absolute;
  right: 25px;
  color: #0d6efd;
  transition: all .3s ease;
}

/* Change icon when open */
.faq-btn:not(.collapsed)::before {
  content: "–";
  transform: rotate(180deg);
}

/* Body */
.accordion-body {
  background: white;
  padding: 25px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* GLOWING ACTIVE */
.accordion-item:has(.accordion-button:not(.collapsed)) {
  box-shadow: 0 0 0 2px #0d6efd20,
              0 10px 40px #0d6efd30;
}

/* Hover */
.faq-box:hover {
  transform: translateY(-3px);
}
.gallery-section {
  background: #030303;
  padding: 100px 0;
  margin-top: 80px;
}

.gallery-title {
  color: #d4af37;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.gallery-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

/* ==== MODAL ==== */
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 85%;
  max-height: 85%;
  border-radius: 20px;
  animation: zoomIn 0.4s ease;
  box-shadow: 0 0 50px rgba(212,175,55,0.6);
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  color: #d4af37;
  cursor: pointer;
  transition: .3s;
}

.close-modal:hover {
  transform: rotate(90deg) scale(1.2);
}

/* animasi zoom */
@keyframes zoomIn {
  from {transform: scale(.5); opacity:0}
  to {transform: scale(1); opacity:1}
}

        /* Hero Section */
        .engagement-hero {
            height: 80vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1920');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .engagement-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, transparent 0%, rgba(212,175,55,0.15) 100%);
            animation: pulse 4s ease-in-out infinite;
        }

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

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-subtitle-small {
            font-size: 1.1rem;
            color: var(--primary-gold);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-title {
            font-size: 5rem;
            font-weight: 300;
            color: #fff;
            margin-bottom: 1rem;
            letter-spacing: 5px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-title strong {
            font-weight: 700;
            color: var(--primary-gold);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #ccc;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease 0.4s backwards;
            font-style: italic;
        }

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

        .hero-divider {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            margin: 30px auto;
            animation: fadeInUp 1s ease 0.6s backwards;
        }

        /* Package Section */
        .package-section {
            padding: 120px 0;
            background: linear-gradient(180deg, #fffefe 0%, #ffffff 50%, #fdfbfb 100%);
            position: relative;
        }

        .package-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(241, 186, 6, 0.3), transparent);
        }

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

             /* Hero Section */
        .engagement-hero {
            height: 80vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1920');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .engagement-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, transparent 0%, rgba(212,175,55,0.15) 100%);
            animation: pulse 4s ease-in-out infinite;
        }

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

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-subtitle-small {
            font-size: 1.1rem;
            color: var(--primary-gold);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-title {
            font-size: 5rem;
            font-weight: 300;
            color: #fff;
            margin-bottom: 1rem;
            letter-spacing: 5px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-title strong {
            font-weight: 700;
            color: var(--primary-gold);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #ccc;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease 0.4s backwards;
            font-style: italic;
        }

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

        .hero-divider {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            margin: 30px auto;
            animation: fadeInUp 1s ease 0.6s backwards;
        }

        /* Package Section */
        .package-section {
            padding: 120px 0;
            background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            position: relative;
        }

        .package-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-label {
            color: var(--primary-gold);
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 300;
            color: #fff;
            margin-bottom: 20px;
        }

        .section-title strong {
            font-weight: 700;
            color: var(--primary-gold);
        }

        .section-description {
            color: #aaa;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Premium Package Card */
        .package-premium {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
            border-radius: 30px;
            padding: 0;
            border: 1px solid rgba(212,175,55,0.3);
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.5);
            position: relative;
        }

        .package-premium::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary-gold), transparent, var(--primary-gold));
            border-radius: 30px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .package-premium:hover::before {
            opacity: 0.5;
        }

        .package-header {
            background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
            padding: 60px 50px;
            text-align: center;
            position: relative;
        }

        .package-badge {
            display: inline-block;
            background: var(--primary-gold);
            color: #000;
            padding: 8px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        .package-name {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .package-tagline {
            color: #aaa;
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 30px;
        }

        .package-price {
            font-size: 3.5rem;
            color: gold;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .package-price-note {
            color: #888;
            font-size: 0.95rem;
        }

        .package-body {
            padding: 60px 50px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: rgba(255,255,255,0.02);
            border-radius: 15px;
            border: 1px solid rgba(212,175,55,0.1);
            transition: all 0.3s;
        }

        .feature-item:hover {
            background: rgba(212,175,55,0.05);
            border-color: rgba(212,175,55,0.3);
            transform: translateX(5px);
        }

        .feature-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(45deg, rgba(131, 112, 7, 0.705), #ffd700);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #000;
            font-size: 1.2rem;
        }

        .feature-text h5 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .feature-text p {
            color: #888;
            font-size: 0.9rem;
            margin: 0;
        }

        .package-footer {
            text-align: center;
            padding: 0 50px 60px;
        }

        .btn-book {
            display: inline-block;
            background: linear-gradient(45deg, rgba(255, 217, 0, 0.712), #ffd700);
            color: #000;
            padding: 18px 60px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            transition: all 0.4s;
            box-shadow: 0 10px 40px rgba(212,175,55,0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-book::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: 0.6s;
        }

        .btn-book:hover::before {
            left: 100%;
        }

        .btn-book:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(212,175,55,0.5);
            color: #000;
        }

        .package-note {
            margin-top: 30px;
            color: #888;
            font-size: 0.9rem;
        }

         /* Hero About Section */
        .hero-about {
            min-height: 60vh;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 190px 0 80px;
        }

        .hero-about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(13, 115, 119, 0.1) 0%, transparent 50%);
        }

        .hero-about-content {
            position: relative;
            z-index: 2;
        }

        .hero-about h1 {
            font-size: 4rem;
            font-weight: 900;
            background: gold;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }

        .hero-about .subtitle {
            font-size: 1.3rem;
            color: #fdfcfc;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.3s backwards;
        }

        .breadcrumb-custom {
            background: transparent;
            padding: 0;
            animation: fadeInUp 1s ease 0.6s backwards;
        }

        .breadcrumb-custom a {
            color: gold;
            text-decoration: none;
            transition: 0.3s;
        }

        .breadcrumb-custom a:hover {
            color: var(--light-gold);
        }

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

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

        /* Story Section */
        .story-section {
            padding: 100px 0;
            background: #0a0a0a;
            position: relative;
        }

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

        .story-image-wrapper {
            position: relative;
        }

        .story-main-img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
            transition: transform 0.5s;
        }

        .story-main-img:hover {
            transform: scale(1.02);
        }

        .story-floating-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: linear-gradient(135deg, gold, #f4c430);
            width: 180px;
            height: 180px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .story-floating-badge h3 {
            font-size: 3rem;
            font-weight: 900;
            color: #0a0a0a;
            margin: 0;
        }

        .story-floating-badge p {
            color: #0a0a0a;
            font-weight: 700;
            margin: 0;
        }

        .story-content h2 {
            font-size: 3rem;
            font-weight: 900;
            color: gold;
            margin-bottom: 30px;
        }

        .story-content p {
            font-size: 1.1rem;
            line-height: 2;
            color: #ccc;
            margin-bottom: 25px;
        }

        .story-highlight {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(13, 115, 119, 0.1));
            padding: 30px;
            border-radius: 20px;
            border-left: 4px solid var(--primary-gold);
            margin-top: 30px;
        }

        /* Values Section */
        .values-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, rgb(248, 230, 126), gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #aaa;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .value-card {
           background: rgba(252, 224, 11, 0.1);
            backdrop-filter: blur(10px);
            padding: 50px 35px;
            border-radius: 25px;
            border: 1px solid rgba(253, 221, 114, 0.2);
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: 0.8s;
        }

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

        .value-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary-gold);
            box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
        }

        .value-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #f4c430);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #0a0a0a;
            transition: 0.5s;
        }

        .value-card:hover .value-icon {
            transform: rotateY(360deg);
        }

        .value-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: rgb(227, 243, 9);
            margin-bottom: 20px;
        }

        .value-card p {
            color: rgb(255, 255, 255);
            line-height: 1.8;
        }

        /* Vision Mission Section */
        .vm-section {
            padding: 100px 0;
            background: #0a0a0a;
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .vm-card {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(13, 115, 119, 0.05));
            padding: 60px 45px;
            border-radius: 30px;
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
            transition: all 0.5s;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 30px;
            padding: 2px;
            background: linear-gradient(135deg, gold, teal);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: 0.5s;
        }

        .vm-card:hover::before {
            opacity: 1;
        }

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

        .vm-icon-wrapper {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, gold, #f4c430);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        .vm-icon-wrapper i {
            font-size: 2.5rem;
            color: #0a0a0a;
        }

        .vm-card h3 {
            font-size: 2.2rem;
            font-weight: 800;
            color: gold;
            margin-bottom: 25px;
        }

        .vm-card p {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #ccc;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        }

        .stats-wrapper {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 60px 40px;
            border-radius: 30px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            position: relative;
        }

        .stat-item::after {
            content: '';
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 60px;
            background: linear-gradient(180deg, transparent, gold, transparent);
        }

        .stat-item:last-child::after {
            display: none;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, gold, rgb(248, 222, 73));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #aaa;
            font-weight: 600;
        }

        /* Team Preview */
        .team-section {
            padding: 100px 0;
            background: #0a0a0a;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .team-card {
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            cursor: pointer;
            transition: 0.5s;
        }

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

        .team-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: 0.5s;
        }

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

        .team-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
            padding: 30px;
            transform: translateY(50%);
            transition: 0.5s;
        }

        .team-card:hover .team-overlay {
            transform: translateY(0);
        }

        .team-overlay h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 5px;
        }

        .team-overlay p {
            color: #aaa;
            margin-bottom: 15px;
        }

        .social-links a {
            color: white;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: 0.3s;
        }

        .social-links a:hover {
            color: var(--primary-gold);
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            text-align: center;
        }

        .cta-content h2 {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--primary-gold);
            margin-bottom: 25px;
        }

        .cta-content p {
            font-size: 1.3rem;
            color: #aaa;
            margin-bottom: 40px;
        }

        .btn-cta {
            padding: 18px 50px;
            background: linear-gradient(135deg, var(--primary-gold), #f4c430);
            color: #0a0a0a;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s;
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
            cursor: pointer;
        }

        .btn-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 60px rgba(212, 175, 55, 0.6);
        }
 /* Contact Hero */
        .contact-hero {
            background: linear-gradient(135deg, #0D7377, #14505C);
            padding: 120px 0 80px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 0.3;
        }

        .contact-hero-content {
            position: relative;
            z-index: 2;
        }

        .contact-hero h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInDown 0.8s;
        }

        .contact-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            animation: fadeInUp 0.8s;
        }

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

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

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: white;
        }

        .contact-form-wrapper {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            padding: 50px;
            margin-bottom: 30px;
        }

        .form-label {
            font-weight: 600;
            color: var(--dark-teal);
            margin-bottom: 10px;
        }

        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 12px 20px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(13, 115, 119, 0.15);
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--primary-color), #ff5520);
            color: white;
            border: none;
            padding: 15px 50px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            width: 100%;
            margin-top: 20px;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
        }

        /* Contact Info Cards */
        .contact-info-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            transition: all 0.3s;
            height: 100%;
        }

        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #ff5520);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
        }

        .contact-info-card h4 {
            color: var(--dark-teal);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .contact-info-card p {
            color: #666;
            margin-bottom: 5px;
        }

        .contact-info-card a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .contact-info-card a:hover {
            color: var(--primary-color);
        }

        /* Map Section */
        .map-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .map-wrapper {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            height: 450px;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Social Media Section */
        .social-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #0D7377, #14505C);
            color: white;
            text-align: center;
        }

        .social-section h2 {
            margin-bottom: 40px;
            font-weight: bold;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .social-link {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            transition: all 0.3s;
            position: relative;
            text-decoration: none;
        }

        .social-link:hover {
            transform: scale(1.2) rotate(10deg);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .social-link.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-link.whatsapp {
            background: #25D366;
        }

        .social-link.facebook {
            background: #1877F2;
        }

        .social-link.tiktok {
            background: #000000;
        }

        /* Success Message */
        .success-message {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            border: 2px solid #c3e6cb;
        }

        .success-message.show {
            display: block;
            animation: slideDown 0.5s;
        }

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

        /* Footer */
        footer {
            background: #0a3d42;
            color: white;
            padding: 40px 0 20px;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #999;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2rem;
            }

            .contact-form-wrapper {
                padding: 30px 20px;
            }

            .social-links {
                gap: 20px;
            }

            .social-link {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        /*Booking form*/
          .booking-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .booking-header {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInDown 0.8s ease;
        }

        .booking-header h1 {
            color: var(--primary-gold);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        .booking-header p {
            color: #aaa;
            font-size: 1.1rem;
        }

        .booking-form-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 50px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 0.8s ease;
        }

        .form-group {
            margin-bottom: 30px;
            position: relative;
        }

        .form-label {
            color: #fff;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            font-size: 0.95rem;
        }

        .form-label i {
            color: var(--primary-gold);
            margin-right: 10px;
            font-size: 1.1rem;
        }

        .form-control, .form-select {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-gold);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
            color: #fff;
        }

        .form-control::placeholder {
            color: #888;
        }

        .form-select option {
            background: #1a1a2e;
            color: #fff;
        }

        .btn-submit {
            width: 100%;
            background: linear-gradient(45deg, #d4af37, #ffc769);
            color: #111;
            border: none;
            padding: 18px;
            border-radius: 15px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            margin-top: 20px;
            position: relative;
            overflow: hidden;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-submit:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-submit span {
            position: relative;
            z-index: 1;
        }

        .success-message {
            display: none;
            background: linear-gradient(45deg, #28a745, #5cb85c);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-top: 30px;
            animation: slideIn 0.5s ease;
        }

        .success-message.show {
            display: block;
        }

        .row-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        /* Hidden field with animation */
        .hidden-field {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.5s ease;
            margin-bottom: 0;
        }

        .hidden-field.show {
            max-height: 300px;
            opacity: 1;
            margin-bottom: 30px;
        }

        /* Color picker styling */
        .color-options {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 10px;
        }

        .color-option {
            position: relative;
            cursor: pointer;
        }

        .color-option input[type="radio"] {
            display: none;
        }

        .color-box {
            width: 100%;
            height: 60px;
            border-radius: 10px;
            border: 3px solid transparent;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .color-option input[type="radio"]:checked + .color-box {
            border-color: var(--primary-gold);
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        .color-box::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--primary-gold);
            border-radius: 50%;
            top: -8px;
            right: -8px;
            display: none;
        }

        .color-option input[type="radio"]:checked + .color-box::after {
            display: block;
            animation: checkPulse 0.5s ease;
        }

        @keyframes checkPulse {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        /* Number input styling */
        .form-control[type="number"] {
            -moz-appearance: textfield;
        }

        .form-control[type="number"]::-webkit-inner-spin-button,
        .form-control[type="number"]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .number-input-wrapper {
            position: relative;
        }

        .number-controls {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .number-btn {
            background: rgba(212, 175, 55, 0.2);
            border: none;
            color: var(--primary-gold);
            width: 30px;
            height: 24px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        .number-btn:hover {
            background: var(--primary-gold);
            color: #111;
        }

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

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

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

        @media (max-width: 768px) {
            .booking-form-card {
                padding: 30px 20px;
            }

            .booking-header h1 {
                font-size: 2rem;
            }

            .row-form {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .color-options {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-gold);
            border-radius: 5px;
        }

        .required {
            color: #ff6b6b;
            margin-left: 5px;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
           :root {
            --primary-gold: #d4af37;
            --dark-bg: #0a0a0a;
            --card-bg: rgba(255, 255, 255, 0.05);
        }

        body {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            min-height: 100vh;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding: 40px 0;
        }
/*END*/

.hidden-field {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

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

.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-message i {
    color: #4ade80;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.number-input-wrapper {
    position: relative;
}

.number-controls {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.number-btn {
    background: #667eea;
    border: none;
    color: white;
    width: 25px;
    height: 20px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all 0.3s ease;
}

.number-btn:hover {
    background: #764ba2;
    transform: scale(1.1);
}

.color-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.color-option {
    cursor: pointer;
}

.color-option input[type="radio"] {
    display: none;
}

.color-box {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.color-option input[type="radio"]:checked + .color-box {
    border-color: #667eea;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.color-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}