/* styles.css - Gaya bersama untuk SKY AUDIO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #1d1d1f;
    line-height: 1.4;
    scroll-behavior: smooth;
}

:root {
    --primary-blue: #0a4b8c;
    --primary-light: #1e78c0;
    --soft-gray: #f5f5f7;
    --border-light: #e8e8ed;
    --text-dark: #1d1d1f;
    --text-light: #6e6e73;
    --red-accent: #e63946;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========= NAVBAR (konsisten di semua halaman) ========= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .sky-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #56C0ED;
}

.logo .audio-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #FB210D;
}

.logo-img {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-icons i {
    font-size: 1.2rem;
    margin-left: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ========= FOOTER ========= */
footer {
    background: linear-gradient(135deg, #0a2f5a 0%, #0a4b8c 100%);
    color: #d4e3f0;
    padding: 60px 0 30px;
    margin-top: 60px;
    position: relative;

}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a4b8c, #1e78c0, #0a4b8c);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, #9acdff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 250px;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-light);
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d4e3f0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.footer-col a i {
    width: 20px;
    font-size: 1rem;
    transition: transform 0.2s;
}

.footer-col a:hover {
    color: white;
    transform: translateX(4px);
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
    margin-bottom: 0;
}

.social-icons a i {
    font-size: 1.2rem;
    width: auto;
}

.social-icons a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: #a0b8d0;
}

/* ========= GAYA UMUM LAINNYA (digunakan di berbagai halaman) ========= */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
}

/* Carousel (index) */
.hero-carousel {
    padding-top: 80px;
    width: 100%;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 
	background-size: cover;
	*/
	background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-overlay {
    background: linear-gradient(135deg, rgba(10,75,140,0.7), rgba(30,120,192,0.6));
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 0 20px;
}

.slide-overlay h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.slide-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.btn-carousel {
    background: white;
    color: var(--primary-blue);
    padding: 12px 32px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn-carousel:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.02);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
    border: none;
    font-size: 2rem;
    color: white;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: 0.2s;
}

.carousel-control:hover {
    background: rgba(255,255,255,0.6);
    color: var(--primary-blue);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

/* Services grid (index) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -12px rgba(10,75,140,0.15);
    border-color: var(--primary-light);
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 24px;
    text-align: center;
}

.service-content i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonial (index) */
#testimoni {
    padding-top: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-card {
    background: white;
    padding: 32px;
    border-radius: 28px;
    border: 1px solid var(--border-light);
}

.testi-card i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.testi-card p {
    font-style: italic;
    margin: 16px 0;
}

/* Page header (contact & store) */
.page-header {
    padding-top: 120px;
    padding-bottom: 60px;
    background: var(--soft-gray);
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 12px;
}

/* Contact form */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.info-simple {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-simple i {
    width: 28px;
    font-size: 1.3rem;
    color: var(--primary-blue);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 28px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(10,75,140,0.1);
}

.btn-submit {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 980px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: 0.2s;
}

.btn-submit:hover {
    background: var(--primary-light);
    transform: scale(1.02);
}

.note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.store-link {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.store-link a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

/* Store locations */
.map-hero {
    width: 100%;
    height: 450px;
}

.map-hero iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.store-info-section {
    padding: 80px 0;
}

.store-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.store-detail h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.info-list {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.info-item i {
    font-size: 1.4rem;
    color: var(--primary-blue);
    min-width: 32px;
}

.info-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.5;
}

.store-badge {
    background: var(--primary-blue);
    color: white;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
}

.btn-direction {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 980px;
    font-weight: 600;
    margin-top: 24px;
    transition: 0.2s;
}

.btn-direction:hover {
    background: var(--primary-light);
    transform: scale(1.02);
}

.features-store {
    background: var(--soft-gray);
    border-radius: 32px;
    padding: 32px;
}

.features-store h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list i {
    font-size: 1.3rem;
    color: var(--primary-blue);
    width: 28px;
}

.gallery-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.gallery-mini img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.3s;
}

.gallery-mini img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid, .testimonial-grid, .contact-grid, .store-detail-grid {
        grid-template-columns: 1fr;
    }
    .carousel-container {
        height: 450px;
    }
    .slide-overlay h2 {
        font-size: 2rem;
    }
    /* Navbar mobile */
    .nav-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        padding: 0.5rem 0 0;
    }
    .nav-links li {
        margin: 0;
    }
    .nav-links a {
        font-size: 0.85rem;
        padding: 0.25rem 0.75rem;
        white-space: nowrap;
    }
    .nav-icons {
        text-align: center;
    }
    .logo .sky-text, .logo .audio-text {
        font-size: 1.2rem;
    }
    .logo-img {
        width: 28px;
        height: 28px;
    }
    #testimoni {
        padding-top: 40px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-col a {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
    .map-hero {
        height: 300px;
    }
}

	/* ========= MENU HAMBURGER UNTUK MOBILE ========= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;      /* sedikit lebih ramping */
    height: 18px;     /* disesuaikan agar proporsional */
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;      /* dari 3px menjadi 2px - lebih tipis */
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animasi saat menu terbuka */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 30px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 25px 0;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 500;
    transition: 0.2s;
}

.mobile-menu a:hover {
    color: var(--primary-blue);
}

.mobile-menu.active {
    display: block;
}

/* Responsive: tampilkan hamburger di mobile, sembunyikan nav-links asli */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        justify-content: space-between;
        flex-direction: row !important;
    }
    
    .nav-icons {
        display: none; /* opsional: sembunyikan ikon search di mobile */
    }
}
	
	outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}