:root {
    --primary: #0a0e17;
    --secondary: #1a2138;
    --tertinary: #d8e3e2ca;

    /* --accent: #ff6b00; */
    --accent: #0fc9bd;
    --light: #f0f4f8;
    --text: #fefeff;
    --gray: #8a94a6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(10, 14, 23, 0.95);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.8rem 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
    transition: all 0.3s ease;
}

.mobile-logo {
    display: none;
}

/* Mobile Menu Button (hidden on desktop) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
}

.logo span {
    color: var(--accent);
}



/* Navigation Menu */
/* Navigation Menu */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    z-index: 1000;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--accent);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 14, 23, 0.8), rgba(10, 14, 23, 0.9)), 
                url('../images/logo/audio.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    /* padding: 100px 10%; */
    /* position: relative; */
    /* gap: 50px; */
    /* flex-wrap: wrap; */

    justify-content: space-between;
    /*gap: 500px;*/
    padding: 100px 10%;
}

.hero-content {
    /*max-width: 1100px;
    z-index: 10; */
    flex: 1;
}

.hero-qr {
    text-align: right;
    width: 35%;
    /* flex: 1; */
}

.hero-qr img {
    width: 100%;
    max-width: 300px; /* QR besar tapi masih responsif */
    height: auto;
    border-radius: 12px;
}


.hero h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1.7rem;
    line-height: 1.5;
}

.hero h2 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    /* background-color: #e05a00; */
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section Styling */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    color: var(--text);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}

/* About Section */

.about {
    background-color: var(--primary);
    padding: 100px 10%;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

.about-text {
    flex: 1;
    /* text-align: justify; */
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
    text-align: justify;
}

.about-text a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    margin-left: 27px;
    margin-right: 27px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
}

.about-image img {
    width: 75%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 3%;
}

/* Products Section */
.products {
    background-color: var(--secondary);
    padding-bottom: 3%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--primary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    cursor: pointer;
}


.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-align: justify;
}

.product-info .price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Quotes Section */
.quotes{
    background-color: var(--secondary);
    padding-top: 1%;
    padding-bottom: 0%;
}

.quotes-text h3{
    font-size: 22px;
    font-weight: 550;
    text-align: center;
    padding-left: 15%;
    padding-right: 15%;
}

/* Services Section */
.services{
    background-color: var(--secondary);
    padding: 100px 10%;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.services-container-info {
    text-align: center;
    margin-top: 2%;
}

.service-card {
    background-color: var(--primary);
    border-radius: 10px;
    padding: 20px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.services-container-button {
    text-align: center;
}

.services-container-button p {
    margin-top: 4.5rem;
}
.service-card:hover {
    background-color: rgba(0, 255, 195, 0.1);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
}

.package-highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: 1px solid var(--accent);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.package-highlight h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.package-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
    margin: 30px 0;
}

.package-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.package-feature i {
    color: var(--accent);
    margin-top: 5px;
}

/* pricing */
.pricing {
    background-color: var(--primary);
    padding: 80px 10%;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.pricing-card {
    background-color: var(--secondary);
    border-radius: 10px;
    padding: 20px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
    background-color: rgba(0, 255, 195, 0.1);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.pricing-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul {
    list-style-type: disc;
    line-height: 1.8;
    margin-bottom: 50px;
}

.pricing-card li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.pricing-card li i {
    margin-top: 2px;
    font-size: 1rem;
}

.pricing-card-quote-button-basic {
    margin-top: 60px;
    font-size: 1rem;
    text-align: center;
}

.pricing-card-quote-button-pertengahan {
    margin-top: 60px;
    font-size: 1rem;
    text-align: center;
}

.pricing-card-quote-button-premium {
    margin-top: 60px;
    font-size: 1rem;
    text-align: center;
}
.quote-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--accent);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.quote-button:hover {
    background-color: #00e0b8; /* atau warna hover lain */
    color: #000;
}

.note {
    margin-top: 15px;
    font-style: italic;
    font-size: 0.9rem;
    color: #ccc;
}

/* Testimonials Section */


/* Gallery Section */
.gallery {
    background-color: var(--secondary);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 23, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.3rem;
}



/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    background-color: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--gray);
    
}

.contact-details a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
}

.contact-form {
    background-color: var(--secondary);
    padding: 10px;
    border-radius: 10px;
}

.map-embed {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
}



/* Footer */
footer {
    background-color: #070a12;
    padding: 60px 10% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-about p {
    color: var(--gray);
    margin-bottom: 20px;
    text-align: left;
}



.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    border-radius: 50%;
    color: var(--text);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.footer-links li {
    /* margin-bottom: 5px; */
    list-style: none;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links p {
    text-align: left;
}

.footer-links a:hover {
    color: var(--accent);
}


.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray);
    font-size: 0.9rem;
}

.copyright a {
    color: var(--accent);
    text-decoration: none;
}


/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Brand Slider Styles */
.brands {
    padding: 60px 0;
    background-color: var(--text);
    position: relative;
}

.brand-slider {
    width: 100%;
    height: 60px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear;
}

.swiper-slide {
    width: 150px !important; /* Fixed width for each logo */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    /* filter: grayscale(100%); */
    /* opacity: 0.8; */
    transition: all 0.3s ease;
}

.swiper-slide:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 14, 23, 0.9);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--primary);
    margin: 5% auto;
    padding: 30px;
    width: 80%;
    max-width: 1000px;
    border-radius: 10px;
    position: relative;
}


/* bullet list */
.modal-list {
  display: block; /* remove grid */
  margin-top: 15px;
  padding-left: 20px; /* space for bullets */
}

.modal-list .card {
  position: relative;
  border: none;
  border-radius: 0;
  padding: 5px 0 5px 15px; /* padding-left for bullet space */
  text-align: left;
  background: none;
  color: #ffffff;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
}

.modal-list .card::before {
  position: absolute;
  left: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent);
}

.modal-images {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 10px;
    margin-bottom: 40px;
}

.modal-images img {
    width: 150px;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3; /* Keeps consistent ratio */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-summary {
  padding: 60px 0;
  background-color: var(--secondary);
}

.project-summary .container {
  padding: 0 5px;
  max-width: 1200px;
  margin: 0 auto;
}

.summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  /* flex-direction: column; */
  justify-content: space-between;
  text-decoration: none;
}

.summary-left {
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  flex: 1 1 45%;
}

.summary-left img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; /* Makes image square */
  object-fit: cover;
  display: block;
  border-radius: 20px;
  max-height: 450px;
}

.summary-left p a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}

.summary-text {
  position: absolute;
  bottom: 0;
  background: rgba(0, 40, 80, 0.8);
  color: white;
  width: 100%;
  padding: 30px;
  text-align: left;
}

.summary-text h3 {
  font-size: 18px;
  font-weight: 550;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 18px;
}

.summary-text a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.summary-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row */
  gap: 20px;
}

.summary-box {
  background-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.summary-box i {
  font-size: 24px;
  margin-bottom: 10px;
}

.summary-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.summary-box p {
  margin-top: 5px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.testimonial-section {
  background-color: var(--primary);
  padding: 100px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}



.section-title h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text);
  position: relative;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #00c8b4;
  margin: 10px auto 0;
  border-radius: 2px;
}

.testimonial-item {
  background: var(--primary);
  border-radius: 15px;
  padding: 40px 50px;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease-in-out;
}

.testimonial-item:hover {
  transform: translateY(-5px);
}

.client-img-wrap {
  width: 150px; /* set equal width and height */
  height: 150px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
}

.client-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures the image fills the circle */
  border-radius: 50%;
  display: block;
}


.testimonial-item p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  /* max-width: 600px; */
  margin: 40px auto 25px;
}

.quote-icon {
  color: var(--accent);
  font-size: 52px;
  margin-bottom: -14px;
}

.testimonial-item heading-style {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.client-role {
  color: #666;
  font-size: 14px;
}

.owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  padding: 0 160px; /* ✅ adjust this value to move arrows closer or farther */
  pointer-events: none; /* allows clicks through empty space */
}

.owl-nav i {
 font-size: 20px;
  background: var(--gray);
  color: #222;
  border-radius: 40%;
  padding: 10px;
  transition: all 0.3s ease;
  pointer-events: all;
}

.owl-nav i:hover {
  background: var(--accent);
  color: #fff;
}

/* Dots */
.owl-dots {
  text-align: center;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 12px; /* Tambah jarak antara dot */
}

.owl-dots.owl-dot span {
  width: 44px;
  height: 44px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-dots.owl-dot.active span {
  background: var(--accent);
}



/* Active Navigation Link */
nav a.active {
    color: var(--accent) !important;
}

nav a.active::after {
    width: 100% !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .owl-nav {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 45%;
    width: 100%;
    pointer-events: none;
  }

  .owl-nav i {
    font-size: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: #222;
    border-radius: 50%;
    padding: 8px 10px;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .owl-nav i:hover {
    background: #0dcaf0;
    color: #fff;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Show mobile logo, hide desktop logo */
    .desktop-logo {
        display: none;
    }
    .mobile-logo {
        display: block;
    }
    
    /* Simplify logo text on mobile */
    .logo h1 {
        font-size: 1.2rem;
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Mobile menu styling */
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        gap: 1.5rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    /* Adjust header padding on mobile */
    header {
        padding: 1rem 5%;
    }
    
    header.scrolled {
        padding: 0.5rem 5%;
    }

    .summary-grid {
        flex-direction: row;
    }

    .summary-left {
        flex: 1 1 45%;
    }

    .summary-right {
        flex: 1 1 50%;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

   .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px; /* smaller padding for mobile */
        margin-top: 60px;   /* space for fixed header if any */
        gap: 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h2 {
        font-size: 2rem;   /* smaller heading for mobile */
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;   /* scale down text */
        margin-bottom: 1.5rem;
    }

    .hero-qr {
        margin-top: 20px;
    }

    .hero-qr img {
        max-width: 150px; /* QR jadi lebih kecil di mobile */
    }
    
    .brands{
        margin-top: 40px;
    }

    .modal-list {
        grid-template-columns: repeat(2, 1fr);
    }

   .testimonial-section {
        padding: 30px 15px;
    }

    .section-title h2 {
        font-size: 20px;
        text-align: center;
    }

    .client-img-wrap {
        width: 100px;
        height: 100px;
        margin: 0 auto 100px;
    }

    .testimonial-item p {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }

    .testimonial-item h4 {
        font-size: 15px;
        text-align: center;
    }

    .testimonial-item .client-role {
        font-size: 12px;
        display: block;
        text-align: center;
    }

    .owl-nav {
        top: 45%; /* ✅ adjust vertical centering */
        left: 50%;
        transform: translateX(-50%);
        width: 85%; /* ✅ keeps arrows closer to testimonial */
        display: flex;
        justify-content: space-between;
        padding: 0 10px;
    }

    .owl-nav i {
        font-size: 16px;
        padding: 6px 7px; /* ✅ slightly smaller, closer look */
        background: var(--gray);
        color: #222;
        border-radius: 50%;
        transition: all 0.3s ease;
        pointer-events: all;
    }

    .owl-nav i:hover {
        background: var(--accent);
        color: #fff;
    }
}