@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

:root {
    --color-primary: #004d99;      
    --color-secondary: #ff6f00;   
    --color-light: #f4f7f9;
    --color-dark: #2c3e50;        
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.2);
}


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}
h1, h2, h3 {
    color: var(--color-dark); 
    font-weight: 700;
}
h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    color: var(--color-primary); 
    text-transform: uppercase;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 77, 153, 0.5), rgba(0, 0, 0, 0));
    margin: 60px 0;
}

/* === bagian navbar === */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-shadow: var(--shadow-light);
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s;
}
.navbar.scrolled { 
    background-color: var(--color-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.navbar.scrolled .logo, 
.navbar.scrolled ul li a:not(.cta-button) {
    color: var(--color-light);
}
.logoperusahaan {
    width: 70px;
    border-radius: 15px;
    height: auto;
}
.logo {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--color-primary);
    margin-right: auto;
    padding-right: 20px;
}
.navbar ul {
    list-style: none;
    display: flex;
}
.navbar ul li a {
    text-decoration: none;
    color: var(--color-dark);
    padding: 10px 18px;
    transition: color 0.3s, background-color 0.3s;
    font-weight: 600;
}
.navbar ul li a:hover:not(.cta-button) {
    color: var(--color-secondary);
}
.cta-button {
    background-color: var(--color-secondary); 
    color: white !important;
    border-radius: 50px; 
    font-weight: bold;
    padding: 8px 20px;
}
.cta-button:hover {
    background-color: #ff9800;
}

/* Tombol Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    color: var(--color-primary);
    cursor: pointer;
    z-index: 150;
    padding: 5px;
}
.menu-toggle i {
    transition: transform 0.3s;
}

/* === akhir NAVBAR === */


/* === HERO SECTION STYLES === */
.hero-section {
    background-image: url('foto\ outbond.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    text-align: center;
    padding: 180px 20px;
    min-height: 85vh; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-content {
    max-width: 1000px;
}
.hero-section h1 {
    font-size: 4.8em; 
    margin-bottom: 25px;
    color: white; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); 
    line-height: 1.1;
}
.hero-section p {
    color:white;
    font-size: 1.8em;
    font-weight: 300;
    margin-bottom: 60px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.background-image-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('https://via.placeholder.com/400x100?text=FOTO+JELAJAHI+PAKET') no-repeat center center;
    background-size: cover;
    color: white; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
}
.background-image-cta:hover {
    background-position: bottom;
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.btn.primary {
    background-color: rgba(255, 166, 0, 0.642);
    color:white;
    
}
.btn.primary:hover {
    background-color: #ff882b;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.8);
}
.btn-main {
    font-size: 1.3em;
}

.quick-contact {
    margin-top: 30px;
    background-color: rgba(255, 255, 255, 0.2); 
    padding: 15px 25px;
    border-radius: 10px;
}
.quick-contact p {
    font-size: 1.1em;
    margin: 5px 0 10px 0;
    font-weight: 600;
}
.btn-small {
    padding: 10px 25px;
    font-size: 1em;
    border-radius: 50px;
}
.whatsapp-btn {
    background-color: #25d366; 
    color: white;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.5);
}
.whatsapp-btn:hover {
    background-color: #1ed158;
    box-shadow: 0 0 30px rgba(37, 211, 102, 1);
}
/* === END HERO SECTION STYLES === */


/* === LAYANAN SECTION STYLES === */
.layanan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.layanan-card {
    background-color: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.5s ease; 
    overflow: hidden;
    position: relative;
    border: 1px solid #e0e0e0;
}
.layanan-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
    border-color: var(--color-primary);
}
.layanan-card.featured {
    border: 3px solid var(--color-secondary); 
    box-shadow: 0 0 30px rgba(255, 111, 0, 0.4); 
}
.layanan-img {
    width: 100%;
    height: 180px; 
    object-fit: cover; 
    border-radius: 12px 12px 0 0;
    transition: transform 0.5s;
    filter: brightness(0.95); 
}
.layanan-card:hover .layanan-img {
    transform: scale(1.1); 
    filter: brightness(1.1);
}
.layanan-card h3 {
    padding: 15px 20px 5px;
    font-size: 1.4em;
    color: var(--color-primary);
}
.layanan-card p {
    padding: 0 20px;
    font-size: 0.95em;
    min-height: 50px;
}
.harga-info {
    margin-top: 15px;
    padding: 15px 20px;
    background-color: #e6f0ff;
    border-top: 2px solid var(--color-primary);
}
.harga-info span {
    display: block;
    font-size: 0.8em;
    color: #555;
    font-weight: 600;
}
.harga-info strong {
    font-size: 2em; 
    color: #d9534f;
    font-weight: 900;
    display: block;
    line-height: 1.2;
}
/* === END LAYANAN SECTION STYLES === */


/* === GALLERY SECTION STYLES === */
.gallery-section {
    padding: 40px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto 0 auto;
}
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}
.gallery-item img:hover {
    transform: scale(1.1); 
    filter: brightness(1.1);
}
/* === END GALLERY SECTION STYLES === */


/* === LOCATION & CONTACT STYLES === */
.location-contact-section {
    padding: 80px 20px;
    background-color: white;
    border-top: 5px solid var(--color-secondary); 
}
.location-contact-section h2 {
    color: var(--color-dark);
}
.location-contact-grid {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 40px auto;
    align-items: flex-start;
}
.details-side {
    flex: 1;
    padding: 20px;
    background-color: var(--color-light); 
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.map-side {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    background-color: var(--color-dark);
    color: white;
}
.map-side h3 {
    margin: 0;
    padding: 15px 20px;
    color: white;
    background-color: var(--color-dark);
}
.map-side p {
    padding: 0 20px;
    margin-bottom: 10px;
    font-size: 0.9em;
}
.map-side iframe {
    display: block;
    width: 100%;
}


.contact-methods {
    margin-bottom: 30px;
}
.contact-methods p {
    font-size: 1.1em;
    margin: 15px 0;
    font-weight: 400;
}
.contact-methods a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}
.contact-color {
    color: var(--color-secondary); 
    margin-right: 10px;
}


.social-contact-area {
    margin-top: 30px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}
.social-contact-area h4 {
    font-size: 1.2em;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-weight: 600;
}
.big-icon {
    font-size: 3em;
    margin: 0 15px;
    transition: transform 0.3s;
}
.whatsapp-icon { color: #25d366; }
.ig-icon { 
    color: #E1306C;
}
.tiktok-icon { 
    color: var(--color-dark); 
    text-shadow: 1px 1px 0 #4c4c4c, -1px -1px 0 #fe2c55; 
}
.big-icon:hover {
    transform: scale(1.2);
}

.btn-direction {
    background-color: var(--color-primary); 
    color: white;
}
.btn-direction:hover {
    background-color: #003366;
}
.mt-3 {
    margin-top: 25px;
}
/* === END LOCATION & CONTACT STYLES === */


/* === FOOTER STYLES === */
.footer-section {
    background-color: var(--color-dark);
    color: white;
    text-align: center;
    padding: 20px; 
}
.copyright {
    font-size: 0.9em;
    color: #99a9b9;
}
/* === END FOOTER STYLES === */


/* === FEEDBACK SECTION STYLES (DIBIARKAN SAMA) === */
.feedback-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px;
  margin: 40px 0;
  border-radius: 15px;
  color: white;
}

.feedback-container {
  max-width: 600px;
  margin: 0 auto;
}

.feedback-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: white;
}

.feedback-subtitle {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.feedback-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating-wrapper {
  margin-bottom: 30px;
}

.rating-wrapper label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

#rating {
  font-size: 3rem;
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  justify-content: center;
}

.star {
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.star:hover {
  color: #ffb800;
  transform: scale(1.2) rotate(15deg);
  filter: drop-shadow(0 0 8px #ffb800);
}

.star.active {
  color: #ffd700;
  transform: scale(1.3);
  filter: drop-shadow(0 0 12px #ffd700);
  animation: bounce 0.4s ease;
}

@keyframes bounce {
  0%, 100% { transform: scale(1.3); }
  50% { transform: scale(1.5); }
}

.rating-text {
  text-align: center;
  font-size: 1rem;
  opacity: 0.95;
}

.comment-wrapper {
  margin-bottom: 25px;
}

.comment-wrapper label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

#comment {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  font-family: 'Poppins', sans-serif;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  resize: vertical;
  transition: all 0.3s ease;
  font-size: 1rem;
}

#comment::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

#comment:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffd700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

#char-count {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 5px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 14px 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  color: #333;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

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

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

/* Output Message */
#output {
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border-left: 4px solid #ffd700;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  min-height: 30px;
  display: none;
}

#output.show {
  display: block;
  animation: slideInUp 0.4s ease;
}

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

/* Reviews Section */
.reviews-section {
  padding: 60px 20px;
  background: #f9f9f9;
  margin-top: 40px;
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.reviews-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reviews-frame {
  border-radius: 8px;
}
/* === END FEEDBACK SECTION STYLES === */


/* === MEDIA QUERIES FOR RESPONSIVENESS === */

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3.5em;
    }
    .hero-section p {
        font-size: 1.4em;
    }
    
    /* Contact Section */
    .location-contact-grid {
        flex-direction: column; 
    }
    .details-side {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding-bottom: 30px;
        text-align: center;
        margin-bottom: 20px;
    }
    .contact-methods p {
        text-align: left;
        max-width: 300px;
        margin: 15px auto;
    }
    .map-side {
        padding: 10px;
    }
    .map-side h3 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    
    /* Navbar/Navigation */
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
    }
    .logo {
        margin-right: 0;
        font-size: 1.5em;
    }
    .logoperusahaan {
        width: 50px; 
    }
    
    /* Tampilkan tombol toggle */
    .menu-toggle {
        display: block;
        color: var(--color-primary);
    }
    .navbar.scrolled .menu-toggle {
        color: var(--color-light);
    }
    
    /* Styling Navigasi Saat Dibuka */
    .navbar nav {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        height: 0; 
        overflow: hidden;
        background-color: var(--color-dark);
        transition: height 0.4s ease-in-out;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
    }

    .navbar nav.active {
        height: 250px;
    }

    .navbar ul {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }

    .navbar ul li a {
        color: white; 
        display: block;
        padding: 12px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .navbar ul li a:hover {
        background-color: var(--color-secondary);
        color: white !important;
    }
    .cta-button {
        margin: 10px auto; 
        display: block;
        width: 60%;
    }
    
    /* Hero Section */
    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section p {
        font-size: 1.1em;
    }
    .hero-cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .btn-main {
        margin-bottom: 20px;
    }
    
    /* Tata Letak Utama */
    h2 {
        font-size: 2em;
    }
    .layanan-grid {
        grid-template-columns: 1fr; 
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    
    /* Hero Section */
    .hero-section {
        padding: 100px 20px; 
        min-height: 70vh;
    }
    .hero-section h1 {
        font-size: 2em;
    }
    .hero-section p {
        font-size: 1em;
    }
    .btn-main {
        font-size: 1em;
    }
    
    /* Header */
    .logo {
        font-size: 1.3em;
    }
    .navbar nav.active {
        height: 230px;
    }
    
    /* Contact Section */
    .big-icon {
        font-size: 2.5em;
    }
}