/* ========================================
   PAGES CSS - Inner Pages Styles
   PT. Arshi Technical Solution — v3.0
   ======================================== */

/* ========================================
   PAGE HEADER (semua halaman inner)
   ======================================== */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 0;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(184,115,51,0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(184,115,51,0.08) 0%, transparent 60%);
}
.page-header-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 60px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--gold-light); font-weight: 600; }
.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.2;
}
.page-header p {
    color: rgba(255,255,255,0.70);
    font-size: 1.05rem;
    max-width: 500px;
}

/* ========================================
   SERVICES DETAIL (layanan.html)
   ======================================== */
.services-detail-grid { display: flex; flex-direction: column; gap: 80px; }
.service-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: flex-start;
    padding: 50px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(184,115,51,0.25);
}
.sdc-icon-wrap {
    text-align: center;
    position: relative;
}
.sdc-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 8px;
    box-shadow: var(--shadow-md);
}
.sdc-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 1px;
}
.sdc-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.sdc-content > p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
}
.sdc-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    margin-bottom: 28px;
}
.sdc-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}
.sdc-feature i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.sdc-styles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.sdc-styles span {
    padding: 5px 14px;
    background: var(--light);
    border: 1px solid rgba(184,115,51,0.20);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 500;
}

/* Pricing Section */
.pricing-info-section { background: var(--light); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.pricing-card.featured {
    background: linear-gradient(145deg, var(--primary), var(--secondary));
    border-color: transparent;
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}
.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}
.pricing-icon {
    width: 72px;
    height: 72px;
    background: rgba(184,115,51,0.10);
    border: 2px solid rgba(184,115,51,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    margin: 0 auto 20px;
}
.pricing-card.featured .pricing-icon {
    background: rgba(184,115,51,0.20);
    border-color: rgba(184,115,51,0.40);
}
.pricing-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.pricing-card.featured h4 { color: var(--white); }
.pricing-price { margin-bottom: 28px; }
.pricing-price span { display: block; font-size: 0.85rem; color: var(--text-light); margin-bottom: 4px; }
.pricing-card.featured .pricing-price span { color: rgba(255,255,255,0.65); }
.pricing-price strong { font-size: 1.8rem; color: var(--gold); font-family: var(--font-heading); }
.pricing-price small { font-size: 0.85rem; color: var(--text-light); }
.pricing-card.featured .pricing-price small { color: rgba(255,255,255,0.55); }
.pricing-list {
    text-align: left;
    margin-bottom: 32px;
}
.pricing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 7px 0;
    border-bottom: 1px solid var(--gray-100);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-card.featured .pricing-list li { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.08); }
.pricing-list i { color: var(--gold); font-size: 0.8rem; }
.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.88rem;
    margin-top: 32px;
    font-style: italic;
}
.pricing-note a { color: var(--gold); text-decoration: underline; }

/* ========================================
   PRODUCTS (produk.html)
   ======================================== */
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}
.products-count { color: var(--text-light); font-size: 0.9rem; }
.products-count span { color: var(--gold-dark); font-weight: 700; }
.products-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.product-card-full {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card-full:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(184,115,51,0.20); }
.product-card-full .product-img { height: 240px; }
.product-card-full .product-info {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-full .product-info h4 { font-size: 1.05rem; margin-bottom: 8px; }
.product-card-full .product-info p { font-size: 0.88rem; margin-bottom: 14px; flex: 1; }
.product-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.product-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
}
.product-meta i { color: var(--gold); font-size: 0.75rem; }
.product-tag-2 {
    position: absolute;
    top: 40px;
    left: 12px;
    background: var(--secondary);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
}
.product-card-full.hidden { display: none; }

/* Custom Order Banner */
.custom-banner-section { background: var(--light); padding: 60px 0; }
.custom-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.custom-banner-icon {
    font-size: 3rem;
    color: var(--gold-light);
    flex-shrink: 0;
}
.custom-banner-text { flex: 1; }
.custom-banner-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}
.custom-banner-text p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

/* ========================================
   GALLERY (galeri.html)
   ======================================== */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; position: relative; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-img-wrap { width: 100%; height: 100%; position: relative; }
.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: var(--gray-200);
}
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.06); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info { align-self: flex-end; text-align: left; width: 100%; padding-top: 60px; }
.gallery-cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 5px;
}
.gallery-info h4 { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.gallery-info p { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.gallery-zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-zoom:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.gallery-filter { justify-content: flex-start; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: 900px; width: 100%; text-align: center; }
.lightbox-content img {
    max-height: 80vh;
    max-width: 100%;
    border-radius: var(--radius-md);
    object-fit: contain;
}
.lightbox-caption {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-top: 14px;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); }

/* ========================================
   ABOUT (tentang.html)
   ======================================== */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.highlight-item { text-align: center; }
.highlight-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.highlight-label { font-size: 0.82rem; color: var(--text-light); font-weight: 500; }

/* Vision Mission */
.vision-section { background: var(--light); }
.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.vm-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.vm-card:hover { box-shadow: var(--shadow-md); border-color: rgba(184,115,51,0.25); }
.vm-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: var(--shadow-copper);
}
.vm-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.vm-card > p { color: var(--text-light); font-size: 0.92rem; line-height: 1.8; }
.vm-card ul { list-style: none; }
.vm-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    line-height: 1.5;
}
.vm-card ul li:last-child { border-bottom: none; }
.vm-card ul li i { color: var(--gold); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--light);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid transparent;
    transition: var(--transition);
}
.value-item:hover { border-color: rgba(184,115,51,0.20); }
.value-item i { color: var(--gold); }

/* Team */
.team-section { background: var(--white); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
    padding-bottom: 28px;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-img {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.team-avatar {
    width: 80px;
    height: 80px;
    background: rgba(184,115,51,0.2);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-light);
}
.team-info { padding: 0 20px; }
.team-info h4 { font-weight: 700; font-size: 1rem; color: var(--primary); margin-bottom: 4px; }
.team-info span { font-size: 0.8rem; color: var(--gold-dark); font-weight: 600; display: block; margin-bottom: 12px; }
.team-info p { font-size: 0.83rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.team-social { display: flex; justify-content: center; gap: 8px; }
.team-social a {
    width: 32px;
    height: 32px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.8rem;
    transition: var(--transition);
}
.team-social a:hover { background: var(--gold); color: var(--white); }

/* Certifications */
.certifications-section { background: var(--light); }
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cert-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.cert-item:hover { box-shadow: var(--shadow-md); border-color: rgba(184,115,51,0.25); }
.cert-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}
.cert-item h5 { font-weight: 700; font-size: 0.95rem; color: var(--primary); margin-bottom: 8px; }
.cert-item p { font-size: 0.82rem; color: var(--text-light); }

/* ========================================
   CONTACT (kontak.html)
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 50px;
    align-items: flex-start;
}
.contact-info-card, .contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}
.contact-info-card h3, .contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 10px;
}
.contact-info-card > p, .contact-form-card > p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 32px;
}
.contact-info-items { margin-bottom: 32px; }
.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}
.ci-text { display: flex; flex-direction: column; gap: 4px; }
.ci-text strong { font-size: 0.9rem; color: var(--primary); font-weight: 700; }
.ci-text span, .ci-text a { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }
.ci-text a:hover { color: var(--gold); }
.contact-social { margin-bottom: 28px; }
.contact-social h5 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-wa {
    background: #25d366 !important;
    color: var(--white) !important;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3) !important;
    width: 100%;
    justify-content: center;
}
.btn-wa:hover { background: #1ab655 !important; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.4) !important; }

/* Contact Form */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}
.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.input-wrap > i:first-child {
    position: absolute;
    left: 14px;
    color: var(--text-light);
    font-size: 0.9rem;
    z-index: 1;
    pointer-events: none;
}
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
}
.input-wrap input::placeholder,
.input-wrap textarea::placeholder { color: var(--gray-500); }
.select-wrap .select-arrow {
    position: absolute;
    right: 14px;
    color: var(--text-light);
    font-size: 0.8rem;
    pointer-events: none;
}
.textarea-wrap { align-items: flex-start; }
.textarea-wrap > i:first-child { top: 14px; }
.textarea-wrap textarea { resize: vertical; min-height: 130px; }
.form-error { display: block; color: #e74c3c; font-size: 0.8rem; margin-top: 4px; }
.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem !important;
    color: var(--text-light) !important;
    cursor: pointer;
    font-weight: 400 !important;
}
.checkbox-label input { display: none; }
.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-200);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-top: 1px;
}
.checkbox-label input:checked ~ .checkbox-custom {
    background: var(--gold);
    border-color: var(--gold);
}
.checkbox-label input:checked ~ .checkbox-custom::after {
    content: '✓';
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
}
.btn-submit { width: 100%; justify-content: center; }
.btn-submit.loading { opacity: 0.7; pointer-events: none; }
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon { font-size: 4rem; color: #27ae60; margin-bottom: 20px; }
.form-success h4 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary); margin-bottom: 12px; }
.form-success p { color: var(--text-light); margin-bottom: 28px; font-size: 0.95rem; }

/* Map */
.map-section { padding: 0 0 80px; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; }
.map-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-placeholder-content { text-align: center; color: var(--white); }
.map-placeholder-content i { font-size: 3rem; color: var(--gold-light); margin-bottom: 16px; }
.map-placeholder-content h4 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 10px; }
.map-placeholder-content p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 24px; }

/* FAQ */
.faq-section { background: var(--light); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active { border-color: rgba(184,115,51,0.35); box-shadow: var(--shadow-sm); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    gap: 16px;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
    width: 30px;
    height: 30px;
    background: rgba(184,115,51,0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ========================================
   RESPONSIVE - PAGES
   ======================================== */
@media (max-width: 1024px) {
    .service-detail-card { padding: 36px; gap: 36px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .products-grid-full { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.wide { grid-column: span 1; }
    .vm-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
    .custom-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .page-header-content { padding: 90px 0 44px; }
    .service-detail-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
    .sdc-features { grid-template-columns: 1fr; }
    .products-grid-full { grid-template-columns: 1fr; }
    .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-item.tall { grid-row: span 1; }
    .team-grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-info-card, .contact-form-card { padding: 28px 22px; }
    .about-highlights { justify-content: space-around; }
}
