/* ============================================
   PARULIAN SIAHAAN & PARTNERS - STYLE.CSS
   Modern & Minimalist Law Firm Website
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #1a365d;
    --primary-dark: #0f2744;
    --primary-light: #2c5282;
    --accent-color: #c9a227;
    --accent-hover: #d4af37;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --off-white: #f7fafc;
    --light-gray: #edf2f7;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --border-radius: 8px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.header.header-scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 90px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.header.header-scrolled .logo-text {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header.header-scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.header.header-scrolled .bar {
    background-color: var(--text-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../Assets/WhatsApp\ Image\ 2026-05-04\ at\ 15.43.43.jpeg') center/cover no-repeat;
    opacity: 0.15;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: var(--accent-color);
    font-size: 14px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-description {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
}

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

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview {
    background-color: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 30px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .year {
    display: block;
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.experience-badge .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-medium);
}

.about-features i {
    color: var(--accent-color);
    font-size: 18px;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border-radius: 50%;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--accent-color);
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background-color: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 12px;
}

.testimonial-text {
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    text-align: center;
    padding: 100px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    text-align: center;
}

.page-title {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 16px;
}

.page-title .highlight {
    color: var(--accent-color);
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   ABOUT SECTION (ABOUT PAGE)
   ============================================ */
.about-section {
    background-color: var(--white);
    padding: 100px 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-title {
    font-size: 38px;
    margin-bottom: 24px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img-main {
    border-radius: var(--border-radius);
}

.about-img-secondary {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

/* VALUES SECTION */
.values-section {
    background-color: var(--off-white);
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 24px;
}

.value-icon i {
    font-size: 32px;
    color: var(--white);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-medium);
    font-size: 15px;
}

/* TEAM SECTION */
.team-section {
    background-color: var(--white);
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.team-role {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.team-info p {
    color: var(--text-medium);
    font-size: 15px;
}

/* WHY CHOOSE US */
.why-choose-us {
    background-color: var(--off-white);
    padding: 100px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.why-choose-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.why-choose-icon i {
    color: var(--white);
    font-size: 16px;
}

.why-choose-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.why-choose-text p {
    color: var(--text-medium);
    font-size: 15px;
}

.featured-logo {
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================
   SERVICES DETAIL (SERVICES PAGE)
   ============================================ */
.services-main {
    background-color: var(--white);
    padding: 100px 0;
}

.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid var(--light-gray);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse .service-detail-grid {
    direction: rtl;
}

.service-detail.reverse .service-detail-content {
    direction: ltr;
}

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

.service-detail-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.service-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-detail-content > p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-list {
    margin-bottom: 30px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-medium);
}

.service-list i {
    color: var(--accent-color);
}

/* PROCESS SECTION */
.process-section {
    background-color: var(--off-white);
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.process-number {
    font-size: 60px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    position: relative;
}

.process-card p {
    color: var(--text-medium);
    font-size: 15px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    background-color: var(--white);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-intro {
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--accent-color);
}

.contact-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--text-medium);
    font-size: 15px;
}

.contact-text a {
    color: var(--text-medium);
}

.contact-text a:hover {
    color: var(--accent-color);
}

.contact-social h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
}

.social-links i {
    font-size: 18px;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-links a:hover i {
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}

.form-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    background-color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    background-color: var(--off-white);
    padding: 100px 0;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-directions {
    text-align: center;
    margin-top: 30px;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    padding: 24px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 12px;
}

.faq-question i {
    color: var(--accent-color);
    font-size: 14px;
    margin-top: 6px;
}

.faq-answer {
    color: var(--text-medium);
    font-size: 15px;
    padding-left: 26px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--primary-dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent-color);
}

.footer-social i {
    color: var(--white);
    font-size: 16px;
}

.footer h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 24px;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-color);
}

.footer-contact ul li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 16px;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .about-grid,
    .about-content-grid,
    .why-choose-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail.reverse .service-detail-grid {
        direction: ltr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--text-dark);
        font-size: 18px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid,
    .testimonials-grid,
    .stats-grid,
    .values-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 36px;
    }

    .stats {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .cta-title {
        font-size: 32px;
    }

    .page-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .btn-large {
        padding: 14px 32px;
    }

    section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .experience-badge {
        padding: 20px 30px;
    }

    .experience-badge .year {
        font-size: 36px;
    }

    .process-card {
        padding: 30px 20px;
    }

    .contact-details {
        padding-right: 0;
    }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

.img-besar {
    max-width: 1000px;  /* BESAR SESUKA KAMU */
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ============================================
   MOBILE RESPONSIVE - 360px width (Extra Small)
   ============================================ */

/* Extra small devices (phones, 360px and up) */
@media (max-width: 380px) {
    /* Base styles */
    body {
        font-size: 14px;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 50px 0;
    }
    
    /* Header */
    .header {
        padding: 10px 0;
    }
    
    .header.header-scrolled {
        padding: 8px 0;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo-text {
        display: none !important;
    }
    
    /* Hero */
    .hero {
        padding-top: 60px;
        min-height: auto;
        padding-bottom: 50px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 24px !important;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 13px !important;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 12px;
        width: 100%;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 22px !important;
    }
    
    .section-tag {
        font-size: 10px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* About */
    .about-grid,
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image img,
    .about-img-main {
        width: 100%;
        max-width: 100%;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        padding: 15px 25px;
        display: inline-block;
    }
    
    .experience-badge .year {
        font-size: 28px;
    }
    
    .experience-badge .label {
        font-size: 10px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .service-icon i {
        font-size: 22px;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    /* CTA */
    .cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 24px !important;
    }
    
    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    /* Page Header */
    .page-header {
        padding: 120px 0 50px;
    }
    
    .page-title {
        font-size: 26px !important;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .value-icon i {
        font-size: 24px;
    }
    
    .value-card h3 {
        font-size: 18px;
    }
    
    .value-card p {
        font-size: 13px;
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-image img {
        height: 200px;
    }
    
    .team-info {
        padding: 20px;
    }
    
    .team-info h3 {
        font-size: 18px;
    }
    
    .team-info p {
        font-size: 13px;
    }
    
    /* Why Choose Us */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-logo {
        max-width: 100%;
    }
    
    .why-choose-list li {
        margin-bottom: 16px;
    }
    
    /* Service Detail */
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-detail.reverse .service-detail-grid {
        direction: ltr;
    }
    
    .service-detail-content h3 {
        font-size: 22px;
    }
    
    .service-list li {
        font-size: 13px;
    }
    
    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-card {
        padding: 25px 20px;
    }
    
    .process-number {
        font-size: 40px;
    }
    
    .process-card h3 {
        font-size: 16px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .form-header h3 {
        font-size: 22px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links h4,
    .footer-services h4,
    .footer-contact h4 {
        margin-bottom: 16px;
    }
    
    .footer-contact ul li {
        justify-content: center;
        text-align: left;
    }
    
    /* Blog */
    .blog-hero {
        padding: 120px 0 50px;
    }
    
    .blog-hero h1 {
        font-size: 26px !important;
    }
    
    .blog-hero p {
        font-size: 14px;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-post-image {
        min-height: 200px;
    }
    
    .featured-post-content {
        padding: 25px 20px;
    }
    
    .featured-post-title {
        font-size: 20px !important;
    }
    
    .featured-badge {
        font-size: 10px;
        padding: 4px 12px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-image {
        height: 160px;
    }
    
    .blog-card-content {
        padding: 18px;
    }
    
    .blog-card-title {
        font-size: 16px;
    }
    
    .blog-card-excerpt {
        font-size: 13px;
    }
    
    .category-tabs {
        gap: 8px;
    }
    
    .category-tab {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    /* Newsletter */
    .newsletter-section {
        padding: 50px 0;
    }
    
    .newsletter-content h2 {
        font-size: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    /* Article Page */
    .article-hero {
        padding: 120px 0 50px;
    }
    
    .article-hero h1 {
        font-size: 22px !important;
    }
    
    .article-container {
        padding: 25px 18px;
    }
    
    .article-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .article-body h2 {
        font-size: 20px;
    }
    
    .article-body h3 {
        font-size: 18px;
    }
    
    .article-body p {
        font-size: 14px;
    }
    
    .article-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .highlight-box {
        padding: 20px;
    }
    
    .benefit-card {
        padding: 18px;
    }
    
    /* Map */
    .map-container iframe {
        height: 300px;
    }
    
    /* FAQ */
    .faq-question {
        font-size: 15px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
    
    /* Hamburger Menu */
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        padding: 30px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--text-dark) !important;
        font-size: 16px;
        padding: 10px 0;
    }
    
    .bar {
        width: 22px;
        height: 2px;
        background-color: var(--text-dark);
    }
}

/* Fix for very small screens (below 320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 20px !important;
    }
    
    .section-title {
        font-size: 18px !important;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 11px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}
