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

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --text-color: #374151;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --primary-gradient: linear-gradient(90deg, #253767 0%, #164C96 100%);
}

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

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

/* Navbar */
.navbar {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    margin-top: 12px;
    background: var(--primary-gradient);
    border-radius: 999px;
    box-shadow: var(--shadow-lg);
}

.logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: none;
}

.btn-white {
    background: white;
    color: var(--dark-color);
    border: 1px solid #e5e7eb;
}

.btn-dark {
    background: rgba(0, 0, 0, 0.6);
    color: white;
}

.btn-light {
    background: #f3f4f6;
    color: var(--dark-color);
}

.btn-pill:hover {
    filter: brightness(0.98);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(31, 41, 55, 0.2);
}

.btn-primary:hover {
    background: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(31, 41, 55, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--dark-color);
    padding: 12px 24px;
    border: 2px solid var(--dark-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--dark-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--dark-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

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

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

/* Hero Section */
.hero {
    margin-top: 130px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.hero::before {
    display: none;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1160px;
    height: 650px;
    display: flex;
    align-items: center;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(225deg, rgba(4, 37, 103, 0.95) 0%, rgba(30, 90, 150, 0.6) 80%, rgba(30, 90, 150, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}


.hero-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    position: relative;
    z-index: 4;
    padding: 10px 0 150px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
}

.hero-text {
    flex: 0 0 50%;
    color: white;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    display: block;
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
    max-width: 100%;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    border: 2px solid transparent;
    /* background-image: linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)), linear-gradient(135deg, #1e5a96, #0ea5e9); */
    background-origin: border-box;
    background-clip: padding-box, border-box;
    backdrop-filter: blur(10px);
    aspect-ratio: 1 / 1;
}

.hero-feature-item i {
    font-size: 24px;
    color: #ffffff;
    min-width: 24px;
    flex-shrink: 0;
}

.hero-feature-icon {
    width: 54px;
    height: 54px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero-feature-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.hero-image-person {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    height: 90%;
}

.hero-image-person img {
    max-width: none;
    width: auto;
    height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-card {
    display: none;
}

.hero-media {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
    padding-bottom: 30px;
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

.stat-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
}

.stat-item p {
    font-size: 14px;
    color: var(--text-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    display: none !important;
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Kata Mereka Section */
/* Pain Section */
.pain-section {
    padding: 80px 0;
    background: white;
}

.pain-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pain-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.pain-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.pain-icon.has-image {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.pain-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.pain-card:hover .pain-icon {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pain-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.3;
}

.pain-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.kata-mereka h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 50px;
    font-size: 18px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.4s;
}

.testimonial-card:nth-child(5) {
    animation-delay: 0.5s;
}

.testimonial-card:nth-child(6) {
    animation-delay: 0.6s;
}

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

.testimonial-card .icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

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

.testimonial-card p {
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Countries Section */
/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: var(--light-color);
}

.solution-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
}

.countries-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.country-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    animation: scaleIn 0.5s ease-out forwards;
}

.country-card:nth-child(1) {
    animation-delay: 0.05s;
}

.country-card:nth-child(2) {
    animation-delay: 0.1s;
}

.country-card:nth-child(3) {
    animation-delay: 0.15s;
}

.country-card:nth-child(4) {
    animation-delay: 0.2s;
}

.country-card:nth-child(5) {
    animation-delay: 0.25s;
}

.country-card:nth-child(6) {
    animation-delay: 0.3s;
}

.country-card:nth-child(7) {
    animation-delay: 0.35s;
}

.country-card:nth-child(8) {
    animation-delay: 0.4s;
}

.country-card:nth-child(9) {
    animation-delay: 0.45s;
}

.country-card:nth-child(10) {
    animation-delay: 0.5s;
}

.country-card:nth-child(11) {
    animation-delay: 0.55s;
}

.country-card:nth-child(12) {
    animation-delay: 0.6s;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.country-flag {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 32px;
    z-index: 2;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.country-card:hover .country-flag {
    transform: scale(1.1) rotate(10deg);
}

.country-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.country-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px 20px 20px;
    color: white;
}

.country-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.btn-small {
    background: white;
    color: var(--primary-color);
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* Other Countries Section */
.other-countries {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), #1557b0);
    text-align: center;
}

.other-countries h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Why Choose Section */
/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--light-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

/* Reuse why-card styling for pain cards */
.why-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.why-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Visa Destinations Section */
.visa-destinations {
    padding: 80px 0;
    background: var(--light-color);
}

.visa-destinations h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-8px);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
}

.destination-flag {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.destination-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.btn-destination {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: white;
    color: var(--dark-color);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-destination:hover {
    background: var(--primary-gradient);
    color: white;
}

.destinations-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
}

.btn-see-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 41, 55, 0.4);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 60px;
}

.timeline-wrapper {
    max-width: 1100px;
    margin: 0 auto 50px;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 20px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color) 0%, var(--secondary-color) 100%);
    z-index: 0;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(52, 168, 83, 0.3);
}

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

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.how-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
}

.btn-dark-rounded {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-dark-rounded:hover {
    background: #111827;
    transform: translateY(-2px);
}

.btn-white-rounded {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    color: var(--dark-color);
    border: 2px solid #e5e7eb;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white-rounded:hover {
    border-color: var(--dark-color);
    transform: translateY(-2px);
}

/* Featured Section */
.featured {
    padding: 80px 0;
    background: white;
}

.featured h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-item {
    text-align: center;
    padding: 40px;
    background: var(--light-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.featured-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.featured-item h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.featured-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Trust Badges Section */
.trust-badges {
    padding: 60px 0;
    background: var(--light-color);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

.badge-item p {
    color: var(--text-color);
    font-weight: 500;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: white;
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-color);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #1557b0);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Closing Section */
.closing-section {
    position: relative !important;
    width: calc(100% - 80px) !important;
    max-width: 1200px !important;
    margin: 60px auto !important;
    min-height: 400px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 40px !important;
    border-radius: 20px !important;
}

.closing-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    border-radius: 20px !important;
}

.closing-background img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 20px !important;
}

.closing-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, rgba(3, 105, 161, 0.95) 0%, rgba(3, 105, 161, 0.85) 30%, rgba(3, 105, 161, 0.6) 50%, rgba(3, 105, 161, 0.2) 75%, transparent 100%) !important;
    z-index: 2 !important;
    border-radius: 20px !important;
}

.closing-content {
    position: relative !important;
    z-index: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    max-width: 800px !important;
    color: white !important;
    padding: 0 !important;
}

.closing-tagline {
    display: inline-block !important;
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin: 0 0 20px 0 !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.closing-content h2 {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin: 0 0 30px 0 !important;
    line-height: 1.2 !important;
}

.closing-buttons {
    display: flex !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.btn-booking,
.btn-konsultasi {
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: none !important;
    font-size: 16px !important;
}

.btn-booking {
    background: var(--primary-gradient) !important;
    color: white !important;
}

.btn-booking:hover {
    background: #111827 !important;
    transform: translateY(-2px) !important;
}

.btn-konsultasi {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
}

.btn-konsultasi:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px) !important;
}

.closing-image {
    position: relative !important;
    overflow: hidden !important;
    order: 1 !important;
}

.closing-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    -webkit-mask-image: linear-gradient(to left,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0.7) 70%,
            rgba(0, 0, 0, 0.4) 85%,
            rgba(0, 0, 0, 0) 100%) !important;
    mask-image: linear-gradient(to left,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0.7) 70%,
            rgba(0, 0, 0, 0.4) 85%,
            rgba(0, 0, 0, 0) 100%) !important;
}

.closing-tagline {
    background: rgba(15, 23, 42, 0.85) !important;
    color: white !important;
    padding: 8px 24px !important;
    border-radius: 50px !important;
    display: inline-block !important;
    font-size: 32px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    width: fit-content !important;
    backdrop-filter: blur(10px) !important;
    font-style: italic;
}

.closing-tagline p {
    margin: 0 !important;
    font-style: italic !important;
    font-weight: 500 !important;
}

.closing-section h2,
.closing-wrapper h2,
.closing-section .closing-title {
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
}

.closing-section h3,
.closing-wrapper h3,
.closing-section .closing-subtitle {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: white !important;
    margin: 0 !important;
    font-style: italic !important;
    letter-spacing: 0.5px !important;
    line-height: 1 !important;
}

.closing-content .cta-buttons {
    gap: 16px !important;
    justify-content: flex-start !important;
    margin-top: 4px !important;
    margin-top: 20px !important;
}

/* Footer */
.footer {
    background: var(--primary-gradient);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-about p {
    line-height: 1.6;
    color: white;
    opacity: 0.95;
    font-size: 15px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.9;
    font-size: 15px;
}

.footer-column ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact .contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.footer-contact .contact-list li i {
    font-size: 16px;
    margin-top: 2px;
    min-width: 20px;
}

.footer-contact .contact-list li span,
.footer-contact .contact-list li a {
    color: white;
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.5;
}

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

.footer-bottom p {
    color: white;
    opacity: 0.9;
    margin: 0;
}

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

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }

    .hero-image-person {
        max-width: 35%;
    }

    .hero-image-person img {
        max-width: 300px;
    }

    .hero-container {
        height: 550px;
    }

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

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

    .hero-stats {
        flex-wrap: wrap;
    }

    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-radius: 16px;
    }

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

    .nav-menu a {
        color: #f8fafc;
    }

    .nav-menu a::after {
        background: #ffffff;
    }

    .nav-menu a:hover {
        color: var(--primary-color);
    }

    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        background: #f8fafc;
    }

    .hero {
        min-height: auto;
        margin-top: 120px;
        padding: 0 20px 20px;
    }

    .hero-container {
        height: auto;
        min-height: 520px;
        padding: 24px 20px 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        justify-content: space-between;
    }

    .hero-content-wrapper {
        flex-direction: column;
        padding: 0;
        gap: 12px;
    }

    .hero-text {
        flex: 1;
        padding-left: 0;
        text-align: left;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 14px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-image-person {
        position: static;
        width: 100%;
        max-width: 320px;
        height: auto;
        align-self: flex-end;
        margin-top: auto;
        margin-bottom: 0;
    }

    .hero-image-person img {
        width: 100%;
        height: auto;
        max-height: none;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .hero-feature-item {
        padding: 12px 14px;
        font-size: 13px;
        aspect-ratio: auto;
        width: 100%;
    }

    .hero-feature-item i {
        font-size: 18px;
    }

    .hero-feature-item h4 {
        font-size: 12px;
    }

    .hero-media img {
        height: 55vh;
    }

    .hero-overlay {
        padding: 24px;
    }

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

    .closing-section {
        min-height: 300px !important;
        padding: 40px 20px !important;
        width: calc(100% - 40px) !important;
        margin: 30px 20px !important;
        border-radius: 16px !important;
    }

    .closing-background {
        border-radius: 16px !important;
    }

    .closing-background img {
        border-radius: 16px !important;
    }

    .closing-overlay {
        border-radius: 16px !important;
    }

    .closing-content {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .closing-tagline {
        font-size: 16px !important;
        padding: 10px 20px !important;
        margin: 0 0 15px 0 !important;
    }

    .closing-content h2 {
        font-size: 2.2rem !important;
        margin-bottom: 20px !important;
    }

    .closing-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }

    .btn-booking,
    .btn-konsultasi {
        width: 100% !important;
        justify-content: center !important;
    }

    .testimonials-grid,
    .why-grid,
    .featured-grid,
    .badges-grid,
    .faq-container,
    .pain-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

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

    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .how-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .how-cta-buttons a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Specificity overrides to ensure new layout applies */
.hero .hero-card,
.hero .hero-media,
.hero .hero-overlay {
    display: block;
}

.hero .hero-image {
    display: none !important;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-container {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f3f4f6;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    background: var(--dark-color);
    color: white;
}

.modal-content {
    padding: 40px;
}

.modal-flag {
    font-size: 48px;
    margin-bottom: 16px;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.modal-pricing {
    margin-bottom: 24px;
}

.modal-pricing h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

#modalPriceList {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 1px solid #dbeafe;
    transition: all 0.3s ease;
}

.price-option:hover {
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.price-type {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.price-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
}

.modal-description {
    margin-bottom: 24px;
}

.modal-description h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.modal-description p {
    color: #6b7280;
    line-height: 1.6;
}

.modal-disclaimer {
    margin-bottom: 24px;
    padding: 16px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
}

.modal-disclaimer h3 {
    font-size: 16px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 8px;
}

.modal-disclaimer p {
    color: #92400e;
    font-size: 14px;
    line-height: 1.6;
}

.modal-features {
    margin-bottom: 32px;
}

.modal-features h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-features li {
    padding: 10px 0;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-modal-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-modal-primary:hover {
    background: #1557b0;
    transform: translateY(-2px);
}

.btn-modal-secondary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: white;
    color: var(--dark-color);
    border: 2px solid #e5e7eb;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-modal-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Scroll Animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Loading Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

/* Floating Chat Button */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #1e9a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-chat.footer-visible {
    bottom: 90px;
}

.floating-chat:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-chat .chat-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.floating-chat:hover .chat-tooltip {
    opacity: 1;
}

@media (max-width: 768px) {
    .floating-chat {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .floating-chat .chat-tooltip {
        right: 60px;
        font-size: 11px;
    }
}