/* Variabel Warna Brand */
:root {
    --djasa-pink: #ba70b1;
    --djasa-dark: #1e293b;
    --djasa-gray: #64748b;
    --djasa-light: #f7f0f9;
    --text-color: #333;
    --light-text-color: #f0f0f0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

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

a {
    color: var(--djasa-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--djasa-dark);
}

ul {
    list-style: none;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    color: var(--djasa-dark);
    line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-button {
    background-color: var(--djasa-pink);
    color: white;
}

.primary-button:hover {
    background-color: #a35d9d; /* Slightly darker pink */
}

.secondary-button {
    background-color: var(--djasa-dark);
    color: white;
}

.secondary-button:hover {
    background-color: var(--djasa-gray);
}

/* Header */
.main-header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px; /* Adjust as needed */
    width: auto;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--djasa-dark);
    font-weight: bold;
    font-size: 1.1rem;
    padding: 5px 0;
    position: relative;
}

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

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

.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--djasa-dark);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: url('/assets/img/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--djasa-gray);
    margin-bottom: 40px;
}

/* Services Section */
.services-section {
    background-color: #f9f9f9;
}

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

.service-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.service-card h3 {
    color: var(--djasa-pink);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--djasa-gray);
    margin-bottom: 20px;
}

.service-card ul {
    text-align: left;
    margin-bottom: 25px;
    padding-left: 20px; /* For bullet points if needed, or remove if using icons only */
}

.service-card ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.service-card ul li .icon {
    margin-right: 10px;
    color: var(--djasa-pink);
    font-size: 1.1em;
}

/* Advantages Section */
.advantages-section {
    background-color: var(--djasa-light);
    color: var(--djasa-dark);
}

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

.advantage-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.advantage-item h3 {
    color: var(--djasa-dark);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.advantage-item p {
    font-size: 0.95rem;
    color: var(--djasa-gray);
}

/* Testimonials Section */
.testimonials-section {
    background-color: white;
}

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

.testimonial-card {
    background-color: var(--djasa-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--djasa-dark);
    margin-bottom: 15px;
}

.testimonial-card h4 {
    color: var(--djasa-pink);
    font-size: 1.1rem;
    text-align: right;
}


/* Footer */
.main-footer {
    background-color: var(--djasa-dark);
    color: var(--light-text-color);
    padding: 60px 0;
    font-size: 0.95rem;
}

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

.footer-grid h3 {
    color: var(--djasa-pink);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-grid p {
    margin-bottom: 10px;
    color: var(--djasa-gray);
}

.footer-grid a {
    color: var(--light-text-color);
    transition: color 0.3s ease;
}

.footer-grid a:hover {
    color: var(--djasa-pink);
}

.footer-info p:last-child {
    font-size: 0.85rem;
    margin-top: 20px;
}

.footer-contact .icon { /* Reusing generic .icon for consistency */
    margin-right: 8px;
    font-size: 1.2em;
    vertical-align: middle;
    color: var(--djasa-pink); /* Added color for clarity */
}

/* --- Social Icons --- */
.footer-social a {
    display: inline-flex; /* Use flexbox for centering unicode/SVG */
    align-items: center;
    justify-content: center;
    width: 40px; /* Fixed width for consistent circle/square shape */
    height: 40px; /* Fixed height */
    font-size: 1.8rem;
    margin-right: 15px;
    color: var(--light-text-color);
    border: 2px solid var(--light-text-color); /* Add border for definition */
    border-radius: 50%; /* Make them circular */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.footer-social a:hover {
    color: white; /* Text color on hover */
    background-color: var(--djasa-pink); /* Pink background on hover */
    border-color: var(--djasa-pink); /* Pink border on hover */
}

/* Specific unicode characters for social media - these are just common placeholders */
/* Note: Not all fonts support all unicodes or render them consistently. */
/* For a production site, consider SVG icons or a lightweight icon font. */
.social-icon.facebook::before { content: "\f09a"; font-family: "Font Awesome 5 Brands", sans-serif; /* Requires Font Awesome */ }
.social-icon.instagram::before { content: "\f16d"; font-family: "Font Awesome 5 Brands", sans-serif; }
.social-icon.linkedin::before { content: "\f0e1"; font-family: "Font Awesome 5 Brands", sans-serif; }
/* Fallback/Generic unicode if specific font icons are not used */
.social-icon.facebook::before { content: "f"; /* Simple 'f' */ }
.social-icon.instagram::before { content: "i"; /* Simple 'i' */ }
.social-icon.linkedin::before { content: "in"; /* Simple 'in' */ }
.social-icon.youtube::before { content: "?"; } /* Play button */
.social-icon.twitter::before { content: "??"; } /* X symbol */

/* You can also use emoji if supported and desired, e.g.: */
/* .social-icon.whatsapp::before { content: "??"; } */

/* If you plan to use SVG, the structure will be like: */
/* <a href="..." class="social-icon"><svg>...</svg></a> */
/* And CSS for SVG would be: */
/* .footer-social a svg { width: 24px; height: 24px; fill: currentColor; } */

/* --- */

.footer-links ul li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none; /* Hide navigation on mobile by default */
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 80px; /* Adjust based on header height */
        left: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding-bottom: 10px;
    }

    .main-nav.active {
        display: flex; /* Show when active */
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }

    .main-nav li {
        margin: 10px 0;
    }

    .mobile-menu-toggle {
        display: block; /* Show hamburger on mobile */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-cards,
    .advantages-grid,
    .testimonial-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-social a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card, .advantage-item, .testimonial-card {
        padding: 20px;
    }

/* Page Hero Section */
.page-hero {
    background-color: var(--djasa-light);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--djasa-dark);
    margin-bottom: 15px;
}

.page-hero .lead-text {
    font-size: 1.3rem;
    color: var(--djasa-gray);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Service Detail Section */
.service-detail-section {
    padding: 80px 0;
}

.service-detail-section .section-title {
    margin-bottom: 40px;
}

.service-detail-section .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-section .content-grid.reverse-grid {
    grid-template-areas: "image text"; /* For desktop */
}

.service-detail-section .content-grid.reverse-grid .content-text {
    grid-area: text;
}

.service-detail-section .content-grid.reverse-grid .content-image {
    grid-area: image;
}

.service-detail-section .content-text h2 {
    color: var(--djasa-dark);
    margin-bottom: 20px;
}

.service-detail-section .content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-section .content-text ul {
    margin-bottom: 25px;
}

.service-detail-section .content-text ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--djasa-dark);
    display: flex;
    align-items: flex-start;
}

.service-detail-section .content-text ul li .icon {
    font-size: 1.3em;
    margin-right: 15px;
    color: var(--djasa-pink);
    min-width: 25px; /* Ensures icon alignment */
}

.service-detail-section .content-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CTA Section (can be reused) */
.cta-section {
    background-color: var(--djasa-dark);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

/* Responsive adjustments for service detail */
@media (max-width: 992px) {
    .service-detail-section .content-grid {
        grid-template-columns: 1fr; /* Stack columns */
    }

    .service-detail-section .content-grid.reverse-grid {
        grid-template-areas: none; /* Reset grid area for stacking */
    }

    .service-detail-section .content-grid.reverse-grid .content-text,
    .service-detail-section .content-grid.reverse-grid .content-image {
        grid-area: auto;
    }

    .service-detail-section .content-image {
        order: -1; /* Image first on mobile for reverse-grid */
        margin-bottom: 30px;
    }
    .service-detail-section .content-grid.reverse-grid .content-image {
        order: 0; /* Text first for reverse-grid on mobile */
    }
/* Coverage Check Section */
.coverage-check-section {
    padding: 80px 0;
    background-color: gray;whita
}

.coverage-form {
    max-width: 600px;
    margin: 40px auto 30px auto;
    padding: 30px;
    background-color: var(--djasa-light);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--djasa-dark);
}

.form-group input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--djasa-gray);
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box; /* Include padding in width */
}

.form-group input[type="text"]:focus {
    outline: none;
    border-color: var(--djasa-pink);
    box-shadow: 0 0 0 3px rgba(186, 112, 177, 0.2);
}

.coverage-form .button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.coverage-result-message {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    border-radius: 8px;
    background-color: #e0ffe0; /* Light green for success */
    border: 1px solid #a0ffa0;
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
}

.coverage-result-message.error {
    background-color: #ffe0e0; /* Light red for error */
    border-color: #ffa0a0;
}

.note-text {
    font-size: 0.9rem;
    color: var(--djasa-gray);
    margin-top: 20px;
}

/* Coverage Map Section */
.coverage-map-section {
    padding: 80px 0;
}

.map-placeholder {
    width: 100%;
    max-width: 900px;
    height: 400px; /* Adjust height as needed */
    background-color: #e0e6ec; /* Placeholder background */
    border-radius: 8px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay-text {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--djasa-dark);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.coverage-areas-list {
    margin-top: 50px;
    text-align: center;
}

.coverage-areas-list h3 {
    color: var(--djasa-dark);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.coverage-areas-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    margin-bottom: 30px;
}

.coverage-areas-list ul li {
    font-size: 1.1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.coverage-areas-list ul li .icon {
    color: #4CAF50; /* Green checkmark */
    margin-right: 10px;
    font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coverage-form {
        padding: 20px;
    }
    .map-placeholder {
        height: 300px;
    }
    .coverage-areas-list ul {
        flex-direction: column;
        align-items: center;
    }
}


/* Placeholders for icons - using Unicode or you could use a simple font library like Font Awesome if allowed for specific icons */
/* For social media icons, you'd typically embed a font icon library or use SVG. Here using unicode as placeholder. */
/* For actual Font Awesome, you'd link the CSS and use classes like <i class="fab fa-facebook"></i> */
/* Since no external libraries are allowed, these are just illustrative unicode chars. */
.social-icon[aria-label="Facebook"]::before { content: "\f09a"; font-family: "Font Awesome 5 Brands", sans-serif; /* Requires Font Awesome */ }
.social-icon[aria-label="Instagram"]::before { content: "\f16d"; font-family: "Font Awesome 5 Brands", sans-serif; }
.social-icon[aria-label="LinkedIn"]::before { content: "\f0e1"; font-family: "Font Awesome 5 Brands", sans-serif; }
/* Using simple unicode for checkmarks etc. */