/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a7e3e;
    --secondary-color: #f39c12;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #6c757d;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --gradient-primary: linear-gradient(135deg, #0a7e3e 0%, #0d9c4d 100%);
    --gradient-gold: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--light-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.btn-light {
    background: var(--light-color);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--light-gray);
}

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

.btn-outline:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: var(--light-color);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--light-color);
    text-decoration: none;
}

.logo:hover {
    opacity: 0.9;
}

.header.scrolled .logo {
    color: var(--primary-color);
}

.logo i {
    font-size: 32px;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--light-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.header.scrolled .nav-link {
    color: var(--dark-color);
}

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

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-color);
    transition: all 0.3s ease;
}

.header.scrolled .nav-toggle span {
    background: var(--dark-color);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/bg.jpeg') center/cover;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 126, 62, 0.8) 0%, rgba(13, 156, 77, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--light-color);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-badge i {
    color: var(--secondary-color);
    font-size: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.stat-item i {
    color: var(--secondary-color);
}

.stat-item p {
    font-size: 14px;
    opacity: 0.9;
}

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

.hero-scroll a {
    color: var(--light-color);
    font-size: 32px;
}

/* ===== GREETING SECTION ===== */
.greeting {
    padding: 80px 0;
    
}

.greeting-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.greeting-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.greeting-stats {
    margin: 30px 0;
}

.stats-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.greeting-action {
    margin-top: 30px;
}

.greeting-action .btn {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.section-more {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
}

/* ===== KEUNGGULAN SECTION ===== */
.keunggulan {
    padding: 80px 0;
    background: var(--light-color);
}

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

.keunggulan-card {
    background: var(--light-color);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.keunggulan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.keunggulan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--light-color);
}

.keunggulan-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.keunggulan-card p {
    font-size: 15px;
    color: var(--gray-color);
    line-height: 1.6;
}

/* ===== PAKET SECTION ===== */
.paket {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.paket-card {
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.paket-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.paket-card.featured {
    border: 3px solid var(--secondary-color);
}

.paket-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    z-index: 1;
}

.paket-header {
    position: relative;
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: 40px 30px;
    text-align: center;
    overflow: hidden;
}

.paket-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://storage.googleapis.com/muslimpergi/uploads/article/pict/23818/ARTIKEL_HAJI_UMROH.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.paket-header > * {
    position: relative;
    z-index: 1;
}

.paket-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.paket-header h3 {
    font-size: 26px;
    font-weight: 700;
}

.paket-body {
    padding: 40px 30px;
}

.paket-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.price-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-person {
    font-size: 14px;
    color: var(--gray-color);
}

.paket-features {
    margin-bottom: 30px;
}

.paket-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
}

.paket-features i {
    color: var(--success-color);
    font-size: 18px;
}

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

/* ===== JADWAL SECTION ===== */
.jadwal {
    padding: 80px 0;
    background: var(--light-color);
}

.jadwal-cta {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: var(--light-color);
}

.jadwal-content i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.jadwal-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.jadwal-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== GALERI SECTION ===== */
.galeri {
    padding: 80px 0;
    background: var(--light-gray);
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.galeri-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.galeri-image {
    position: relative;
    height: 100%;
}

.galeri-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.galeri-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 126, 62, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeri-item:hover .galeri-overlay {
    opacity: 1;
}

.galeri-overlay i {
    color: var(--light-color);
    font-size: 48px;
}

/* ===== MUTAWWIF SECTION ===== */
.mutawwif {
    padding: 80px 0;
    background: var(--light-gray);
}

.mutawwif .section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
}

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

.mutawwif-card {
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.mutawwif-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mutawwif-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.mutawwif-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mutawwif-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.mutawwif-info {
    padding: 25px 20px;
}

.mutawwif-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.mutawwif-jabatan {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}

/* ===== TENTANG SECTION ===== */
.tentang {
    padding: 80px 0;
    background: var(--light-color);
}

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

.tentang-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.tentang-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 15px;
}

.feature-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

.tentang-image {
    position: relative;
}

.tentang-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.tentang-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--light-color);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.tentang-badge i {
    font-size: 48px;
    color: var(--primary-color);
}

.tentang-badge h4 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.tentang-badge p {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-item {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.video-item:hover .video-play {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h4 {
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
}

/* ===== PARTNERS SECTION ===== */
.partners {
    padding: 80px 0;
    background: var(--light-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.partner-item:hover {
    background: var(--light-color);
    box-shadow: var(--shadow-md);
}

.partner-clickable {
    cursor: pointer;
}

.partner-clickable:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-certificate-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--light-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    width: 100%;
}

.partner-logo i {
    font-size: 48px;
    color: var(--primary-color);
}

.partner-logo span {
    font-weight: 600;
    font-size: 14px;
}

.partner-logo-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px 10px;
    width: 100%;
}

.partner-logo-img img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo-img img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-name {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-color);
    padding: 10px 15px 15px;
    margin-top: -10px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--light-color);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    padding: 80px 0;
    background: var(--light-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-icon {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-color);
    flex: 1;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(10, 126, 62, 0.1);
}

.testimonial-author .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 20px;
    flex-shrink: 0;
}

.testimonial-author .author-info h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
}

.testimonial-author .author-info p {
    margin: 0;
    font-size: 13px;
    color: var(--gray-color);
}

/* ===== KONTAK SECTION ===== */
.kontak {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.kontak-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: var(--light-color);
}

.info-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 15px;
    color: var(--gray-color);
    line-height: 1.6;
}

.kontak-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.kontak-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Map Container */
.map-container {
    margin-top: 20px;
}

.map-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-wrapper iframe {
    width: 100%;
    height: 250px;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%);
}

.map-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
}

.map-overlay .btn {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.map-overlay .btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--secondary-color);
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-col ul li i {
    color: var(--success-color);
    margin-right: 8px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--light-color);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* Social Media Float Buttons */
.social-float {
    position: fixed;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--light-color);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
}

.social-float:hover {
    transform: scale(1.1);
}

.facebook-float {
    bottom: 30px;
    background: #1877F2;
}

.facebook-float:hover {
    background: #145dbf;
}

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

.instagram-float:hover {
    background: linear-gradient(45deg, #d17a29 0%, #c55530 25%, #b81f38 50%, #a81f5a 75%, #9a1575 100%);
}

.youtube-float {
    bottom: 160px;
    background: #FF0000;
}

.youtube-float:hover {
    background: #CC0000;
}

.threads-float {
    bottom: 290px;
    background: #000000;
}

.threads-float:hover {
    background: #333333;
}

.tiktok-float {
    bottom: 225px;
    background: #000000;
}

.tiktok-float:hover {
    background: #333333;
}

.scroll-top {
    position: fixed;
    bottom: 355px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--light-color);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

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

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

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .tentang-wrapper,
    .kontak-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper iframe {
        height: 200px;
    }
    
    .map-overlay {
        bottom: 10px;
        right: 10px;
    }
    
    .map-overlay .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--light-color);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: var(--dark-color);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .btn-whatsapp {
        padding: 10px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        justify-content: center;
    }
    
    .btn-whatsapp .whatsapp-text {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-item h3 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .paket-grid,
    .keunggulan-grid,
    .galeri-grid,
    .video-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .social-float {
        width: 45px;
        height: 45px;
        font-size: 20px;
        right: 20px;
    }
    
    .facebook-float {
        bottom: 20px;
    }
    
    .instagram-float {
        bottom: 85px;
    }
    
    .youtube-float {
        bottom: 150px;
    }
    
    .threads-float {
        bottom: 280px;
    }
    
    .tiktok-float {
        bottom: 215px;
    }
    
    .scroll-top {
        bottom: 345px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .paket-card,
    .keunggulan-card {
        padding: 30px 20px;
    }
}

/* ===== PACKAGE SWIPER STYLES ===== */
.packageSwiper {
    width: 100%;
    padding: 50px 20px 80px;
    margin: 0 auto;
    max-width: 1400px;
}

.packageSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.package-poster-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.package-poster-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
}

.package-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-poster-image {
    position: relative;
    height: 450px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.package-poster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.package-poster-card:hover .package-poster-image img {
    transform: scale(1.05);
}

.package-no-image {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.package-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px;
    color: white;
}

.package-price {
    text-align: center;
}

.price-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 3px;
}

.price-unit {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.package-poster-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.package-poster-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
}

.btn-detail {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 126, 62, 0.3);
    color: white;
    text-decoration: none;
}

/* Swiper Navigation Buttons */
.packageSwiper .swiper-button-next,
.packageSwiper .swiper-button-prev {
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.packageSwiper .swiper-button-next:after,
.packageSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

.packageSwiper .swiper-button-next:hover,
.packageSwiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
}

/* Swiper Pagination */
.packageSwiper .swiper-pagination {
    bottom: 20px;
}

.packageSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.packageSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Slide Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .packageSwiper {
        padding: 30px 10px 60px;
    }
    
    .packageSwiper .swiper-button-next,
    .packageSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .packageSwiper .swiper-button-next:after,
    .packageSwiper .swiper-button-prev:after {
        font-size: 16px;
    }
    
    /* Hide desktop slides, show mobile slides */
    .desktop-slides {
        display: none;
    }
    
    .mobile-slides {
        display: block;
    }
    
    .package-slide-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .package-poster-card {
        min-height: 350px;
    }
    
    .package-poster-image {
        height: 220px;
    }
    
    .package-popular-badge {
        top: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .package-category-badge {
        top: 10px;
        left: 10px;
        padding: 5px 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .packageSwiper {
        padding: 20px 5px 50px;
    }
}

/* ===== CERTIFICATE MODAL ===== */
.certificate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.certificate-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10001;
    background: white;
    padding: 30px;
    border-radius: 15px;
    animation: popupFadeIn 0.3s ease-out;
}

.certificate-modal-content h4 {
    margin: 0 0 20px 0;
    color: var(--primary-color);
    font-size: 24px;
    text-align: center;
}

.certificate-modal-content img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.certificate-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border: 3px solid white;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}

.certificate-modal-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg);
}

/* ===== POPUP BANNER MODAL ===== */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10001;
    animation: popupFadeIn 0.3s ease-out;
}

.popup-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border: 3px solid white;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.popup-close:hover {
    background: #d32f2f;
    transform: rotate(90deg);
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .popup-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .popup-close {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}
