/* ==========================================
   CSS Variables & Reset
   ========================================== */
:root {
    --primary: #059669;
    --primary-dark: #065f46;
    --primary-light: #ecfdf5;
    --secondary: #eab308;
    --accent: #059669;
    --dark: #111827;
    --gray-900: #1f2937;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
    --topbar-height: 40px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

main {
    padding-top: var(--header-height);
}

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(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}



/* ==========================================
   Top Bar
   ========================================== */
.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 0.8rem;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-300);
}

.top-bar-left span i {
    color: var(--accent);
    font-size: 0.75rem;
}

.top-bar-right {
    display: flex;
    gap: 12px;
}

.top-bar-right a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--gray-300);
    font-size: 0.75rem;
    transition: var(--transition);
}

.top-bar-right a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ==========================================
   Main Header / Navbar
   ========================================== */
.main-header {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-header .container {
    max-width: 100%;
    padding: 0 6vw;
}

.main-header.scrolled {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border-bottom-color: transparent;
    background: #ffffff;
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
}

.navbar-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: auto;
    z-index: 1001;
}

.logo-img {
    height: 48px;
    width: 220px;
    object-position: left center;
    transition: var(--transition);
    object-fit: contain;
}

.navbar-right {
    display: flex;
    flex: 1;
    align-items: center;
    height: 100%;
    gap: 4px;
    margin-left: auto;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 100%;
    margin-left: auto;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.dropdown-icon {
    font-size: 0.65rem;
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.has-dropdown {
    position: static;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: var(--white);
    width: min(1040px, calc(100vw - 40px));
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    padding: 18px;
    border: 1px solid var(--gray-100);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    min-height: 96px;
}

.mega-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f5f7fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.mega-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-title {
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--gray-900);
}

.mega-desc {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--gray-500);
}

.mega-item:hover {
    border-color: #a7f3d0;
    background: #f0fdf4;
    transform: translateY(-2px);
}

.mega-item:hover .mega-icon {
    background: var(--primary-light);
}

.navbar-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.98);
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* ==========================================
   Hamburger Menu
   ========================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile CTA (hidden on desktop) */
.mobile-cta {
    display: none;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    background: linear-gradient(135deg, #052e16 0%, #065f46 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26,86,219,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    border: 1px solid rgba(255,255,255,0.1);
    width: fit-content;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
}

.hero-title .text-primary {
    color: #34d399;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 540px;
    line-height: 1.7;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 540px;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* ==========================================
   Section Styles
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    vertical-align: middle;
    margin: 0 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.section-description {
    color: var(--gray-500);
    margin-top: 12px;
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Us Section */
.why-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

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

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eef2f9;
    box-shadow: 0 2px 12px rgba(5, 150, 105, 0.06);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #34d399);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.1);
    border-color: #a7f3d0;
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-light), #a7f3d0);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2);
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.why-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Service Preview */
.service-preview {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.service-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.1), transparent);
}

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

.service-grid.expandable-grid {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin: 0 auto;
}

.expandable-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: box-shadow 0.4s ease, border-color 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.expandable-card:hover {
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.03);
    border-color: rgba(5, 150, 105, 0.15);
    transform: translateY(-2px);
}

.expandable-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    cursor: pointer;
    user-select: none;
    transition: background 0.25s ease;
    position: relative;
}

.expandable-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(226, 232, 240, 0.6), transparent);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.expandable-card.expanded .expandable-header::after {
    opacity: 0;
}

.expandable-header:hover {
    background: #f0fdf4;
}

.expandable-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.04);
}

.expandable-header:hover .expandable-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff;
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.2);
}

.expandable-info {
    flex: 1;
    min-width: 0;
}

.expandable-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.expandable-card.expanded .expandable-info h3 {
    color: #065f46;
}

.expandable-info p {
    font-size: 0.82rem;
    color: #94a3b8;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.expandable-info p .expandable-hint {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    border-radius: 20px;
    background: rgba(5, 150, 105, 0.06);
    color: #059669;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
}

.expandable-card.expanded .expandable-info p .expandable-hint {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.expandable-chevron {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.8rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.expandable-card.expanded .expandable-chevron {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: var(--primary);
    transform: rotate(180deg);
}

.expandable-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable-card.expanded .expandable-body {
    max-height: 2500px;
}

.standard-list {
    padding: 8px 28px 4px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    list-style: none;
}

.standard-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    border-radius: 10px;
    transition: all 0.25s ease;
    position: relative;
}

.standard-list li:hover {
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
    color: #1e293b;
    padding-left: 18px;
}

.standard-list li i {
    color: #22c55e;
    font-size: 0.78rem;
    width: 16px;
    text-align: center;
    transition: transform 0.25s ease, color 0.25s ease;
}

.standard-list li:hover i {
    color: #047857;
    transform: scale(1.15);
}

.expandable-footer {
    padding: 4px 28px 22px;
    border-top: 0;
    display: flex;
    justify-content: flex-end;
}

.expandable-footer .service-link {
    font-size: 0.85rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-link i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.service-link:hover {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.25);
    transform: translateY(-1px);
    gap: 10px;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* --- Category groups inside standard list --- */
.standard-list .list-category {
    grid-column: 1 / -1;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #059669;
    padding: 14px 14px 6px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.standard-list .list-category i {
    color: #059669;
    font-size: 0.65rem;
    width: auto;
}

.standard-list .list-category:first-child {
    padding-top: 4px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #065f46, #059669);
    color: var(--white);
    text-align: center;
}

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

.cta-content h2 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ==========================================
   Popular Consultation Section
   ========================================== */
.popular-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #052e16 0%, #064e3b 30%, #065f46 60%, #052e16 100%);
}

.popular-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.popular-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.popular-blob.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #059669, #047857);
    top: -150px;
    right: -100px;
    animation: blobFloat 18s ease-in-out infinite;
}

.popular-blob.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #eab308, #ca8a04);
    bottom: -100px;
    left: -80px;
    animation: blobFloat2 22s ease-in-out infinite;
}

.popular-blob.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #059669, #047857);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blobFloat3 25s ease-in-out infinite;
}

.popular-section .container {
    position: relative;
    z-index: 1;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.popular-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.popular-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent, rgba(255,255,255,0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.popular-card:hover::before {
    opacity: 1;
}

.popular-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(5, 150, 105, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.popular-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #6ee7b7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popular-card:hover .popular-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.35);
}

.popular-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.popular-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.popular-link {
    color: #6ee7b7;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.popular-link:hover {
    color: #ffffff;
}

.popular-link i {
    transition: var(--transition);
}

.popular-link:hover i {
    transform: translateX(4px);
}

.popular-cta {
    text-align: center;
    padding: 40px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.popular-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* ==========================================
   Footer
   ========================================== */
.main-footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 80px 0 0;
}

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

.footer-logo {
    border-radius: 50%;
    object-fit: cover;
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

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

.footer-column p i {
    color: var(--primary);
    width: 20px;
    margin-right: 8px;
}

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

/* ==========================================
   WhatsApp Float Button
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: var(--white);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--white);
}

/* ==========================================
   Responsive: Tablet & Mobile
   ========================================== */
@media (max-width: 1024px) {
    .hero-section .container {
        gap: 40px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

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

@media (max-width: 768px) {
    :root {
        --topbar-height: 0px;
    }

    .top-bar {
        display: none;
    }

    .main-header .container {
        padding: 0 5vw;
    }

    .main-header {
        top: 0;
        height: 64px;
    }

    main {
        padding-top: 64px;
    }

    .logo-img {
        height: 38px;
        width: 170px;
    }

    .navbar-cta {
        display: none;
    }

    .mobile-cta {
        display: block;
        padding: 8px 20px 20px;
    }

    .mobile-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Hamburger visible on mobile */
    .hamburger {
        display: flex;
        margin-left: auto;
    }

    /* Mobile Nav Menu - Slide in from right */
    .navbar-right {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 4px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
        overflow-y: auto;
        margin: 0;
    }

    .navbar-right.active {
        right: 0;
    }

    .navbar-right .nav-menu {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        height: auto;
        gap: 4px;
        margin-left: 0;
    }

    .nav-item {
        height: auto;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
        width: 100%;
    }

    .nav-link.active::after {
        display: none;
    }

    .has-dropdown {
        flex-direction: column;
    }

    .has-dropdown > .nav-link {
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        padding: 0 8px;
        min-width: unset;
        width: 100%;
        grid-template-columns: 1fr;
        transition: max-height 0.3s ease, padding 0.3s ease;
        border: none;
    }

    .has-dropdown.open .dropdown-menu {
        max-height: 500px;
        padding: 8px;
    }

    .mega-item {
        min-height: auto;
        padding: 10px;
        border: 1px solid var(--gray-100);
        background: #fafbff;
    }

    .mega-title {
        font-size: 0.88rem;
    }

    .mega-desc {
        font-size: 0.76rem;
    }

    /* Hero Mobile */
    .hero-section {
        padding: 60px 0;
    }

    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        max-width: 100%;
        font-size: 1rem;
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    /* Popular Mobile */
    .popular-section {
        padding: 60px 0;
    }

    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .popular-card {
        padding: 28px 24px;
    }

    .popular-blob {
        filter: blur(40px);
    }

    .popular-blob.blob-1 {
        width: 250px;
        height: 250px;
    }

    .popular-blob.blob-2 {
        width: 200px;
        height: 200px;
    }

    .popular-blob.blob-3 {
        width: 150px;
        height: 150px;
    }

    /* Service Mobile */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .why-card {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
        text-align: left;
    }

    .why-card::before {
        display: none;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
        font-size: 1.1rem;
        margin: 0;
    }

    .why-card h3 {
        margin-bottom: 6px;
        font-size: 1rem;
    }

    .why-card p {
        font-size: 0.85rem;
    }

    .why-section {
        padding: 60px 0;
    }

    .service-grid.expandable-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 5vw;
    }

    .expandable-header {
        padding: 18px 20px;
        gap: 12px;
    }

    .expandable-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .standard-list {
        grid-template-columns: 1fr;
        padding: 4px 16px 0;
    }

    .standard-list li {
        padding: 8px 12px;
        font-size: 0.82rem;
    }

    .expandable-footer {
        padding: 2px 20px 18px;
    }

    .expandable-info h3 {
        font-size: 0.95rem;
    }

    .expandable-info p {
        font-size: 0.78rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-content h2 {
    color: #ffffff;
        font-size: 1.8rem;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .aha-title {
        font-size: 30px;
    }

    .aha-hero {
        min-height: 85vh;
    }

    .popular-grid {
        gap: 20px;
    }

    .popular-card p {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    /* ===== Hero ===== */
    .aha-title {
        font-size: 28px;
    }

    .aha-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .aha-kicker {
        font-size: 10px;
        padding: 6px 12px;
        gap: 5px;
        justify-content: center;
    }

    .aha-actions {
        flex-direction: column;
        gap: 10px;
    }

    .aha-actions .aha-btn {
        width: 100%;
        justify-content: center;
    }

    .aha-nav {
        padding: 14px 4vw;
    }

    .aha-brand-text div:first-child {
        font-size: 10px !important;
    }

    .aha-brand-text div:last-child {
        font-size: 12px !important;
    }

    .aha-logo {
        width: 38px;
        height: 38px;
    }

    /* ===== Why Section ===== */
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-section {
        padding: 48px 0;
    }

    .why-card {
        padding: 20px;
    }

    /* ===== Popular ===== */
    .popular-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .popular-section {
        padding: 48px 0;
    }

    .popular-card {
        padding: 24px 20px;
    }

    .popular-icon {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .popular-blob {
        filter: blur(30px);
        opacity: 0.2;
    }

    .popular-blob.blob-1 {
        width: 180px;
        height: 180px;
        top: -60px;
        right: -60px;
    }

    .popular-blob.blob-2 {
        width: 140px;
        height: 140px;
        bottom: -60px;
        left: -40px;
    }

    .popular-blob.blob-3 {
        width: 100px;
        height: 100px;
    }

    /* ===== Service Preview ===== */
    .service-preview {
        padding: 48px 0;
    }

    .service-grid.expandable-grid {
        padding: 0 4vw;
    }

    .expandable-header {
        padding: 14px 16px;
        gap: 10px;
    }

    .expandable-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .expandable-info h3 {
        font-size: 0.88rem;
    }

    .expandable-info p {
        font-size: 0.72rem;
    }

    .expandable-info p .expandable-hint {
        font-size: 0.65rem;
        padding: 1px 8px;
    }

    .expandable-chevron {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.7rem;
    }

    .standard-list {
        padding: 2px 12px 0;
        gap: 2px;
    }

    .standard-list li {
        padding: 7px 10px;
        font-size: 0.78rem;
        gap: 8px;
    }

    .standard-list .list-category {
        font-size: 0.65rem;
        padding: 10px 10px 4px;
    }

    .expandable-footer {
        padding: 0 16px 14px;
    }

    .service-link {
        font-size: 0.8rem;
        padding: 8px 16px;
        gap: 6px;
    }

    /* ===== CTA ===== */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
    color: #ffffff;
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    /* ===== Section Headers ===== */
    .section-header {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    .section-subtitle::before,
    .section-subtitle::after {
        width: 24px;
        margin: 0 8px;
    }

    .section-description {
        font-size: 0.9rem;
        padding: 0 5vw;
    }

    /* ===== Footer ===== */
    .main-footer {
        padding: 48px 0 0;
    }

    .footer-grid {
        gap: 28px;
        padding: 0 4vw;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column p {
        font-size: 0.82rem;
    }

    .footer-links li a {
        font-size: 0.82rem;
    }

    .footer-bottom {
        padding: 18px 5vw;
        font-size: 0.78rem;
    }

    /* ===== WhatsApp ===== */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* ===== Container ===== */
    .container {
        padding: 0 4vw;
    }

    /* ===== Aha mobile panel ===== */
    .aha-mobile-panel {
        width: 88vw;
        padding: 16px;
    }

    /* ===== Hero bg orbs smaller ===== */
    .aha-hero-bg::before {
        width: 300px;
        height: 300px;
        filter: blur(40px);
        opacity: 0.5;
    }

    .aha-hero-bg::after {
        width: 200px;
        height: 200px;
        filter: blur(30px);
        opacity: 0.4;
    }
}

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

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(40px, -10px) scale(1.05); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-30px, 30px) scale(1.15); }
    50% { transform: translate(20px, -30px) scale(0.85); }
    75% { transform: translate(-40px, 15px) scale(1.1); }
}

@keyframes blobFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(25px, -20px) scale(1.2) rotate(5deg); }
    66% { transform: translate(-15px, 25px) scale(0.95) rotate(-3deg); }
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-image {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* ==========================================
   Scrollbar
   ========================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* ==========================================
   AHA Style Navbar + Hero
   ========================================== */
main {
    padding-top: 0;
}

.aha-hero {
    position: relative;
    min-height: 92vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aha-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -10%;
    width: 120%;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
}

.aha-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #060e1a 0%, #0a1a35 30%, #112255 55%, #0d1f42 75%, #091830 100%);
    background-size: 200% 200%;
    animation: heroGradientShift 20s ease-in-out infinite;
    overflow: hidden;
}

/* Floating glowing orbs */
.aha-hero-bg::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle at center, rgba(5, 150, 105, 0.12), rgba(5, 150, 105, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: heroOrbFloat1 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.aha-hero-bg::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle at center, rgba(234, 179, 8, 0.12), rgba(124, 58, 237, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: heroOrbFloat2 22s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.aha-hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='14' cy='14' r='1.8' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='0' cy='0' r='1' fill='rgba(147, 180, 255, 0.04)'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 28 0 L 28 56 M 0 28 L 56 28' stroke='rgba(255,255,255,0.015)' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 28px 28px, 28px 28px, 56px 56px;
    background-position: 0 0, 14px 14px, 0 0;
    animation: heroPatternDrift 45s linear infinite;
    will-change: background-position;
}

.aha-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(120deg, rgba(6, 14, 26, 0.88), rgba(6, 14, 26, 0.55) 45%, rgba(6, 14, 26, 0.2)),
        linear-gradient(0deg, rgba(6, 14, 26, 0.5), rgba(6, 14, 26, 0.1));
    animation: heroOverlayPulse 12s ease-in-out infinite;
}

.aha-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 6vw;
    background: rgba(10, 18, 28, 0.02);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.aha-nav.is-scrolled {
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.aha-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.aha-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    object-fit: cover;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.aha-brand-text {
    line-height: 1.25;
}

.aha-menu {
    display: flex;
    gap: 18px;
    font-size: 14px;
    font-weight: 600;
}

.aha-menu a {
    color: #ffffff;
    opacity: 0.9;
}

.aha-menu a:hover {
    opacity: 1;
}

.aha-nav.is-scrolled .aha-brand,
.aha-nav.is-scrolled .aha-menu a {
    color: #0b1220;
}

.aha-dropdown {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: -24px;
}

.aha-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.aha-caret {
    font-size: 11px;
    opacity: 0.75;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    display: inline-block;
}

.aha-dropdown:hover .aha-caret {
    transform: rotate(180deg) scale(1.1);
    opacity: 1;
}

.aha-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 60px;
    transform: rotate(45deg);
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px 0 0 0;
    box-shadow: -4px -4px 16px rgba(15, 23, 42, 0.06);
    z-index: -1;
}

.aha-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    transform: translateY(16px) scale(0.96);
    transform-origin: top right;
    width: min(1040px, calc(100vw - 40px));
    max-width: 1040px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14), 0 10px 30px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.7) inset, 0 -1px 0 rgba(5, 150, 105, 0.06) inset;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, visibility 0s linear 0.8s;
    z-index: 999;
    visibility: hidden;
}

.aha-dropdown-menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #059669, #ef4444, #059669, transparent);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.aha-dropdown:hover .aha-dropdown-menu::after {
    opacity: 1;
}

.aha-dropdown:hover .aha-dropdown-menu,
.aha-dropdown-menu:hover {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scale(1);
    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.2), 0 12px 36px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8) inset, 0 -1px 0 rgba(5, 150, 105, 0.1) inset;
    transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, visibility 0s linear 0s;
}

.aha-mega-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 14px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    color: #0b1220;
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.aha-mega-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.aha-mega-item:hover::before {
    opacity: 1;
}

.aha-mega-item:hover {
    background: linear-gradient(135deg, #ecfdf5, #e8f0fe);
    border-color: rgba(26, 86, 219, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.1), 0 2px 8px rgba(26, 86, 219, 0.04);
    color: #0b1220;
}

.aha-dropdown:hover .aha-mega-item:nth-child(1) { transition-delay: 0.02s; }
.aha-dropdown:hover .aha-mega-item:nth-child(2) { transition-delay: 0.04s; }
.aha-dropdown:hover .aha-mega-item:nth-child(3) { transition-delay: 0.06s; }
.aha-dropdown:hover .aha-mega-item:nth-child(4) { transition-delay: 0.08s; }
.aha-dropdown:hover .aha-mega-item:nth-child(5) { transition-delay: 0.10s; }
.aha-dropdown:hover .aha-mega-item:nth-child(6) { transition-delay: 0.12s; }
.aha-dropdown:hover .aha-mega-item:nth-child(7) { transition-delay: 0.14s; }

.aha-mega-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0f4ff, #e4ecfb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(26, 86, 219, 0.04);
    position: relative;
    z-index: 1;
}

.aha-mega-item:hover .aha-mega-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff;
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3), 0 2px 8px rgba(5, 150, 105, 0.15);
}

.aha-mega-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    flex: 1;
    position: relative;
    z-index: 1;
}

.aha-mega-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #1f2937;
    transition: color 0.3s ease;
}

.aha-mega-item:hover .aha-mega-title {
    color: #065f46;
}

.aha-mega-desc {
    display: block;
    font-size: 12.5px;
    line-height: 1.5;
    font-weight: 500;
    color: #6b7280;
    transition: color 0.3s ease;
}

.aha-mega-item:hover .aha-mega-desc {
    color: #4b5563;
}


.aha-nav-actions,
.aha-cta,
.aha-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aha-actions {
    margin-top: 32px;
}

.aha-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-weight: 700;
    font-size: inherit;
}

.aha-btn.primary {
    background: #f6c453;
    color: #1b1b1b;
    border: 0;
    box-shadow: 0 14px 30px rgba(246, 196, 83, 0.35);
}

.aha-nav.is-scrolled .aha-btn {
    background: #f3f4f6;
    color: #0b1220;
    border-color: #e5e7eb;
}

.aha-nav.is-scrolled .aha-btn.primary {
    background: #f6c453;
    color: #1b1b1b;
    border: 0;
}

.aha-burger {
    display: none;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
}

.aha-nav.is-scrolled .aha-burger {
    color: #0b1220;
}

.aha-burger-lines {
    position: relative;
    width: 20px;
    height: 14px;
}

.aha-burger-lines span {
    position: absolute;
    left: 0;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease;
}

.aha-burger-lines span:nth-child(1) { top: 0; width: 20px; }
.aha-burger-lines span:nth-child(2) { top: 6px; width: 14px; }
.aha-burger-lines span:nth-child(3) { bottom: 0; width: 18px; }

.aha-burger.is-open .aha-burger-lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 20px; }
.aha-burger.is-open .aha-burger-lines span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.aha-burger.is-open .aha-burger-lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 20px; }

.aha-content {
    position: relative;
    z-index: 2;
    padding: calc(6vh + 72px) 6vw 10vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
    color: #ffffff;
}

.aha-kicker {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(8, 18, 30, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.aha-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    line-height: 1.08;
    margin: 16px 0 14px;
    color: #ffffff;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.aha-subtitle {
    font-size: 16px;
    line-height: 1.8;
    max-width: 580px;
}

.aha-hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.aha-mobile {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}

.aha-mobile.active {
    display: block;
}

.aha-mobile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.aha-mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(92vw, 360px);
    height: 100%;
    background: #ffffff;
    color: #0b1220;
    padding: 22px;
    overflow-y: auto;
}

.aha-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.aha-mobile-title {
    font-size: 18px;
    font-weight: 800;
}

.aha-mobile-close {
    border: 0;
    background: #f3f4f6;
    border-radius: 10px;
    width: 34px;
    height: 34px;
    cursor: pointer;
}

.aha-mobile-links {
    display: grid;
    gap: 8px;
}

.aha-mobile-links a,
.aha-mobile-toggle {
    border: 0;
    background: #f8fafc;
    border-radius: 10px;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    color: #0b1220;
}

.aha-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.aha-mobile-sub {
    display: none;
    gap: 8px;
    padding-left: 10px;
}

.aha-mobile-sub.open {
    display: grid;
}

.aha-mobile-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: inherit;
    padding: 9px 12px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    font-weight: 600;
}

.aha-mobile-sub a:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.aha-mobile-sub a i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .aha-dropdown-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(680px, calc(100vw - 40px));
        padding: 16px;
        gap: 8px;
    }
}

@media (max-width: 900px) {
    .aha-menu {
        display: none;
    }

    .aha-burger {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        z-index: 1101;
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.15);
    }

    .aha-nav.is-scrolled .aha-burger {
        background: #f3f4f6;
        border-color: #e5e7eb;
        color: #0b1220;
    }

    .aha-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .aha-dropdown-menu {
        grid-template-columns: minmax(0, 1fr);
        width: min(360px, calc(100vw - 40px));
        padding: 12px;
        gap: 6px;
        border-radius: 14px;
    }

    .aha-mega-item {
        padding: 10px 12px;
        gap: 12px;
    }

    .aha-mega-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .aha-mega-title {
        font-size: 13px;
    }

    .aha-mega-desc {
        font-size: 11.5px;
    }
}

@media (max-width: 768px) {
    .aha-nav {
        padding: 16px 5vw;
    }

    .aha-title {
        font-size: 34px;
    }

    .aha-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .aha-content {
        padding: calc(4vh + 64px) 5vw 8vh;
        gap: 22px;
    }

    .aha-hero::after {
        bottom: -25px;
        height: 40px;
    }

    .aha-hero-image {
        display: none;
    }
}

/* ==========================================
   Hero Background Animations
   ========================================== */

/* Slow gradient shift */
@keyframes heroGradientShift {
    0%   { background-position: 0% 50%; }
    25%  { background-position: 50% 0%; }
    50%  { background-position: 100% 50%; }
    75%  { background-position: 50% 100%; }
    100% { background-position: 0% 50%; }
}

/* Slow pattern drift */
@keyframes heroPatternDrift {
    0%   { background-position: 0 0, 14px 14px, 0 0; }
    100% { background-position: 28px 14px, 42px 28px, 14px 7px; }
}

/* Floating orb #1 */
@keyframes heroOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
    33%  { transform: translate(60px, -80px) scale(1.15); opacity: 0.5; }
    66%  { transform: translate(-40px, 50px) scale(0.9); opacity: 0.3; }
}

/* Floating orb #2 */
@keyframes heroOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.25; }
    33%  { transform: translate(-70px, -40px) scale(0.85); opacity: 0.35; }
    66%  { transform: translate(50px, 60px) scale(1.2); opacity: 0.2; }
}

/* Subtle pulse overlay */
@keyframes heroOverlayPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.85; }
}

/* ==========================================
   Modern Green-Yellow-Red Accent System
   ========================================== */

/* --- Yellow Accents (Secondary) --- */
.expandable-card:hover .expandable-hint {
    background: rgba(234, 179, 8, 0.12) !important;
    color: #a16207 !important;
}

.expandable-card.expanded .expandable-hint {
    background: rgba(234, 179, 8, 0.12) !important;
    color: #a16207 !important;
}

.expandable-header:hover .expandable-icon {
    background: linear-gradient(135deg, #059669, #eab308) !important;
    color: #ffffff !important;
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.2);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, #059669, #eab308) !important;
    color: #ffffff !important;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2);
}

.popular-card:hover .popular-icon {
    background: linear-gradient(135deg, #059669, #eab308) !important;
    border-color: #eab308 !important;
    color: #ffffff !important;
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.35) !important;
}

.popular-link {
    color: #ca8a04;
}
.popular-link:hover {
    color: #ffffff;
}

/* Section subtitle with yellow accent */
.section-subtitle {
    color: #ca8a04;
}
.section-subtitle::before,
.section-subtitle::after {
    background: #ca8a04;
}

/* --- Red Accents (Accent / CTA) --- */
.btn-primary {
    background: linear-gradient(135deg, #059669, #047857);
    border-color: #059669;
    color: #ffffff;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    border-color: #047857;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(5, 150, 105, 0.35);
}

.whatsapp-float {
    background: linear-gradient(135deg, #059669, #047857) !important;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4) !important;
}
.whatsapp-float:hover {
    box-shadow: 0 6px 30px rgba(5, 150, 105, 0.5) !important;
    transform: scale(1.1);
    color: #ffffff;
}

/* Red accent on popular CTA button */
.popular-cta .btn-primary {
    background: linear-gradient(135deg, #059669, #047857) !important;
    border-color: #059669 !important;
}
.popular-cta .btn-primary:hover {
    background: linear-gradient(135deg, #047857, #065f46) !important;
    border-color: #047857 !important;
}

/* Hero green-red-yellow accent */
.aha-kicker {
    border-color: rgba(234, 179, 8, 0.3) !important;
    color: #fbbf24 !important;
}
.aha-kicker span {
    color: #6ee7b7;
}

/* Red accent for service links */
.service-link {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5) !important;
    color: #059669 !important;
}
.service-link:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.25) !important;
}

/* Top bar accent */
.top-bar {
    background: linear-gradient(135deg, #052e16, #065f46) !important;
}
.top-bar-left span i {
    color: #fbbf24 !important;
}
.top-bar-right a:hover {
    background: #059669 !important;
    color: #ffffff !important;
}

/* Nav link active/hover */
.nav-link:hover,
.nav-link.active {
    color: #059669 !important;
    background: #ecfdf5 !important;
}
.nav-link.active::after {
    background: #059669 !important;
}

/* Mega menu items */
.mega-item:hover {
    border-color: #a7f3d0 !important;
    background: #f0fdf4 !important;
}
.mega-item:hover .mega-icon {
    background: #ecfdf5 !important;
    color: #059669 !important;
}
.mega-icon {
    color: #059669 !important;
}

/* Navbar CTA button (red) */
.navbar-cta .btn-primary {
    background: linear-gradient(135deg, #059669, #047857) !important;
    border-color: #059669 !important;
}
.navbar-cta .btn-primary:hover {
    background: linear-gradient(135deg, #047857, #065f46) !important;
    border-color: #047857 !important;
}

/* Expandable card expanded title */
.expandable-card.expanded .expandable-info h3 {
    color: #065f46 !important;
}

/* Footer heading accent */
.footer-column h4::after {
    background: #059669 !important;
}

/* Standard list check icons */
.standard-list li i {
    color: #059669 !important;
}
.standard-list li:hover i {
    color: #047857 !important;
}

/* Standard list category */
.standard-list .list-category {
    color: #059669 !important;
}
.standard-list .list-category i {
    color: #059669 !important;
}

/* Expandable chevron expanded */
.expandable-card.expanded .expandable-chevron {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0) !important;
    color: #059669 !important;
}

/* Popular card background on hover */
.popular-card:hover {
    border-color: rgba(234, 179, 8, 0.3) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(5, 150, 105, 0.15) !important;
}

/* Red accent for hero CTA */
.aha-actions .aha-btn.primary {
    background: linear-gradient(135deg, #059669, #047857) !important;
    border-color: #059669 !important;
}
.aha-actions .aha-btn.primary:hover {
    background: linear-gradient(135deg, #047857, #065f46) !important;
    border-color: #047857 !important;
    box-shadow: 0 6px 24px rgba(5, 150, 105, 0.35) !important;
}

/* Mobile menu active accent */
.aha-mobile-toggle[aria-expanded="true"] {
    color: #059669 !important;
}
.aha-mobile-sub a i {
    color: #059669 !important;
}
.aha-mobile-sub a:hover {
    color: #059669 !important;
}

/* Aha brand text */
.aha-brand {
    color: #059669 !important;
}

/* Aha nav scrolled */
.aha-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(5, 150, 105, 0.08) !important;
}

/* Aha hero overlay with green tint */
.aha-overlay {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(234, 179, 8, 0.08)) !important;
}

/* Hero card accent */
.aha-hero .aha-btn:not(.primary) {
    border-color: rgba(5, 150, 105, 0.3) !important;
    color: #ffffff !important;
}
.aha-hero .aha-btn:not(.primary):hover {
    border-color: #059669 !important;
    background: rgba(5, 150, 105, 0.15) !important;
}

/* Burger menu accent */
.aha-burger-lines span {
    background: #065f46 !important;
}
.aha-burger.is-open .aha-burger-lines span {
    background: #059669 !important;
}

/* Burger accent hover */
.aha-burger:hover .aha-burger-lines span {
    background: #059669 !important;
}

/* Aha dropdown menu items */
.aha-dropdown-menu .aha-mega-item {
    border-color: transparent;
}
.aha-dropdown-menu .aha-mega-item:hover {
    border-color: #a7f3d0 !important;
    background: #f0fdf4 !important;
}
.aha-mega-icon {
    color: #059669 !important;
    background: #ecfdf5 !important;
}
.aha-mega-item:hover .aha-mega-icon {
    background: #059669 !important;
    color: #ffffff !important;
}

/* Mobile menu */
.aha-mobile-panel {
    border-left: 3px solid #059669;
}
.aha-mobile-links a:hover {
    color: #059669 !important;
}

/* WhatsApp float tooltip */
.whatsapp-tooltip {
    color: #059669 !important;
}

/* Cta section uses green gradient (already set) */
/* Override if needed */
.cta-section .btn-primary {
    background: linear-gradient(135deg, #eab308, #ca8a04) !important;
    border-color: #eab308 !important;
}
.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #ca8a04, #a16207) !important;
    border-color: #ca8a04 !important;
    box-shadow: 0 6px 24px rgba(234, 179, 8, 0.35) !important;
}

/* --- Hover transition polish --- */
.service-preview::before {
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.12), transparent) !important;
}

.why-section::before {
    background: linear-gradient(90deg, transparent, #d1fae5, transparent) !important;
}

/* --- Popular section subtitle — green instead of blue --- */
.popular-section .section-subtitle {
    color: #6ee7b7 !important;
}

/* ==========================================
   Client Logo Carousel
   ========================================== */
.client-section {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

.client-header {
    text-align: center;
    margin-bottom: 40px;
}

.client-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.client-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.logo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, transparent);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(90deg, transparent, #ffffff);
}

.logo-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: logoScroll 30s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    opacity: 0.55;
    transition: opacity 0.35s ease, transform 0.35s ease;
    filter: grayscale(0%) brightness(1);
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.08);
}

.logo-item img {
    height: 100%;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   Google Maps Section
   ========================================== */
.map-section {
    padding: 0;
    background: var(--gray-100);
}

.map-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================
   Google Reviews Section
   ========================================== */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.reviews-section .section-subtitle {
    color: #059669;
}
.reviews-section .section-subtitle::before,
.reviews-section .section-subtitle::after {
    background: #059669;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.review-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.08);
    border-color: #a7f3d0;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
    color: #ca8a04;
    font-size: 1rem;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 16px;
    font-style: italic;
}

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

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
}

.review-source {
    font-size: 0.75rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-source i {
    color: #4285F4;
}

.review-cta {
    text-align: center;
    margin-top: 40px;
}

.review-cta p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.review-cta .btn-outline-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid #059669;
    color: #059669;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: transparent;
}

.review-cta .btn-outline-green:hover {
    background: #059669;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .logo-item {
        height: 50px;
    }

    .logo-track {
        gap: 32px;
    }

    .client-section {
        padding: 40px 0;
    }

    .client-header h2 {
        font-size: 1.5rem;
    }

    .map-wrapper {
        height: 260px;
    }

    .review-card {
        padding: 20px;
    }

    .reviews-section {
        padding: 48px 0;
    }

    .logo-carousel::before,
    .logo-carousel::after {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .logo-item {
        height: 40px;
    }

    .logo-track {
        gap: 24px;
    }

    .map-wrapper {
        height: 200px;
    }
}

/* ==========================================
   Company Profile Page
   ========================================== */
.page-hero {
    background: linear-gradient(135deg, #052e16 0%, #065f46 100%);
    color: #ffffff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.2), transparent 70%);
    border-radius: 50%;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.15;
    color: #ffffff;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    line-height: 1.7;
}

.page-section {
    padding: 80px 0;
}

.page-section:nth-child(even) {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.page-section .section-header {
    margin-bottom: 40px;
}

.section-body {
    max-width: 860px;
    margin: 0 auto;
}

.section-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.section-body p:last-child {
    margin-bottom: 0;
}

/* Visi Misi Grid */
.visi-misi-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.visi-misi-block {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.visi-misi-block:hover {
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.08);
    border-color: #a7f3d0;
}

.visi-misi-block-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #ecfdf5;
    position: relative;
}

.visi-misi-block-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #059669;
    border-radius: 2px;
}

.visi-misi-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.visi-misi-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 16px;
    border-radius: 12px;
    transition: background 0.25s ease;
}

.visi-misi-item:hover {
    background: #f0fdf4;
}

.visi-misi-item-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.visi-misi-item p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

/* Why ISO Grid */
.why-iso-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

.why-iso-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-iso-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.06);
    border-color: #a7f3d0;
}

.why-iso-item i {
    color: #059669;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.why-iso-item span {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gray-700);
    font-weight: 500;
}

/* Layanan Utama Grid */
.layanan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.layanan-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layanan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.08);
    border-color: #a7f3d0;
}

.layanan-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #059669, #047857);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.layanan-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.layanan-body p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray-500);
    margin: 0;
}

/* Standards List Grid */
.standar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}

.standar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--gray-700);
    border-radius: 10px;
    transition: background 0.25s ease, color 0.25s ease;
}

.standar-item:hover {
    background: #f0fdf4;
    color: var(--dark);
}

.standar-item i {
    color: #059669;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.standar-item strong {
    font-weight: 600;
    color: var(--dark);
    margin-right: 2px;
}

/* Keunggulan Grid */
.keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.keunggulan-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.keunggulan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.08);
    border-color: #a7f3d0;
}

.keunggulan-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
}

.keunggulan-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.keunggulan-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray-500);
    margin: 0;
}

/* Industri List */
.industri-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.industri-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.25s ease;
}

.industri-item:hover {
    background: #f0fdf4;
    border-color: #a7f3d0;
    transform: translateY(-2px);
}

.industri-item i {
    color: #059669;
    font-size: 0.9rem;
}

/* Komitmen Card */
.komitmen-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #a7f3d0;
    border-radius: 20px;
    padding: 40px 36px;
}

.komitmen-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.komitmen-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 500;
    border-bottom: 1px solid rgba(5, 150, 105, 0.08);
}

.komitmen-card ul li:last-child {
    border-bottom: none;
}

.komitmen-card ul li i {
    color: #059669;
    font-size: 0.85rem;
}

.komitmen-text {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(5, 150, 105, 0.12);
}

.komitmen-text p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.komitmen-text p:last-child {
    margin-bottom: 0;
}

/* Contact on Company Profile */
.profile-contact {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 36px;
    border: 1px solid #e5e7eb;
    max-width: 860px;
    margin: 0 auto;
}

.profile-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.profile-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.profile-contact-item .contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.profile-contact-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.profile-contact-item p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

.profile-contact-item a {
    color: #059669;
    font-weight: 500;
}

.profile-contact-item a:hover {
    color: #047857;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
        color: #ffffff;
    }

    .page-section {
        padding: 48px 0;
    }

    .visi-misi-block {
        padding: 24px 18px;
    }

    .visi-misi-item {
        padding: 10px 12px;
    }

    .visi-misi-body ul li {
        justify-content: center;
        text-align: left;
    }

    .why-iso-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    .industri-list {
        grid-template-columns: 1fr 1fr;
    }

    .profile-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .komitmen-card {
        padding: 28px 20px;
    }

    .profile-contact {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.6rem;
        color: #ffffff;
    }

    .why-iso-grid {
        grid-template-columns: 1fr;
    }

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

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

    .industri-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Service Pages
   ========================================== */
.service-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.page-hero.service-hero {
    padding: 130px 0 70px;
}

.page-hero.service-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-hero.service-hero h1 {
    font-size: 2.4rem;
    text-align: center;
}

.page-hero.service-hero p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.service-content {
    max-width: 860px;
    margin: 0 auto;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 36px 0 16px;
}

.service-content h3:first-child {
    margin-top: 0;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.service-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: #f0fdf4;
    border-radius: 12px;
    border: 1px solid #d1fae5;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.08);
}

.service-benefit-item i {
    color: #059669;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.service-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.service-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.06);
    border-color: #a7f3d0;
}

.service-info-card .info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.service-info-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.service-info-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray-500);
    margin: 0;
}

.service-contact-bar {
    margin-top: 40px;
    padding: 32px 28px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #a7f3d0;
    border-radius: 20px;
    text-align: center;
}

.service-contact-bar h3 {
    margin: 0 0 8px !important;
    font-size: 1.2rem;
}

.service-contact-bar p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 20px !important;
}

.service-contact-bar .contact-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-contact-wa {
    background: linear-gradient(135deg, #059669, #047857);
    color: #ffffff;
    border: none;
}

.btn-contact-wa:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

.btn-contact-phone {
    background: #ffffff;
    color: var(--dark);
    border: 1px solid #d1d5db;
}

.btn-contact-phone:hover {
    border-color: #059669;
    color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.1);
}

.btn-contact-email {
    background: #ffffff;
    color: var(--dark);
    border: 1px solid #d1d5db;
}

.btn-contact-email:hover {
    border-color: #059669;
    color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero.service-hero {
        padding: 110px 0 50px;
    }

    .page-hero.service-hero h1 {
        font-size: 1.8rem;
    }

    .service-hero-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-benefits {
        grid-template-columns: 1fr;
    }

    .service-info-cards {
        grid-template-columns: 1fr;
    }

    .service-contact-bar .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-contact {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-hero.service-hero h1 {
        font-size: 1.4rem;
    }

    .service-content p {
        font-size: 0.92rem;
    }
}

/* ==========================================
   Contact Page
   ========================================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.06);
    border-color: #a7f3d0;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-card-body h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-card-body p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

.contact-card-body a {
    color: #059669;
    font-weight: 500;
}

.contact-card-body a:hover {
    color: #047857;
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.contact-form-wrapper h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-form-wrapper > p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    color: var(--dark);
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #059669, #047857);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

/* ==========================================
   Artikel Page
   ========================================== */
.artikel-section {
    padding: 80px 0;
}

.artikel-search {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.artikel-search input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 1.5px solid #d1d5db;
    border-radius: 14px;
    font-size: 0.9rem;
    font-family: var(--font-family);
    color: var(--dark);
    background: #ffffff;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.artikel-search input:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.artikel-search i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    font-size: 1rem;
}

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

.artikel-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.artikel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.08);
    border-color: #a7f3d0;
}

.artikel-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.artikel-card-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #059669;
    opacity: 0.5;
}

.artikel-card-body {
    padding: 24px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.artikel-card-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #059669;
    background: #ecfdf5;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: fit-content;
}

.artikel-card-date {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.artikel-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 8px;
    transition: color 0.25s ease;
}

.artikel-card:hover h3 {
    color: #059669;
}

.artikel-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray-500);
    margin-bottom: 16px;
    flex: 1;
}

.artikel-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #059669;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}

.artikel-card-link i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.artikel-card:hover .artikel-card-link i {
    transform: translateX(4px);
}

/* Artikel Pagination */
.artikel-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.artikel-pagination a,
.artikel-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    border: 1px solid #e5e7eb;
    background: #ffffff;
    transition: all 0.25s ease;
}

.artikel-pagination a:hover {
    border-color: #059669;
    color: #059669;
    background: #f0fdf4;
}

.artikel-pagination .active {
    background: #059669;
    border-color: #059669;
    color: #ffffff;
}

/* ==========================================
   Single Artikel Page
   ========================================== */
.artikel-single {
    padding: 80px 0;
}

.artikel-single-content {
    max-width: 780px;
    margin: 0 auto;
}

.artikel-single-header {
    text-align: center;
    margin-bottom: 40px;
}

.artikel-single-header .artikel-card-category {
    margin: 0 auto 12px;
}

.artikel-single-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 12px;
}

.artikel-single-header .artikel-meta {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.artikel-single-header .artikel-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.artikel-single-header .artikel-meta span i {
    color: #059669;
}

.artikel-single-body {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.artikel-single-body p {
    margin-bottom: 20px;
}

.artikel-single-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 36px 0 16px;
}

.artikel-single-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 12px;
}

.artikel-single-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.artikel-single-body ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 0.95rem;
}

.artikel-single-body ul li::before {
    content: '\2713';
    font-size: 1rem;
    color: #059669;
    font-weight: 700;
}

.artikel-single-body blockquote {
    margin: 28px 0;
    padding: 28px 32px 28px 56px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-left: 4px solid #059669;
    border-radius: 0 12px 12px 0;
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
    position: relative;
    text-align: left;
}

.artikel-single-body blockquote::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 18px;
    font-size: 2.2rem;
    color: #059669;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1;
    font-style: normal;
}

.artikel-single-body blockquote p {
    font-style: italic;
    margin-bottom: 0;
    text-align: left;
}

.artikel-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.artikel-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #059669;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.25s ease;
}

.artikel-nav a:hover {
    border-color: #059669;
    background: #f0fdf4;
}

.artikel-nav .nav-prev {
    text-align: left;
}

.artikel-nav .nav-next {
    text-align: right;
}

.artikel-back {
    text-align: center;
    margin-top: 32px;
}

.artikel-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.25s ease;
}

.artikel-back a:hover {
    border-color: #059669;
    color: #059669;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .artikel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .artikel-single-header h1 {
        font-size: 1.6rem;
    }

    .artikel-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .artikel-nav a {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .artikel-grid {
        grid-template-columns: 1fr;
    }

    .artikel-single-header h1 {
        font-size: 1.3rem;
    }

    .contact-section {
        padding: 48px 0;
    }

    .artikel-section {
        padding: 48px 0;
    }
}

/* ==========================================
   Homepage Artikel Section (bright distinct section)
   ========================================== */
.home-artikel {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}


.home-artikel .section-subtitle {
    color: #ca8a04;
}
.home-artikel .section-subtitle::before,
.home-artikel .section-subtitle::after {
    background: #fbbf24;
}

.home-artikel .section-title {
    color: #111827;
}

.home-artikel .section-description {
    color: #6b7280;
}

.home-artikel .artikel-grid {
    position: relative;
    z-index: 1;
}

.home-artikel .artikel-card {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.home-artikel .btn-contact-wa {
    background: #059669;
    color: #ffffff;
    border: none;
}
.home-artikel .btn-contact-wa:hover {
    background: #047857;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* ==========================================
   Single Artikel: Featured Image, Tags, Related
   ========================================== */
.artikel-featured-image {
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.artikel-featured-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.artikel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.artikel-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #f0fdf4;
    color: #059669;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.artikel-tag:hover {
    background: #059669;
    color: #ffffff;
}

/* Related Posts Section */
.artikel-related {
    padding: 0 0 80px;
    background: #ffffff;
}

.related-header {
    text-align: center;
    margin-bottom: 40px;
}

.related-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.related-header p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.artikel-related .artikel-grid {
    max-width: 900px;
    margin: 0 auto;
}

.artikel-card-img-link {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    position: relative;
}

.artikel-card-img-link img,
.artikel-card-img-link .artikel-card-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
    transition: transform 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.artikel-card:hover .artikel-card-img-link .artikel-card-image {
    transform: scale(1.08);
}

.artikel-card-img-link .artikel-card-image-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #059669;
    opacity: 0.5;
}

.artikel-card-body h3 a {
    color: inherit;
    transition: color 0.25s ease;
}

.artikel-card-body h3 a:hover {
    color: #059669;
}

/* Responsive */
@media (max-width: 768px) {
    .artikel-featured-image {
        margin-bottom: 24px;
        border-radius: 12px;
    }

    .related-header h2 {
        font-size: 1.4rem;
    }

    .artikel-related {
        padding: 0 0 48px;
    }

    .artikel-card-img-link {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .artikel-card-img-link {
        height: 160px;
    }
}

/* ==========================================
   Single Artikel: Two-Column Layout
   ========================================== */
.artikel-two-col {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
    align-items: start;
}

.artikel-main {
    min-width: 0;
}

.artikel-main .artikel-single-content {
    max-width: 100%;
}

/* Article content images - full width like featured image */
.artikel-single-body img,
.artikel-single-body img.size-full,
.artikel-single-body img.size-large,
.artikel-single-body img[class*="wp-image-"],
.artikel-single-body .wp-block-image img,
.artikel-single-body figure img,
.artikel-single-body p img,
.artikel-single-body a img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    border-radius: 12px;
    margin: 24px 0 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Force override inline styles on content images */
.artikel-single-body img[style] {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
}

.artikel-single-body figure,
.artikel-single-body .wp-block-image {
    margin: 24px 0;
    width: 100% !important;
    max-width: 100% !important;
}

.artikel-single-body .wp-block-image figcaption {
    text-align: center;
    font-size: 0.82rem;
    color: #6b7280;
    margin-top: 8px;
}

/* Sidebar */
.artikel-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.sidebar-card:hover {
    border-color: #a7f3d0;
}

.sidebar-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.sidebar-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.sidebar-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.25s ease;
}

.sidebar-btn:last-child {
    margin-bottom: 0;
}

.sidebar-btn-wa {
    background: linear-gradient(135deg, #059669, #047857);
    color: #ffffff;
}

.sidebar-btn-wa:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.sidebar-btn-phone {
    background: #f3f4f6;
    color: var(--dark);
}

.sidebar-btn-phone:hover {
    background: #ecfdf5;
    color: #059669;
    transform: translateY(-2px);
}

.sidebar-btn-email {
    background: #f3f4f6;
    color: var(--dark);
}

.sidebar-btn-email:hover {
    background: #ecfdf5;
    color: #059669;
    transform: translateY(-2px);
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    padding: 7px 0;
    border-bottom: 1px solid #f3f4f6;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list li a {
    font-size: 0.83rem;
    color: var(--gray-700);
    display: flex;
    padding-left: 0;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.sidebar-list li a:hover {
    color: #059669;
}



.sidebar-cta {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-color: #a7f3d0;
}

.sidebar-cta h4 {
    color: #065f46;
}

/* Fix artikel single content width for two-col */
.artikel-single .container {
    max-width: 1200px;
}

/* Responsive */
@media (max-width: 900px) {
    .artikel-two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .artikel-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .artikel-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Artikel Single: Content Formatting Fixes
   ========================================== */
/* Ensure content starts from same width as header */
.artikel-single-content {
    max-width: 100%;
}

/* Clean up any remaining font-awesome text entities */
.artikel-single-body *:not(i):not(.fas):not(.far):not(.fab) {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Paragraphs alignment fix */
.artikel-single-body p {
    text-align: left;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gray-700);
}

/* Heading fixes inside article body */
.artikel-single-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 36px 0 16px;
    font-family: 'Playfair Display', serif;
}

.artikel-single-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 12px;
}

/* Lists fix */
.artikel-single-body ul, 
.artikel-single-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.artikel-single-body ul li,
.artikel-single-body ol li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.artikel-single-body ul li::before {
    display: none;
}

.artikel-single-body ul {
    list-style: disc;
}

.artikel-single-body ol {
    list-style: decimal;
}

/* Blockquote fix */


.artikel-single-body blockquote p {
    margin-bottom: 0;
}

/* Related articles section - full width */
.artikel-related .container {
    max-width: 1200px;
}

.artikel-related .artikel-grid {
    max-width: 100%;
}

/* WPCaption fix */
.artikel-single-body .wp-caption {
    width: 100% !important;
    max-width: 100% !important;
    margin: 24px 0;
}

.artikel-single-body .wp-caption img {
    width: 100% !important;
    height: auto !important;
}

.artikel-single-body .wp-caption-text {
    text-align: center;
    font-size: 0.82rem;
    color: #6b7280;
    margin-top: 8px;
}

/* Alignments */
.artikel-single-body .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.artikel-single-body .alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 16px;
}

.artikel-single-body .alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 16px;
}

/* ==========================================
   Navbar Search
   ========================================== */
.aha-nav-search {
    position: relative;
    display: flex;
    align-items: center;
}

.aha-nav-search form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.aha-nav.is-scrolled .aha-nav-search form {
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.aha-nav-search input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.82rem;
    padding: 6px 10px;
    width: 120px;
    transition: width 0.3s ease;
    font-family: inherit;
}

.aha-nav-search input::placeholder {
    color: rgba(255,255,255,0.5);
}

.aha-nav.is-scrolled .aha-nav-search input {
    color: #111827;
}

.aha-nav.is-scrolled .aha-nav-search input::placeholder {
    color: #9ca3af;
}

.aha-nav-search input:focus {
    width: 180px;
}

.aha-nav-search button {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    padding: 6px 10px;
    cursor: pointer;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.aha-nav.is-scrolled .aha-nav-search button {
    color: #9ca3af;
}

.aha-nav-search button:hover {
    color: #ffffff;
}

.aha-nav.is-scrolled .aha-nav-search button:hover {
    color: #059669;
}

@media (max-width: 900px) {
    .aha-nav-search {
        display: none;
    }
}

@media (max-width: 768px) {
    .sidebar-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 0.9rem !important;
    }

    .contact-card-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
    }

    .profile-contact-item .contact-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .sidebar-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 0.8rem !important;
    }

    .contact-card-icon,
    .profile-contact-item .contact-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 0.85rem !important;
    }

    .aha-nav-search input {
        width: 60px;
        font-size: 0.72rem;
        padding: 3px 5px;
    }

    .aha-nav-search input:focus {
        width: 90px;
    }

    .aha-nav-search button {
        padding: 3px 5px;
        font-size: 0.72rem;
    }
}

/* ==========================================
   Mobile Fixed Burger Button
   ========================================== */
.aha-burger-fixed {
    display: none;
    position: fixed;
    top: 18px;
    right: 14px;
    z-index: 99999;
    width: 42px;
    height: 42px;
    border: none;
    background: rgba(10, 18, 28, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    transition: background 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.aha-burger-fixed:hover {
    background: rgba(10, 18, 28, 0.75);
}

.aha-burger-fixed .aha-burger-lines {
    position: relative;
    display: block;
    width: 20px;
    height: 14px;
    margin: 0 auto;
}

.aha-burger-fixed .aha-burger-lines span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.aha-burger-fixed .aha-burger-lines span:nth-child(1) { top: 0; }
.aha-burger-fixed .aha-burger-lines span:nth-child(2) { top: 6px; }
.aha-burger-fixed .aha-burger-lines span:nth-child(3) { bottom: 0; }

.aha-burger-fixed.is-open .aha-burger-lines span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.aha-burger-fixed.is-open .aha-burger-lines span:nth-child(2) {
    opacity: 0;
    transform: translateX(-6px);
}

.aha-burger-fixed.is-open .aha-burger-lines span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.aha-nav.is-scrolled ~ .aha-burger-fixed {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.aha-nav.is-scrolled ~ .aha-burger-fixed .aha-burger-lines span {
    background: #111827;
}

@media (max-width: 900px) {
    .aha-burger-fixed {
        display: block;
    }
}
