:root {
/* === WARNA UTAMA — disesuaikan dari logo EH Law Office (hitam & emas) === */
--primary-color: #4A4A4A; /* Abu charcoal (warna utama diminta) */
--primary-dark: #2E2E2E; /* Abu lebih gelap untuk hover/aksen */
--secondary-color: #C9A23A; /* Kuning emas (warna dominan logo) */
--secondary-light: #E0BB5A; /* Emas lebih terang untuk highlight */
--secondary-dark: #A07C1E; /* Emas gelap untuk teks kontras */
--accent-color: #333333; /* Aksen abu gelap (senada hitam logo) */

--text-dark: #1A1A1A;
--text-light: #666666;
--background-light: #F5F5F0; /* Abu terang netral senada charcoal */
--white: #ffffff;
--shadow: rgba(74, 74, 74, 0.10);
--shadow-hover: rgba(74, 74, 74, 0.20);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Montserrat', sans-serif;
color: var(--text-dark);
line-height: 1.8;
overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Cormorant Garamond', serif;
font-weight: 600;
}

html {
scroll-behavior: smooth;
}

/* ============================================
NAVIGATION
============================================ */
.navbar {
padding: 0.7rem 0;
background: rgba(74, 74, 74, 0.97);
backdrop-filter: blur(10px);
transition: all 0.3s ease;
box-shadow: 0 2px 12px rgba(74, 74, 74, 0.35);
border-bottom: 2px solid rgba(201, 162, 58, 0.25);
}

.navbar.scrolled {
padding: 0.5rem 0;
background: var(--primary-color);
border-bottom-color: var(--secondary-color);
}

.navbar-brand {
font-size: 1.5rem;
font-weight: 600;
color: var(--white) !important;
display: flex;
align-items: center;
transition: all 0.3s ease;
}

.navbar-brand img {
width: 60px;
/* background: #ffffff;
border-radius: 6px;
padding: 4px 10px; */
}

.navbar-brand:hover {
color: var(--secondary-color) !important;
}

.brand-text {
font-family: 'Cormorant Garamond', serif;
}

.navbar-nav .nav-link {
color: rgba(255, 255, 255, 0.9) !important;
font-weight: 500;
padding: 0.5rem 1rem !important;
margin: 0 0.2rem;
position: relative;
transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 2px;
background: var(--secondary-color);
transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
width: 70%;
}

.navbar-nav .nav-link:hover {
color: var(--secondary-color) !important;
}

/* ============================================
HERO SECTION
============================================ */
.hero-section {
min-height: 100vh;
position: relative;
display: flex;
align-items: center;
background: linear-gradient(135deg, #4A4A4A 0%, #2E2E2E 55%, #1A1A1A 100%);
overflow: hidden;
padding: 120px 0 80px;
}

.hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600');
background-size: cover;
background-position: center;
opacity: 0.06;
animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
0% { transform: scale(1); }
100% { transform: scale(1.1); }
}

.hero-particles {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
content: '';
position: absolute;
border-radius: 50%;
background: rgba(201, 162, 58, 0.12);
animation: float 20s infinite;
}

.hero-particles::before {
width: 400px;
height: 400px;
top: -100px;
left: -100px;
}

.hero-particles::after {
width: 300px;
height: 300px;
bottom: -50px;
right: -50px;
animation-delay: -10s;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) scale(1); }
50% { transform: translate(50px, 50px) scale(1.1); }
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(74, 74, 74, 0.90) 0%, rgba(50, 50, 50, 0.88) 100%);
}

.hero-content {
position: relative;
z-index: 2;
animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
display: inline-block;
background: rgba(201, 162, 58, 0.18);
color: var(--secondary-color);
padding: 0.6rem 1.5rem;
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 1.5rem;
border: 1px solid rgba(201, 162, 58, 0.4);
animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
font-size: 4.5rem;
font-weight: 700;
color: var(--white);
margin-bottom: 1.5rem;
letter-spacing: -2px;
line-height: 1.1;
animation: fadeInUp 1s ease 0.3s both;
}

.title-highlight {
color: var(--secondary-color);
position: relative;
display: inline-block;
}

.hero-subtitle {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 2.5rem;
font-weight: 400;
line-height: 1.7;
max-width: 600px;
animation: fadeInUp 1s ease 0.4s both;
text-align: justify;
}

.hero-features {
display: flex;
gap: 2rem;
margin-bottom: 2.5rem;
flex-wrap: wrap;
animation: fadeInUp 1s ease 0.5s both;
}

.hero-feature-item {
display: flex;
align-items: center;
gap: 1rem;
}

.feature-icon {
width: 50px;
height: 50px;
background: rgba(201, 162, 58, 0.18);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: var(--secondary-color);
font-size: 1.5rem;
border: 1px solid rgba(201, 162, 58, 0.2);
}

.hero-feature-item h5 {
font-size: 1.1rem;
color: var(--white);
margin-bottom: 0;
font-weight: 600;
}

.hero-feature-item p {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.7);
margin: 0;
}

.hero-buttons {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
flex-wrap: wrap;
animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons .btn {
padding: 1rem 2.5rem;
font-weight: 600;
border-radius: 50px;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
font-size: 0.9rem;
}

.btn-primary {
background: var(--secondary-color);
border: 2px solid var(--secondary-color);
color: #1A1A1A;
font-weight: 700;
}

.btn-primary:hover {
background: var(--secondary-light);
border-color: var(--secondary-light);
color: #1A1A1A;
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(201, 162, 58, 0.45);
}

.btn-outline-light {
border: 2px solid rgba(201, 162, 58, 0.45);
color: var(--secondary-color) !important;
}

.btn-outline-light:hover {
background: var(--secondary-color);
color: #1A1A1A !important;
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(201, 162, 58, 0.35);
border-color: var(--secondary-color);
}

.hero-trust {
animation: fadeInUp 1s ease 0.7s both;
}

.trust-item {
display: inline-flex;
align-items: center;
gap: 1rem;
color: var(--secondary-color);
font-size: 0.9rem;
}

.trust-item i {
font-size: 1rem;
}

.trust-item span {
color: rgba(255, 255, 255, 0.8);
font-weight: 500;
}

/* Hero Image Side */
.hero-image-wrapper {
position: relative;
height: 500px;
animation: fadeIn 1s ease 0.8s both;
}

.hero-card {
position: absolute;
background: rgba(255, 255, 255, 0.07);
backdrop-filter: blur(10px);
border: 1px solid rgba(201, 162, 58, 0.3);
border-radius: 15px;
padding: 1.5rem;
color: var(--white);
transition: all 0.3s ease;
}

.hero-card:hover {
transform: translateY(-5px);
background: rgba(201, 162, 58, 0.1);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
border-color: rgba(201, 162, 58, 0.5);
}

.hero-card i {
font-size: 2.5rem;
color: var(--secondary-color);
margin-bottom: 1rem;
}

.hero-card h4 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
color: var(--white);
}

.hero-card p {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.8);
margin: 0;
}

.hero-card-1 {
top: 50px;
left: 0;
animation: cardFloat 6s ease-in-out infinite;
}

.hero-card-2 {
top: 200px;
right: 50px;
animation: cardFloat 6s ease-in-out infinite 2s;
}

.hero-card-3 {
bottom: 50px;
left: 80px;
animation: cardFloat 6s ease-in-out infinite 4s;
}

@keyframes cardFloat {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}

.hero-shape {
position: absolute;
border-radius: 50%;
background: rgba(201, 162, 58, 0.07);
animation: shapeFloat 15s ease-in-out infinite;
}

.hero-shape-1 {
width: 200px;
height: 200px;
top: 0;
right: 0;
}

.hero-shape-2 {
width: 150px;
height: 150px;
bottom: 0;
left: 50px;
animation-delay: -7.5s;
}

@keyframes shapeFloat {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
50% { transform: translate(30px, 30px) rotate(180deg); }
}

/* Scroll Indicator */
.scroll-indicator {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
z-index: 2;
text-align: center;
animation: fadeIn 1s ease 1.5s both;
}

.scroll-mouse {
width: 30px;
height: 50px;
border: 2px solid rgba(201, 162, 58, 0.6);
border-radius: 25px;
position: relative;
margin: 0 auto 10px;
}

.scroll-wheel {
width: 4px;
height: 10px;
background: var(--secondary-color);
border-radius: 2px;
position: absolute;
top: 8px;
left: 50%;
transform: translateX(-50%);
animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
0%, 20% { top: 8px; opacity: 1; }
100% { top: 30px; opacity: 0; }
}

.scroll-indicator p {
color: rgba(201, 162, 58, 0.8);
font-size: 0.85rem;
margin: 0;
text-transform: uppercase;
letter-spacing: 1px;
}

/* ============================================
SECTION STYLES
============================================ */
section {
position: relative;
}

.section-label {
display: inline-block;
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--secondary-dark);
margin-bottom: 1rem;
padding: 0.5rem 1.5rem;
background: rgba(201, 162, 58, 0.12);
border-radius: 50px;
border: 1px solid rgba(201, 162, 58, 0.2);
}

.section-title {
font-size: 3rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 1rem;
line-height: 1.2;
}

.section-description {
font-size: 1.1rem;
color: var(--text-light);
max-width: 600px;
margin: 0 auto;
}

/* ============================================
ABOUT SECTION
============================================ */
.about-section {
background: var(--white);
}

.about-image-wrapper {
position: relative;
padding: 2rem;
}

.about-decoration {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 3px solid var(--secondary-color);
border-radius: 10px;
transform: translate(-15px, -15px);
z-index: 0;
}

.about-image {
position: relative;
z-index: 1;
border-radius: 10px;
box-shadow: 0 20px 60px var(--shadow);
transition: transform 0.3s ease;
}

.about-image:hover {
transform: scale(1.02);
}

.lead {
font-size: 1.2rem;
color: var(--text-dark);
font-weight: 400;
}

.stat-box {
text-align: center;
padding: 1.5rem;
background: var(--background-light);
border-radius: 10px;
transition: all 0.3s ease;
border-left: 4px solid var(--primary-color);
border-bottom: 2px solid rgba(201, 162, 58, 0.25);
}

.stat-box:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px var(--shadow);
border-left-color: var(--secondary-color);
}

.stat-number {
font-size: 2.5rem;
color: var(--primary-color);
font-weight: 700;
margin-bottom: 0.5rem;
}

.stat-label {
font-size: 0.9rem;
color: var(--text-light);
margin: 0;
}

/* ============================================
SERVICES SECTION
============================================ */
.services-section {
background: var(--background-light);
}

.service-card {
background: #fff;
border: 1px solid rgba(201, 162, 58, 0.15);
padding: 2.5rem;
border-radius: 15px;
transition: all 0.4s ease;
height: 100%;
position: relative;
overflow: hidden;
}

.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}

.service-card:hover::before {
transform: scaleX(1);
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px var(--shadow-hover);
border-color: rgba(201, 162, 58, 0.3);
}

.service-icon {
width: 100%;
height: 160px;
background: transparent;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
transition: all 0.4s ease;
overflow: hidden;
}

.service-card:hover .service-icon {
transform: scale(1.05);
}

.service-icon i {
font-size: 2rem;
color: var(--white);
}

.service-icon img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
border-radius: 10px;
transition: all 0.4s ease;
}

.service-title {
font-size: 1.5rem;
color: var(--primary-color);
margin-bottom: 1rem;
font-weight: 600;
}

.service-description {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.service-link {
color: var(--secondary-dark);
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.service-link:hover {
color: var(--primary-color);
gap: 1rem;
}

/* ============================================
TEAM SECTION WITH SWIPER
============================================ */
.team-section {
background: var(--white);
}

.teamSwiper {
padding: 20px 0 70px;
}

.team-card {
background: var(--white);
border-radius: 15px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 5px 20px var(--shadow);
height: 100%;
border-bottom: 3px solid transparent;
}

.team-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px var(--shadow-hover);
border-bottom-color: var(--secondary-color);
}

.team-image {
position: relative;
overflow: hidden;
height: 350px;
}

.team-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
transform: scale(1.1);
}

.team-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to top, rgba(50, 50, 50, 0.92), transparent);
display: flex;
align-items: flex-end;
justify-content: center;
padding: 2rem;
opacity: 0;
transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
opacity: 1;
}

.team-social {
display: flex;
gap: 1rem;
}

.team-social a {
width: 40px;
height: 40px;
background: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-color);
transition: all 0.3s ease;
text-decoration: none;
}

.team-social a:hover {
background: var(--secondary-color);
color: #1A1A1A;
transform: translateY(-3px);
}

.team-info {
padding: 1.5rem;
text-align: center;
}

.team-name {
font-size: 1.2rem;
color: var(--primary-color);
margin-bottom: 0.5rem;
font-weight: 600;
}

.team-position {
color: var(--secondary-dark);
font-weight: 600;
font-size: 0.9rem;
margin-bottom: 0.3rem;
}

.team-expertise {
color: var(--text-light);
font-size: 0.85rem;
margin-bottom: 0.8rem;
}

.team-experience {
display: inline-block;
background: var(--background-light);
padding: 0.4rem 1rem;
border-radius: 20px;
font-size: 0.8rem;
color: var(--text-dark);
border: 1px solid rgba(201, 162, 58, 0.2);
}

/* ============================================
TESTIMONIAL SECTION WITH SWIPER
============================================ */
.testimonial-section {
background: var(--background-light);
}

.testimonialSwiper {
padding: 20px 0 70px;
}

.testimonial-card {
background: var(--white);
padding: 2.5rem;
border-radius: 15px;
box-shadow: 0 5px 20px var(--shadow);
transition: all 0.3s ease;
height: 100%;
position: relative;
border-top: 3px solid transparent;
}

.testimonial-card::before {
content: '"';
position: absolute;
top: -20px;
right: 20px;
font-size: 8rem;
color: var(--secondary-color);
opacity: 0.1;
font-family: 'Cormorant Garamond', serif;
line-height: 1;
}

.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px var(--shadow-hover);
border-top-color: var(--secondary-color);
}

.testimonial-header {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
}

.testimonial-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--secondary-color);
}

.testimonial-author-name {
font-size: 1.1rem;
color: var(--primary-color);
margin-bottom: 0.2rem;
font-weight: 600;
}

.testimonial-author-title {
color: var(--text-light);
font-size: 0.85rem;
margin: 0;
}

.testimonial-stars {
color: var(--secondary-color);
margin-bottom: 1.2rem;
}

.testimonial-stars i {
font-size: 0.8rem;
margin-right: 0.2rem;
}

.testimonial-text {
font-style: italic;
color: var(--text-dark);
margin-bottom: 1.3rem;
line-height: 1.5;
text-align: justify;
}

.testimonial-footer {
text-align: right;
}

.testimonial-footer i {
font-size: 2rem;
color: var(--secondary-color);
opacity: 0.35;
}

/* ============================================
BLOG SECTION WITH SWIPER
============================================ */
.blog-section {
background: var(--white);
}

.blogSwiper {
padding: 20px 0 70px;
}

.blog-card {
background: var(--white);
border-radius: 15px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 5px 20px var(--shadow);
height: 100%;
display: flex;
flex-direction: column;
border-bottom: 3px solid transparent;
}

.blog-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px var(--shadow-hover);
border-bottom-color: var(--secondary-color);
}

.blog-image {
position: relative;
height: 250px;
overflow: hidden;
}

.blog-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
transform: scale(1.1);
}

.blog-category {
position: absolute;
top: 15px;
left: 15px;
background: var(--secondary-color);
color: #1A1A1A;
padding: 0.4rem 1rem;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.blog-content {
padding: 1.5rem;
flex-grow: 1;
display: flex;
flex-direction: column;
}

.blog-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1rem;
font-size: 0.85rem;
color: var(--text-light);
}

.blog-title {
font-size: 1.4rem;
color: var(--primary-color);
margin-bottom: 1rem;
font-weight: 600;
line-height: 1.3;
}

.blog-excerpt {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.7;
flex-grow: 1;
}

.blog-link {
color: var(--secondary-dark);
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.blog-link:hover {
color: var(--primary-color);
gap: 1rem;
}

/* ============================================
GALLERY SECTION
============================================ */
.gallery-section {
background: var(--background-light);
}

.gallery-item {
position: relative;
border-radius: 12px;
overflow: hidden;
cursor: pointer;
aspect-ratio: 4/3;
box-shadow: 0 5px 20px var(--shadow);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px var(--shadow-hover);
}

.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.gallery-item:hover img {
transform: scale(1.08);
}

.gallery-overlay {
position: absolute;
inset: 0;
background: rgba(50, 50, 50, 0.80);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
opacity: 1;
}

.gallery-overlay-content {
text-align: center;
color: var(--white);
}

.gallery-overlay-content i {
font-size: 2rem;
color: var(--secondary-color);
margin-bottom: 0.5rem;
display: block;
}

.gallery-overlay-content p {
font-size: 0.9rem;
font-weight: 600;
margin: 0;
padding: 0 1rem;
}

/* Lightbox Modal */
.gallery-modal .modal-content {
background: rgba(0, 0, 0, 0.95);
border: none;
border-radius: 12px;
}

.gallery-modal-close {
position: absolute;
top: -45px;
right: 0;
background: none;
border: none;
color: var(--white);
font-size: 1.5rem;
cursor: pointer;
z-index: 10;
transition: color 0.3s;
}

.gallery-modal-close:hover {
color: var(--secondary-color);
}

.lightbox-img {
width: 100%;
max-height: 80vh;
object-fit: contain;
border-radius: 12px;
display: block;
}

.lightbox-caption {
text-align: center;
color: rgba(255, 255, 255, 0.85);
padding: 0.8rem 1rem;
font-size: 0.95rem;
font-weight: 500;
}

.lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(201, 162, 58, 0.85);
border: none;
color: #1A1A1A;
width: 45px;
height: 45px;
border-radius: 50%;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s;
display: flex;
align-items: center;
justify-content: center;
}

.lightbox-nav:hover {
background: var(--secondary-color);
transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 15px; }
.lightbox-next { right: 15px; }

.lightbox-counter {
position: absolute;
bottom: 15px;
right: 20px;
color: rgba(255, 255, 255, 0.6);
font-size: 0.85rem;
}

/* ============================================
SWIPER CUSTOMIZATION
============================================ */
.swiper-button-next,
.swiper-button-prev {
width: 50px;
height: 50px;
background: var(--white);
border-radius: 50%;
box-shadow: 0 5px 20px var(--shadow);
transition: all 0.3s ease;
border: 1px solid rgba(201, 162, 58, 0.2);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
background: var(--secondary-color);
transform: scale(1.1);
border-color: var(--secondary-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
font-size: 20px;
color: var(--primary-color);
font-weight: 900;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
color: #1A1A1A;
}

.swiper-pagination-bullet {
width: 12px;
height: 12px;
background: var(--primary-color);
opacity: 0.2;
transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
background: var(--secondary-color);
opacity: 1;
width: 30px;
border-radius: 6px;
}

/* ============================================
CONTACT SECTION
============================================ */
.contact-section {
background: var(--white);
}

.contact-info-item {
display: flex;
margin-bottom: 2rem;
align-items: flex-start;
}

.contact-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 1.5rem;
flex-shrink: 0;
box-shadow: 0 4px 15px rgba(74, 74, 74, 0.25);
}

.contact-icon i {
font-size: 1.5rem;
color: var(--secondary-color);
}

.contact-info-item h5 {
color: var(--primary-color);
font-size: 1.1rem;
margin-bottom: 0.5rem;
}

.contact-info-item p {
color: var(--text-light);
margin: 0;
line-height: 1.6;
}

.contact-form-wrapper {
background: var(--background-light);
padding: 3rem;
border-radius: 15px;
box-shadow: 0 10px 40px var(--shadow);
border-top: 4px solid var(--primary-color);
border-bottom: 2px solid rgba(201, 162, 58, 0.2);
}

.form-label {
font-weight: 600;
color: var(--primary-color);
margin-bottom: 0.5rem;
}

.form-control {
border: 2px solid #e8e0d0;
border-radius: 10px;
padding: 0.8rem 1.2rem;
transition: all 0.3s ease;
font-size: 0.95rem;
background: #fff;
}

.form-control:focus {
border-color: var(--secondary-color);
box-shadow: 0 0 0 0.2rem rgba(201, 162, 58, 0.2);
}

/* ============================================
FOOTER
============================================ */
.footer {
background: linear-gradient(135deg, #1A1A1A 0%, #2E2E2E 50%, #3A3A3A 100%);
color: var(--white);
padding: 5rem 0 0;
margin-top: 5rem;
position: relative;
overflow: hidden;
border-top: 3px solid var(--secondary-color);
}

.footer::before {
content: '';
position: absolute;
top: -80px;
right: -80px;
width: 300px;
height: 300px;
border-radius: 50%;
background: rgba(201, 162, 58, 0.05);
pointer-events: none;
}

.footer::after {
content: '';
position: absolute;
bottom: 60px;
left: -60px;
width: 200px;
height: 200px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.03);
pointer-events: none;
}

.footer-img {
width: 120px;
display: block;
/* background: #ffffff;
border-radius: 6px;
padding: 6px 12px; */
margin-bottom: 0.5rem;
}

.footer-title {
font-size: 1.5rem;
color: var(--white);
margin-bottom: 1rem;
display: flex;
align-items: center;
}

.footer-text {
color: rgba(255, 255, 255, 0.6);
line-height: 1.9;
font-size: 0.9rem;
max-width: 300px;
}

.social-links {
display: flex;
gap: 0.8rem;
margin-top: 1.8rem;
}

.social-links a {
width: 42px;
height: 42px;
background: rgba(201, 162, 58, 0.08);
border: 1px solid rgba(201, 162, 58, 0.2);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: rgba(255, 255, 255, 0.7);
transition: all 0.3s ease;
text-decoration: none;
font-size: 0.95rem;
}

.social-links a:hover {
background: var(--secondary-color);
border-color: var(--secondary-color);
color: #1A1A1A;
transform: translateY(-4px);
box-shadow: 0 8px 20px rgba(201, 162, 58, 0.35);
}

.footer-heading {
color: var(--secondary-color);
font-size: 1rem;
margin-bottom: 1.5rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1.5px;
position: relative;
padding-bottom: 0.8rem;
}

.footer-heading::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 30px;
height: 2px;
background: var(--secondary-color);
border-radius: 2px;
}

.footer-links {
list-style: none;
padding: 0;
}

.footer-links li {
margin-bottom: 0.7rem;
}

.footer-links a {
color: rgba(255, 255, 255, 0.55);
text-decoration: none;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0;
font-size: 0.9rem;
}

.footer-links a::before {
content: '›';
color: var(--secondary-color);
font-size: 1.1rem;
margin-right: 0;
opacity: 0;
transform: translateX(-8px);
transition: all 0.3s ease;
}

.footer-links a:hover {
color: var(--secondary-color);
padding-left: 4px;
}

.footer-links a:hover::before {
opacity: 1;
margin-right: 6px;
transform: translateX(0);
}

.footer-divider {
border: none;
border-top: 1px solid rgba(201, 162, 58, 0.15);
margin: 3rem 0 0;
}

.footer-bottom {
padding: 1.5rem 0;
background: rgba(0, 0, 0, 0.3);
}

.footer-copyright {
color: rgba(255, 255, 255, 0.45);
margin: 0;
font-size: 0.85rem;
}

.footer-legal {
color: rgba(255, 255, 255, 0.45);
text-decoration: none;
transition: color 0.3s ease;
font-size: 0.85rem;
}

.footer-legal:hover {
color: var(--secondary-color);
}

/* ============================================
RESPONSIVE STYLES
============================================ */
@media (max-width: 1199px) {
.hero-title { font-size: 3.5rem; }
}

@media (max-width: 991px) {
.hero-title { font-size: 3rem; }
.hero-subtitle { font-size: 1.1rem; }
.section-title { font-size: 2.5rem; }
.navbar-nav { margin-top: 1rem; padding: 1rem 0; }
.navbar-nav .nav-link { padding: 0.5rem 0 !important; }
.about-decoration { transform: translate(-10px, -10px); }
.hero-features { gap: 1rem; }
.hero-feature-item { flex: 1 1 calc(50% - 0.5rem); }
}

@media (max-width: 767px) {
.hero-title { font-size: 2.5rem; }
.hero-subtitle { font-size: 1rem; }
.section-title { font-size: 2rem; }
.hero-buttons .btn { width: 100%; margin-bottom: 1rem; }
.hero-buttons { flex-direction: column; }
.hero-buttons .btn:last-child { margin-bottom: 0; }
.contact-form-wrapper { padding: 2rem; }
.team-image { height: 300px; }
.stat-number { font-size: 2rem; }
.hero-features { flex-direction: column; }
.hero-feature-item { flex: 1 1 100%; }
.swiper-button-next, .swiper-button-prev { display: none; }
}

@media (max-width: 575px) {
.hero-title { font-size: 2rem; }
.section-title { font-size: 1.8rem; }
.service-card { padding: 2rem; }
.contact-form-wrapper { padding: 1.5rem; }
.blog-content { padding: 1.5rem; }
}

/* ============================================
ANIMATIONS
============================================ */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.fade-in {
animation: fadeIn 1s ease;
}

.loading {
opacity: 0;
transform: translateY(20px);
transition: all 0.6s ease;
}

.loading.visible {
opacity: 1;
transform: translateY(0);
}

/* ============================================
SCROLL TO TOP BUTTON
============================================ */
.scroll-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--primary-color);
color: var(--secondary-color);
border: 2px solid var(--secondary-color);
cursor: pointer;
display: none;
z-index: 1000;
transition: all 0.3s ease;
box-shadow: 0 5px 20px rgba(74, 74, 74, 0.3);
}

.scroll-to-top:hover {
background: var(--secondary-color);
color: #1A1A1A;
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(201, 162, 58, 0.4);
}

/* WhatsApp Float Button */
.whatsapp-float {
position: fixed;
width: 60px;
height: 60px;
bottom: 25px;
right: 25px;
background-color: #25d366;
color: #FFF;
border-radius: 50%;
text-align: center;
font-size: 30px;
box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
z-index: 100;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
animation: pulse 2s infinite;
}

.whatsapp-float:hover {
background-color: #128c7e;
transform: scale(1.1);
}

@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
BADGE LAYANAN
============================================ */
.badge-litigasi {
display: inline-block;
font-size: 11px;
padding: 3px 10px;
border-radius: 6px;
background-color: #fde8e8;
color: var(--primary-color);
font-weight: 600;
border: 1px solid rgba(139, 26, 26, 0.15);
}

.badge-non {
display: inline-block;
font-size: 11px;
padding: 3px 10px;
border-radius: 6px;
background-color: #e8f8f0;
color: #1e8449;
font-weight: 500;
}

.badge-both {
display: inline-block;
font-size: 11px;
padding: 3px 10px;
border-radius: 6px;
background-color: #fef5e0;
color: var(--secondary-dark);
font-weight: 600;
border: 1px solid rgba(160, 124, 30, 0.15);
}

/* ============================================
CORE VALUES CARD
============================================ */
.corevalue-card {
background: #fff;
border: 1px solid rgba(201, 162, 58, 0.15);
border-radius: 12px;
padding: 2rem 1.5rem;
text-align: center;
height: 100%;
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.corevalue-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px var(--shadow);
border-color: rgba(201, 162, 58, 0.35);
}

.corevalue-number {
font-size: 42px;
font-weight: 700;
color: rgba(201, 162, 58, 0.12);
line-height: 1;
margin-bottom: 0.5rem;
}

.corevalue-icon {
font-size: 32px;
color: var(--primary-color);
margin-bottom: 1rem;
}

.corevalue-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 4px;
color: var(--primary-color);
}

.corevalue-subtitle {
font-size: 13px;
color: var(--secondary-dark);
margin-bottom: 0.75rem;
font-weight: 500;
}

.corevalue-description {
font-size: 14px;
color: #666;
line-height: 1.7;
margin: 0;
}

/* ============================================
VISI MISI
============================================ */
.vm-wrap {
display: grid;
grid-template-columns: 1fr 1.4fr;
gap: 20px;
}

@media (max-width: 768px) {
.vm-wrap {
grid-template-columns: 1fr;
}
}

.vm-card {
background: #fff;
border: 1px solid rgba(201, 162, 58, 0.15);
border-radius: 0 0 16px 16px;
padding: 1.75rem;
transition: box-shadow 0.3s ease;
}

.vm-card:hover {
box-shadow: 0 8px 24px var(--shadow);
}

.vm-card-visi {
border-top: 3px solid var(--primary-color);
}

.vm-card-misi {
border-top: 3px solid var(--secondary-color);
}

.vm-icon {
width: 46px;
height: 46px;
border-radius: 12px;
background-color: rgba(139, 26, 26, 0.08);
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
color: var(--primary-color);
margin-bottom: 1rem;
}

.vm-tag {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 12px;
font-weight: 600;
padding: 4px 12px;
border-radius: 20px;
margin-bottom: 14px;
}

.vm-tag-visi {
background: rgba(139, 26, 26, 0.08);
color: var(--primary-color);
}

.vm-tag-misi {
background: rgba(201, 162, 58, 0.12);
color: var(--secondary-dark);
}

.vm-heading {
font-size: 17px;
font-weight: 600;
margin-bottom: 10px;
color: var(--primary-color);
}

.vm-head {
font-size: 17px;
font-weight: 600;
margin-bottom: 10px;
color: var(--primary-color);
}

.vm-body {
font-size: 15px;
color: #555;
line-height: 1.8;
margin: 0;
}

.vm-text {
font-size: 15px;
color: #555;
line-height: 1.8;
margin: 0;
}

.misi-item {
display: flex;
gap: 12px;
align-items: flex-start;
margin-bottom: 1rem;
}

.misi-item:last-child {
margin-bottom: 0;
}

.misi-num {
min-width: 32px;
height: 32px;
border-radius: 8px;
background-color: rgba(201, 162, 58, 0.12);
color: var(--secondary-dark);
font-size: 12px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.misi-row {
display: flex;
gap: 12px;
align-items: flex-start;
padding: 12px 0;
border-bottom: 1px solid rgba(201, 162, 58, 0.1);
}

.misi-row:last-child {
border-bottom: none;
padding-bottom: 0;
}

.misi-row:first-child {
padding-top: 0;
}

.misi-dot {
width: 28px;
height: 28px;
border-radius: 50%;
background: rgba(201, 162, 58, 0.12);
color: var(--secondary-dark);
font-size: 11px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 2px;
}

/* ============================================
PROFIL PENDIRI
============================================ */
.profil-card {
background: #fff;
border: 1px solid rgba(201, 162, 58, 0.15);
border-radius: 16px;
padding: 2rem;
border-top: 3px solid var(--primary-color);
}

.profil-header {
display: grid;
grid-template-columns: auto 1fr;
gap: 1.5rem;
align-items: start;
}

@media (max-width: 576px) {
.profil-header {
grid-template-columns: 1fr;
}
}

.profil-avatar {
width: 90px;
height: 90px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: var(--secondary-color);
font-size: 26px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
box-shadow: 0 4px 15px rgba(74, 74, 74, 0.25);
}

.profil-badge {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 11px;
font-weight: 600;
background-color: rgba(139, 26, 26, 0.08);
color: var(--primary-color);
padding: 3px 12px;
border-radius: 20px;
margin-bottom: 8px;
border: 1px solid rgba(139, 26, 26, 0.12);
}

.profil-nama {
font-size: 20px;
font-weight: 700;
margin: 0 0 2px;
color: var(--primary-color);
}

.profil-jabatan {
font-size: 13px;
color: var(--secondary-dark);
font-weight: 500;
margin: 0 0 10px;
}

.profil-tags {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-bottom: 14px;
}

.tag {
display: inline-block;
font-size: 11px;
padding: 3px 10px;
border-radius: 20px;
background-color: var(--background-light);
color: #555;
font-weight: 500;
border: 1px solid rgba(201, 162, 58, 0.15);
}

.profil-bio {
font-size: 14px;
color: #555;
line-height: 1.8;
margin-bottom: 1rem;
}

.profil-stats {
display: flex;
gap: 2rem;
padding-top: 1rem;
border-top: 1px solid rgba(201, 162, 58, 0.15);
flex-wrap: wrap;
}

.stat-item {
display: flex;
flex-direction: column;
gap: 3px;
}

.stat-val {
font-size: 20px;
font-weight: 700;
color: var(--primary-color);
line-height: 1;
}

.stat-lbl {
font-size: 11px;
color: #888;
}

#tim {
scroll-margin-top: 100px;
}

#kontak {
scroll-margin-top: 80px;
}
