/* ===================================================================
   SULAEMAN TECHNICAL - MODERN ENHANCED STYLESHEET
   VERSION: 2.0 (Modern & Interactive)
   =================================================================== */

/* --------------------------------- */
/* 1. GLOBAL VARIABLES & BASE STYLES */
/* --------------------------------- */

:root {
    /* Colors */
    --primary-color: #FF6600;
    --primary-color-dark: #E65C00;
    --secondary-color: #007BFF;
    --text-color: #1a1a1a;
    --text-color-light: #4a4a4a;
    --white-color: #FFFFFF;
    --light-gray-bg: #f8f9fa;
    --border-color: #e9ecef;
    --dark-overlay: rgba(0, 0, 0, 0.65);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Layout */
    --header-height: 80px;
    --container-width: 1200px;
    --container-padding: 20px;

    /* Effects */
    --border-radius: 12px;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--white-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-color-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 6rem 0;
    position: relative;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --------------------------------- */
/* 2. ANIMATIONS & UTILITIES         */
/* --------------------------------- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
}
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(-5px, 5px); }
100% { transform: scale(1) translate(0, 0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.animated {
opacity: 1;
    transform: translateY(0);
}

/* --------------------------------- */
/* 3. HEADER & FOOTER                */
/* --------------------------------- */

header {
    background-color: var(--white-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

header.scrolled {
    height: 70px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.logo img {
    height: 42px;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 36px;
}

.logo strong {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

header nav ul {
    display: flex;
    gap: 35px;
}

header nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    font-size: 1rem;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-dark));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

header nav a:hover::after,
header nav a.active::after {
    width: 100%;
}

header nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

footer {
    background: linear-gradient(135deg, #232526, #414345); /* WARNA BARU: Gradien abu-abu gelap yang elegan */
    color: #e0e0e0; /* Teks lebih terang agar mudah dibaca */
    padding: 5rem 0 2rem;
    position: relative;
    font-size: 0.95rem;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-dark));
}

footer .container {
    display: flex; /* LAYOUT BARU: Menggunakan flexbox untuk tata letak horizontal */
    justify-content: space-between; /* Memberi jarak antar kolom */
    flex-wrap: wrap; /* Memastikan responsif di layar kecil */
    gap: 40px; /* Jarak antar kolom jika wrap */
}

footer .footer-column {
    flex: 1; /* Setiap kolom akan mencoba mengambil ruang yang sama */
    min-width: 250px; /* Lebar minimum sebelum wrap */
}

footer h4 {
    color: var(--white-color);
    margin-bottom: 1.8rem;
    font-size: 1.3rem;
font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}


footer p, footer a, footer li {
    color: #c5c5c5; /* Warna teks yang lebih lembut */
    line-height: 1.8;
}

footer a:hover {
    color: var(--primary-color);
    padding-left: 5px; /* Efek hover halus */
}

.footer-about .logo {
    margin-bottom: 1rem;
}

.footer-about .logo strong {
    color: var(--white-color);
}

.footer-links ul {
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.2rem;
}

.footer-contact-info img {
    height: 18px;
    margin-top: 6px;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid #555;
    font-size: 0.9rem;
    color: #999;
}

/* --------------------------------- */
/* 4. REUSABLE COMPONENTS            */
/* --------------------------------- */

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: var(--white-color);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.cta-button-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* --------------------------------- */
/* 5. PAGE: HOME (index.php)         */
/* --------------------------------- */

/* --- Hero Section --- */
.hero-section {
    background-image: url('../images/TAMPILAN.jfif'); /* Mengembalikan gambar banner ke semula */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white-color);
    padding: 10rem 0;
    display: flex;
    align-items: center;
    text-align: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    /* Seluruh blok ini akan saya hapus untuk memastikan tidak ada overlay */
}

.hero-section .container {
    position: relative;
    z-index: 2; /* z-index ini tidak lagi relevan tanpa overlay, tapi tidak berbahaya */
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* Bayangan teks tetap ada untuk keterbacaan */
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8); /* Bayangan teks tetap ada untuk keterbacaan */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* --- Services Overview --- */
.services-overview {
    background-color: var(--light-gray-bg);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card-simple {
    background: var(--white-color);
    padding: 2.5rem;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card-simple:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-card-simple img {
    height: 60px;
    margin: 0 auto 1.5rem;
}

.service-card-simple h3 {
    margin-bottom: 0.5rem;
}

/* --- Why Us Section --- */
.why-us-modern {
    padding-bottom: 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-us-card {
    text-align: center;
    padding: 2rem;
}

.why-us-card .card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.why-us-card .card-icon img {
    height: 40px;
}

/* --- Testimonials Grid --- */
.testimonials-grid {
    background-color: var(--light-gray-bg);
}

.testimonial-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card-grid {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    border-left: 5px solid var(--primary-color);
}

.testimonial-card-grid .quote-icon {
    width: 30px;
    height: 30px;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-card-grid p {
    flex-grow: 1;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--border-color);
}

.author-info strong {
    display: block;
    color: var(--text-color);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-color-light);
}

/* --- Work Process Section --- */
.work-process-section {
    text-align: center;
    background: linear-gradient(135deg, #232526, #414345);
    color: var(--white-color);
}

.work-process-section h2 {
    color: var(--white-color);
}

.work-process-section p {
    color: #c5c5c5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Services Section --- */
.services-overview-section {
    background: linear-gradient(180deg, var(--light-gray-bg) 0%, var(--white-color) 100%);
    position: relative;
}

.services-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: var(--white-color);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.card .card-icon {
    margin-bottom: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    border-radius: 50%;
    transition: var(--transition);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card .card-icon img {
    height: 45px;
    filter: brightness(0) invert(1);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.card p {
    color: var(--text-color-light);
    line-height: 1.8;
}

/* --- Why Us Section --- */
.why-us-section {
    background: var(--white-color);
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: start;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 2rem;
    background: var(--light-gray-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: var(--white-color);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us-icon img {
    height: 30px;
    filter: brightness(0) invert(1);
}

.why-us-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why-us-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Testimonial Section --- */
.testimonials-modern {
    background: linear-gradient(135deg, var(--light-gray-bg), #e9ecef);
    position: relative;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
}

.testimonial-card-modern {
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.testimonial-card-modern::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: var(--font-secondary);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info strong {
    display: block;
    color: var(--text-color);
    font-size: 1.1rem;
}
.testimonial-info span {
    color: var(--text-color-light);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: var(--white-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--white-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* --------------------------------- */
/* 6. RESPONSIVE DESIGN              */
/* --------------------------------- */

@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    section { padding: 5rem 0; }

    .hero-content h1 { font-size: 3.2rem; }
    .hero-content p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    :root { --header-height: 70px; }

    header .container {
        flex-direction: column;
        gap: 15px;
        padding: 15px var(--container-padding);
    }
    
    header {
        height: auto;
        position: fixed;
    }

    header nav ul {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    header nav a {
        font-size: 0.9rem;
    }

    .hero-section {
        min-height: calc(100vh - 100px);
        text-align: center;
    }

    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1rem; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    footer .container {
        text-align: center;
        gap: 30px;
    }
    
    .footer-contact-info li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero-content h1 { font-size: 2rem; }
    
    .testimonial-card-modern {
padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* --------------------------------- */
/* 7. PAGE: LAYANAN (layanan.php)    */
/* --------------------------------- */

.services-page-section {
    background-color: var(--light-gray-bg);
    padding-top: 0;
}

.service-category {
    margin-bottom: 5rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
    display: inline-block;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    transform: scale(1.1);
}

.service-card-icon img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-color-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Penyesuaian untuk .page-header jika belum ada */
.page-header {
    padding: 5rem 0;
    background-color: var(--white-color);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color-light);
}
/* =================================
   Pricing Page Styles
   ================================= */

.pricing-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.pricing-toggle-wrapper {
/* === Testimonials Grid Section === */
.testimonials-grid {
    padding: 80px 0;
    background-color: #ffffff; /* Changed to white for a cleaner look */
}

.testimonial-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card-grid {
    background-color: #f9f9f9; /* Light gray background for the card */
    border-radius: 12px;
    padding: 40px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.testimonial-card-grid:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-card-grid .quote-icon {
    position: absolute;
    top: 15px;
    left: 25px;
    width: 40px;
    height: auto;
    opacity: 0.15;
}

.testimonial-card-grid p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-top: 15px;
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonial-author .author-info strong {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
}

.testimonial-author .author-info span {
    font-size: 0.9rem;
    color: #777;
}

/* Ensure the old testimonials and the rule to hide the grid are removed */
.testimonials-modern, .testimonial-carousel-wrapper, .testimonials-grid[style*="display: none"] {
    display: none !important;
}

}
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;

/* --------------------------------- */
/* 12. GALLERY PAGE                  */
/* --------------------------------- */

.gallery-section {
    background-color: var(--light-gray-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white-color);
    padding: 3rem 1.5rem 1.5rem;
    transition: var(--transition);
    opacity: 1;
}

.gallery-item-text h3 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.gallery-item-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.gallery-note {
    text-align: center;
    font-style: italic;
    color: var(--text-color-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: #bbb;
}

#lightbox-caption {
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    margin-top: 15px;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 15px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--secondary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card, .price-card-small {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-card.popular {
    position: relative;
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 10px rgba(255, 107, 59, 0.3);
}

.price-card .card-header {
    text-align: center;
    margin-bottom: 20px;
}

.price-card .card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.price-card .card-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.price-card .card-price {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.price-card .card-price span {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 5px;
}

.price-card .card-price .price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    display: block;
}

.price-card .card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-card .card-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.price-card .card-features li::before {
    content: '✔';
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 10px;
}

.price-card .cta-button {
    margin-top: auto;
}

.price-card.popular .cta-button {
    background: var(--primary-gradient);
    color: white;
}

.price-card-small {
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.card-small-icon {
    background-color: rgba(255, 107, 59, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-small-icon img {
    width: 32px;
    height: 32px;
}

.card-small-content {
    flex-grow: 1;
}

.card-small-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.card-small-content p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.card-small-action {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.card-small-action:hover {
    background-color: var(--secondary-color);
}

.price-list-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-light);
    font-style: italic;
}

/* =================================
   FAQ Section Styles
   ================================= */

.faq-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 10px 20px 10px;
    color: var(--text-color);
    line-height: 1.7;
}

/* Price Accordion */
.price-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.price-accordion-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.price-accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}

.price-accordion-header {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.price-accordion-header .header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-accordion-header .header-content img {
    width: 40px;
    height: 40px;
}

.price-accordion-header .header-content span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.price-accordion-header .accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.price-accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.price-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.price-details {
    padding: 0 25px 25px 25px;
    border-top: 1px solid #f0f0f0;
    margin: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.price-details p {
    margin: 0;
    font-size: 1.1rem;
    color: #555;
}

.price-details p strong {
    color: #333;
}

.price-details p span {
    color: #777;
    font-size: 0.9rem;
}

.cta-button-small {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.cta-button-small:hover {
    background-color: #1a9a7a;
}

/* Maintenance Package Redesign */
.maintenance-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.package-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
}

.package-card .popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.package-header {
    text-align: center;
    margin-bottom: 20px;
}

.package-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.package-header p {
    color: #777;
    font-size: 0.95rem;
}

.package-price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
}

.package-features li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.package-features li i.fa-times-circle {
    color: #ccc;
}

.package-card .cta-button {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Hide old pricing styles */
.price-grid, .price-card-small {
    display: none;
}

}
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 15px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
background-color: var(--primary-color);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--secondary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card, .price-card-small {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-card.popular {
    position: relative;
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 10px rgba(255, 107, 59, 0.3);
}

.price-card .card-header {
    text-align: center;
    margin-bottom: 20px;
}

.price-card .card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.price-card .card-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.price-card .card-price {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.price-card .card-price span {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 5px;
}

.price-card .card-price .price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    display: block;
}

.price-card .card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-card .card-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.price-card .card-features li::before {
    content: '✔';
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 10px;
}

.price-card .cta-button {
    margin-top: auto;
}

.price-card.popular .cta-button {
    background: var(--primary-gradient);
    color: white;
}

.price-card-small {
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.card-small-icon {
    background-color: rgba(255, 107, 59, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-small-icon img {
    width: 32px;
    height: 32px;
}

.card-small-content {
    flex-grow: 1;
}

.card-small-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.card-small-content p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.card-small-action {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.card-small-action:hover {
    background-color: var(--secondary-color);
}

.price-list-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-light);
    font-style: italic;
}

/* =================================
   About Us Page Styles
   ================================= */

.about-story-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-text .section-tag {
    display: inline-block;
    background-color: rgba(255, 107, 59, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.story-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.our-values-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: var(--white-color);
    padding: 40px 30px;

/* Hide Old Floating Button */
.whatsapp-float {
    display: none !important;
}

/* New Interactive Floating WhatsApp Button */
.whatsapp-float-new {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    overflow: hidden; /* Important for the text reveal */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-overlay); /* Nilai ini sekarang lebih terang */
    z-index: 1;
}

.whatsapp-float-new .fa-whatsapp {
    font-size: 32px;
    transition: transform 0.3s ease;
}

.whatsapp-float-new .whatsapp-text {
    white-space: nowrap;
    font-weight: 600;
    font-size: 1rem;
    margin-left: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.2s ease, transform 0.3s ease;
}

/* Desktop Hover Effect */
@media (min-width: 769px) {
    .whatsapp-float-new:hover {
        width: 230px; /* Expanded width */
        border-radius: 30px;
        justify-content: flex-start;
        padding-left: 14px;
    }

    .whatsapp-float-new:hover .fa-whatsapp {
        transform: rotate(360deg);
    }

    .whatsapp-float-new:hover .whatsapp-text {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile styles - remains a circle */
@media (max-width: 768px) {
    .whatsapp-float-new {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float-new .fa-whatsapp {
        font-size: 28px;
    }
    .whatsapp-float-new .whatsapp-text {
        display: none; /* Text is not needed on mobile */
    }
}

}
    background-color: rgba(255, 107, 59, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-small-icon img {
    width: 32px;
    height: 32px;
}

.card-small-content {
    flex-grow: 1;
}

.card-small-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.card-small-content p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.card-small-action {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.card-small-action:hover {
    background-color: var(--secondary-color);
}

.price-list-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-light);
    font-style: italic;
}

/* =================================
   About Us Page Styles
   ================================= */

.about-story-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-text .section-tag {
    display: inline-block;
    background-color: rgba(255, 107, 59, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.story-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.our-values-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: var(--white-color);
    padding: 40px 30px;

/* Floating WhatsApp Button - Enhanced */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.4s ease;
    animation: pulse 2s infinite 3s;
}

.whatsapp-float:hover {
    background-color: #1EBE57;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
    animation-play-state: paused; /* Pause animation on hover */
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float span {
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
}

/* Animation for the button */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Responsive: Hide text on smaller screens for a cleaner look */
@media (max-width: 768px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    background-color: rgba(255, 107, 59, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon img {
    width: 40px;
    height: 40px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.7;
}

.coverage-section {
    padding: 80px 0;
    background: var(--dark-gradient);
    color: var(--white-color);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 50px;
}

.coverage-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.coverage-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.coverage-text .cta-button {
    background-color: var(--primary-color);
    color: white;
}

.coverage-text .cta-button:hover {
    background-color: var(--secondary-color);
}

.coverage-map-icon {
    text-align: center;
}

.coverage-map-icon img {
    width: 150px;
    opacity: 0.8;
}

/* Responsive adjustments for About Page */
@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    .coverage-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .coverage-map-icon {
        margin-top: 40px;
    }
}

/* ... existing code ... */

/* =================================
   Contact Page Styles
   ================================= */

.contact-details-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    background-color: rgba(255, 107, 59, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon img {
    width: 40px;
    height: 40px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-card-link {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
}

.contact-card-link:not(.inactive)::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.contact-card-link:not(.inactive):hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.contact-card-link.inactive {
    color: var(--text-light);
    cursor: default;
}

.contact-form-map-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.form-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-form-container .section-tag {
    display: inline-block;
    background-color: rgba(255, 107, 59, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-form-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-form-container p {
    color: var(--text-color);
    margin-bottom: 30px;
}

.contact-form-modern .form-group {
    margin-bottom: 20px;
}

.contact-form-modern input,
.contact-form-modern textarea,
.contact-form-modern select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus,
.contact-form-modern select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 59, 0.2);
}

.contact-form-modern .cta-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
}
.form-alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* Responsive adjustments for Contact Page */
@media (max-width: 992px) {
    .form-map-wrapper {
        grid-template-columns: 1fr;
    }
    .map-container {
        margin-top: 50px;
        min-height: 350px;
    }
}

// ... existing code ...
.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #FFA500; /* Orange accent */
}

.footer-social .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.footer-social .social-icons a:hover {
    background-color: #FFA500;
    color: #1a1a1a;
}

.footer-bottom {
    border-top: 1px solid #444;
// ... existing code ...

/* ... (semua kode CSS Anda yang sudah ada) ... */

/* Tambahan untuk Ikon Sosial Media di Footer */
.footer-social .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.footer-social .social-icons a:hover {
    background-color: #FFA500;
    color: #1a1a1a;
}

// ... existing code ...
/* Styling untuk Tombol WhatsApp Mengambang */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

.whatsapp-float span {
    display: inline-block;
    max-width: 100px; /* Atur lebar maksimum teks */
    transition: max-width 0.4s ease-in-out;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .whatsapp-float {
        padding: 8px;
        border-radius: 50%;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float span {
        display: none; /* Sembunyikan teks di layar kecil */
    }
}