 :root {
 --primary-color: #1B3D2F;
 --primary-light: #3C5F4A;
 --secondary-color: #CBA135;
 --text-on-primary: #FFFFFF;
 --background-color: #F5F5F5;
     --border-color: #1B3D2F; /* atau warna lain yang cukup terlihat */

 --text-dark: #1a1a1a;
 --text-gray: #6b7280;
 --white: #ffffff;
 --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
 --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
 }

 * {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 }

 body {
 font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
 line-height: 1.6;
 color: var(--text-dark);
 background: var(--white);

 }

 .container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 1rem;
 }

 /* Header */
 .header {
 position: fixed;
 top: 0;
 width: 100%;
 background: rgba(255, 255, 255, 0.95);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid #e5e7eb;
 z-index: 1000;
 transition: all 0.3s ease;
 }

 .nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 1rem 0;
 }
 .nav-menu a.active {
 color: var(--primary-color);
 font-weight: 600;
 border-bottom: 3px solid var(--secondary-color);
 }



 /* Page Header */
 .page-header {
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
 padding: 10rem 0 4rem;
 color: var(--text-on-primary);
 text-align: center;
 }

 .page-header h1 {
 font-size: 40px;
 margin-bottom: 1rem;
 }

 .page-header p {
 font-size: 1.2rem;
 opacity: 0.9;
 max-width: 600px;
 margin: 0 auto;
 }



 .services .btn.btn-secondary {
 display: inline-block;
 margin-top: 1rem;
 padding: 0.75rem 1.5rem;
 font-size: 1rem;
 border-radius: 6px;
 background: var(--secondary-color);
 color: var(--text-dark);
 text-decoration: none;
 transition: 0.3s ease;
 }

 .services .btn.btn-secondary:hover {
 background: var(--primary-light);
 color: var(--white);
 }



 .logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--primary-color);
 text-decoration: none;
 }

 .logo-desktop {
 display: block;
 }

 .logo-link {
 display: inline-flex;
 align-items: center;
 text-decoration: none;
 gap: 0.5rem;
 }

 .about-mission {

 list-style: decimal inside; /* tampilkan angka di dalam list */
 padding-left: 0;
 margin-top: 1rem;
 text-align: left;
 }

 .about-mission li {
 margin-bottom: 0.75rem;
 align-items: flex-start;
 gap: 0.90rem; /* jarak antar ikon dan teks */
 line-height: 1.9;
 font-size: 1rem;
 }

 .about-mission i {
 font-size: 8px; /* sangat kecil dan halus */
 color: var(--primary-color);
 margin-top: 0.4rem; /* posisi vertikal sedikit di tengah */
 flex-shrink: 0;
 }


 .logo-mobile {
 display: none;
 font-weight: bold;
 font-size: 1rem;
 color: var(--primary-color);
 }

 /* Saat layar kecil (misalnya max-width 768px) */
 @media (max-width: 768px) {
 .logo-desktop {
 display: none;
 }

 .logo-mobile {
 display: block;
 }
 }


 .nav-menu {
 display: flex;
 list-style: none;
 gap: 2rem;
 margin: 0;
 }

 .nav-menu a {
 color: var(--text-dark);
 text-decoration: none;
 font-weight: 500;
 transition: color 0.3s ease;
 }

 .nav-menu a:hover {
 color: var(--primary-color);
 }

 .nav-toggle {
 display: none;
 background: none;
 border: none;
 font-size: 1.5rem;
 cursor: pointer;
 color: var(--text-dark);
 }

 .cta-btn {
 background: var(--secondary-color);
 color: var(--text-dark);
 padding: 0.75rem 1.5rem;
 border-radius: 8px;
 text-decoration: none;
 font-weight: 600;
 transition: all 0.3s ease;
 }

 .cta-btn:hover {
 background: #d4a73a;
 transform: translateY(-1px);
 }

 /* Hero Section */
 .hero {
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
 padding: 8rem 0 4rem;
 color: var(--text-on-primary);
 min-height: 100vh;
 display: flex;
 align-items: center;
 }

 .hero-content {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 4rem;
 align-items: center;
 }

 .hero-text h1 {
 font-size: clamp(2.5rem, 5vw, 4rem);
 font-weight: 500;
 line-height: 1.1;
 margin-bottom: 1.5rem;
 }

 .hero-text p {
 font-size: 1.2rem;
 margin-bottom: 2rem;
 opacity: 0.9;
 line-height: 1.6;
 }

 .hero-buttons {
 display: flex;
 gap: 1rem;
 flex-wrap: wrap;
 }

 .btn {
 padding: 1rem 2rem;
 border-radius: 8px;
 text-decoration: none;
 font-weight: 600;
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 transition: all 0.3s ease;
 }

 .btn-primary {
 background: var(--secondary-color);
 color: var(--text-dark);
 }

 .btn-primary:hover {
 background: #d4a73a;
 transform: translateY(-2px);
 }

 .btn-secondary {
 background: transparent;
 color: var(--text-on-primary);
 border: 2px solid var(--text-on-primary);
 }

 .btn-secondary:hover {
 background: var(--text-on-primary);
 color: var(--primary-color);
 }

 .hero-visual {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 1rem;
 }



 .hero-card {
 background: rgba(255, 255, 255, 0.1);
 backdrop-filter: blur(10px);
 padding: 2rem;
 border-radius: 12px;
 text-align: center;
 border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .hero-card i {
 font-size: 2rem;
 color: var(--secondary-color);
 margin-bottom: 1rem;
 }

 .hero-card h3 {
 font-size: 1.1rem;
 margin-bottom: 0.5rem;
 }

 .hero-card p {
 font-size: 0.9rem;
 opacity: 0.8;
 }

 /* Services Section */
 .services {
 padding: 3rem 0;
 background: var(--background-color);
 }

 .servicesL {
 padding: 10rem 0;
 background: var(--background-color);
 }

 .section-header {
 text-align: center;
 margin-bottom: 4rem;
 }

 .section-header h2 {
 font-size: clamp(2rem, 4vw, 3rem);
 font-weight: 700;
 color: var(--text-dark);
 margin-bottom: 1rem;
 }

 .section-header p {
 font-size: 1.1rem;
 color: var(--text-gray);
 max-width: 600px;
 margin: 0 auto;
 }

 .services-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
 }

 .service-card {
 background: var(--white);
 padding: 2rem;
 border-radius: 12px;
 box-shadow: var(--shadow);
 transition: all 0.3s ease;
 border-top: 4px solid var(--primary-color);
 }

 .service-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
 }

 .service-card i {
 font-size: 2.5rem;
 color: var(--primary-color);
 margin-bottom: 1rem;
 }

 .service-card h3 {
 font-size: 1.3rem;
 font-weight: 600;
 margin-bottom: 1rem;
 color: var(--text-dark);
 }

 .service-card p {
 color: var(--text-gray);
 line-height: 1.6;
 }

 /* Stats Section */
 .stats {
 background: var(--primary-color);
 padding: 4rem 0;
 color: var(--text-on-primary);
 }

 .stats-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 2rem;
 text-align: center;
 }

 .stat-item h3 {
 font-size: 3rem;
 font-weight: 700;
 color: var(--secondary-color);
 margin-bottom: 0.5rem;
 }

 .stat-item p {
 font-size: 1.1rem;
 opacity: 0.9;
 }

 /* About Section */
 .about {
 padding: 4rem 0;
 }

 .about-content {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 4rem;
 align-items: justify;
 }

 .about-text h2 {
 font-size: clamp(2rem, 4vw, 3rem);
 font-weight: 700;
 color: var(--text-dark);
 margin-bottom: 1.5rem;
 }

 .about-text p {
 font-size: 1.1rem;
 color: var(--text-gray);
 margin-bottom: 1.5rem;
 line-height: 1.7;
 }

 .about-features {
 list-style: none;
 margin-bottom: 2rem;
 }

 .about-features li {
 display: flex;
 align-items: center;
 margin-bottom: 1rem;
 font-size: 1rem;
 }

 .about-features i {
 color: var(--secondary-color);
 margin-right: 1rem;
 font-size: 1.2rem;
 }

 .about-visual {
 background: var(--primary-color);
 color: var(--text-on-primary);
 padding: 3rem;
 border-radius: 12px;
 text-align: center;
 }

 .about-visual i {
 font-size: 4rem;
 color: var(--secondary-color);
 margin-bottom: 2rem;
 }

 .about-visual h3 {
 font-size: 1.5rem;
 margin-bottom: 1rem;
 }

 /* Footer */
 .footer {
 background: var(--text-dark);
 color: var(--text-on-primary);
 padding: 3rem 0 1rem;
 }

 
 .footer-content {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
 margin-bottom: 2rem;
 }

 .footer-section h3 {
 color: var(--secondary-color);
 margin-bottom: 1rem;
 }

 .footer-section p,
 .footer-section a {
 color: #d1d5db;
 text-decoration: none;
 line-height: 1.8;
 }




 .footer-section a:hover {
 color: var(--secondary-color);
 }

 .footer-bottom {
 border-top: 1px solid #374151;
 padding-top: 1rem;
 text-align: center;
 color: #9ca3af;
 }

 /* WhatsApp Float */
 .whatsapp-float {
 position: fixed;
 bottom: 2rem;
 right: 2rem;
 background: #25d366;
 color: white;
 width: 60px;
 height: 60px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.5rem;
 text-decoration: none;
 box-shadow: var(--shadow-lg);
 z-index: 1000;
 transition: all 0.3s ease;
 }

 .whatsapp-float:hover {
 background: #128c7e;
 transform: scale(1.1);
 }

 /* Scroll to Top Button */
 .scroll-top {
 position: fixed;
 bottom: 8rem;
 right: 2rem;
 background: var(--primary-color);
 color: var(--text-on-primary);
 width: 50px;
 height: 50px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.2rem;
 text-decoration: none;
 box-shadow: var(--shadow-lg);
 z-index: 1000;
 transition: all 0.3s ease;
 opacity: 0;
 visibility: hidden;
 transform: translateY(20px);
 }

 .scroll-top.show {
 opacity: 1;
 visibility: visible;
 transform: translateY(0);
 }

 .scroll-top:hover {
 background: var(--primary-light);
 transform: translateY(-2px);
 }

 /* Responsive Design */

 /* Large Desktop */
 @media (min-width: 1400px) {
 .container {
 max-width: 1400px;
 padding: 0 2rem;
 }


 .hero-text h1 {
 font-size: 3.5rem;
 }

 .section-header h2 {
 font-size: 3.5rem;
 }
 }

 /* Desktop */
 @media (max-width: 1200px) {
 .container {
 padding: 0 1.5rem;
 }

 .hero-content {
 gap: 3rem;
 }



 .about-content {
 gap: 3rem;
 }
 }

 /* Large Tablet */
 @media (max-width: 900px) {
 .hero-content {
 grid-template-columns: 1fr;
 text-align: center;
 padding: 1rem 0 4rem;

 gap: 2.5rem;
 }


 .hero-visual {
 max-width: 450px;
 margin: 0 auto;
 }

 .about-content {
 grid-template-columns: 1fr;
 text-align: center;
 gap: 2.5rem;
 }

 .services-grid {
 grid-template-columns: repeat(2, 1fr);
 }

 .stats-grid {
 grid-template-columns: repeat(2, 1fr);
 }
 }

 @media (max-width: 768px) {
 .hero-visual {
 display: none;
 }

 }


 /* Tablet Landscape */
 @media (max-width: 1024px) {
 .container {
 padding: 0 1.5rem;
 }

 .nav {
 padding: 1rem 0;
 }

 .nav-menu {
 gap: 1.5rem;
 }

 .logo {
 font-size: 1.3rem;
 }

 .cta-btn {
 padding: 0.6rem 1.2rem;
 font-size: 0.9rem;
 }

 .hero {
 padding: 10rem 0 4rem;
 }



 .hero-content {
 grid-template-columns: 1fr;
 gap: 3rem;
 text-align: center;
 }

 .hero-text h1 {
 font-size: clamp(2.2rem, 4vw, 3.5rem);
 }



 .hero-text p {
 font-size: 1.1rem;
 max-width: 600px;
 margin: 0 auto 2rem;
 }

 .hero-visual {
 max-width: 500px;
 margin: 0 auto;
 grid-template-columns: repeat(2, 1fr);
 gap: 1.5rem;
 }

 .hero-card {
 padding: 1.5rem;
 }

 .hero-buttons {
 justify-content: center;
 }

 .about-content {
 grid-template-columns: 1fr;
 gap: 3rem;
 text-align: center;
 }

 .about-text {
 max-width: 700px;
 margin: 0 auto;
 }

 .about-visual {
 max-width: 400px;
 margin: 0 auto;
 }

 .services-grid {
 grid-template-columns: repeat(2, 1fr);
 gap: 1.5rem;
 }

 .stats-grid {
 grid-template-columns: repeat(2, 1fr);
 gap: 2rem;
 }

 .footer-content {
 grid-template-columns: repeat(2, 1fr);
 gap: 2rem;
 }
 }

 /* Close button - hidden by default */
 .nav-close {
 display: none;
 position: absolute;
 top: 1rem;
 right: 1rem;
 background: none;
 border: none;
 font-size: 1.5rem;
 cursor: pointer;
 color: var(--text-dark);
 padding: 0.5rem;
 border-radius: 50%;
 transition: all 0.3s ease;
 }

 .nav-close:hover {
 background: var(--background-color);
 color: var(--primary-color);
 }

 /* Tablet Portrait */
 @media (max-width: 768px) {
 .nav-toggle {
 display: block;
 }

 .nav-menu {
 position: fixed;
 top: 0;
 right: -100%;
 width: 280px;
 height: 100vh;
 background: var(--white);
 flex-direction: column;
 padding: 6rem 2rem 2rem;
 box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
 transition: all 0.3s ease;
 gap: 1.5rem;
 z-index: 999;
 }

 .nav-menu.active {
 right: 0;
 }

 .nav-close {
 display: block;
 }

 .cta-btn {
 display: none;
 }

 .hero {
 padding: 6rem 0 3rem;
 min-height: auto;
 }

 .hero-content {
 gap: 2rem;
 }

 .hero-visual {
 grid-template-columns: repeat(2, 1fr);
 gap: 1rem;
 max-width: 400px;
 }

 .hero-buttons {
 justify-content: center;
 gap: 1rem;
 }

 .services-grid {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }

 .service-card {
 padding: 1.5rem;
 }

 .stats-grid {
 grid-template-columns: repeat(2, 1fr);
 gap: 1.5rem;
 }

 .stat-item h3 {
 font-size: 2.5rem;
 }

 .container {
 padding: 0 1rem;
 }

 .services,
 .about {
 padding: 4rem 0;
 }

 .stats {
 padding: 3rem 0;
 }

 .footer-content {
 grid-template-columns: 1fr;
 gap: 2rem;
 text-align: center;
 }
 }

 /* Mobile Landscape */
 @media (max-width: 640px) {
 .hero-text h1 {
 font-size: 2.5rem;
 line-height: 1.2;
 }

 .hero-text p {
 font-size: 1.1rem;
 }

 .section-header h2 {
 font-size: 2rem;
 }

 .section-header p {
 font-size: 1rem;
 }

 .about-text h2 {
 font-size: 2rem;
 }

 .about-text p {
 font-size: 1rem;
 }

 .hero-card {
 padding: 1.5rem;
 }

 .hero-card h3 {
 font-size: 1rem;
 }

 .hero-card p {
 font-size: 0.85rem;
 }
 }

 /* Mobile Portrait */
 @media (max-width: 480px) {
 .container {
 padding: 0 1rem;
 }

 .nav {
 padding: 0.75rem 0;
 }

 .logo {
 font-size: 1.2rem;
 }

 .hero {
 padding: 5rem 0 2rem;
 }

 .hero-text h1 {
 font-size: 2rem;
 margin-bottom: 1rem;
 }

 .hero-text p {
 font-size: 1rem;
 margin-bottom: 1.5rem;
 }

 .hero-visual {
 grid-template-columns: 1fr;
 gap: 1rem;
 max-width: 280px;
 }

 .hero-card {
 padding: 1.25rem;
 }

 .hero-card i {
 font-size: 1.5rem;
 }

 .hero-buttons {
 flex-direction: column;
 align-items: center;
 gap: 0.75rem;
 }

 .btn {
 width: 100%;
 justify-content: center;
 max-width: 280px;
 padding: 0.875rem 1.5rem;
 font-size: 0.9rem;
 }

 .stats-grid {
 grid-template-columns: 1fr;
 gap: 2rem;
 }

 .stat-item h3 {
 font-size: 2.5rem;
 }

 .stat-item p {
 font-size: 1rem;
 }

 .service-card {
 padding: 1.5rem;
 text-align: center;
 }

 .service-card i {
 font-size: 2rem;
 }

 .service-card h3 {
 font-size: 1.2rem;
 }

 .service-card p {
 font-size: 0.95rem;
 }

 .about-visual {
 padding: 2rem;
 }

 .about-visual i {
 font-size: 3rem;
 }

 .about-visual h3 {
 font-size: 1.3rem;
 }

 .about-features li {
 font-size: 0.95rem;
 }

 .services,
 .about {
 padding: 3rem 0;
 }

 .stats {
 padding: 2.5rem 0;
 }

 .footer {
 padding: 2rem 0 1rem;
 }

 .footer-section h3 {
 font-size: 1.1rem;
 }

 .footer-section p,
 .footer-section a {
 font-size: 0.9rem;
 }

 .whatsapp-float {
 bottom: 1rem;
 right: 1rem;
 width: 50px;
 height: 50px;
 font-size: 1.2rem;
 }

 .scroll-top {
 bottom: 7rem;
 right: 1rem;
 width: 45px;
 height: 45px;
 font-size: 1.1rem;
 }
 }

 /* Extra Small Mobile */
 @media (max-width: 360px) {
 .container {
 padding: 0 0.75rem;
 }

 .hero-text h1 {
 font-size: 1.8rem;
 }

 .section-header h2 {
 font-size: 1.8rem;
 }

 .about-text h2 {
 font-size: 1.8rem;
 }

 .hero-visual {
 max-width: 250px;
 }

 .hero-card {
 padding: 1rem;
 }

 .btn {
 max-width: 250px;
 padding: 0.75rem 1.25rem;
 }

 .service-card {
 padding: 1.25rem;
 }

 .about-visual {
 padding: 1.5rem;
 }

 .whatsapp-float {
 width: 45px;
 height: 45px;
 font-size: 1.1rem;
 }
 }

 /* High DPI Displays */
 @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
 .hero-card,
 .service-card,
 .about-visual {
 border: 0.5px solid rgba(0, 0, 0, 0.1);
 }
 }

 /* Landscape Orientation on Mobile */
 @media (max-height: 500px) and (orientation: landscape) {
 .hero {
 padding: 4rem 0 2rem;
 min-height: auto;
 }

 .hero-content {
 gap: 2rem;
 }

 .hero-visual {
 grid-template-columns: repeat(4, 1fr);
 gap: 0.5rem;
 }

 .hero-card {
 padding: 1rem;
 }

 .services,
 .about {
 padding: 3rem 0;
 }
 }

 /* Animations */
 @keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(30px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
 }

 .fade-in {
 animation: fadeInUp 0.6s ease forwards;
 }

 .service-card {
 opacity: 0;
 transform: translateY(20px);
 animation: fadeInUp 0.6s ease forwards;
 }



 /* BLOG ===========================*/


 /* Blog Section */

 .blog-section {
 padding: 0 0 2rem;
 }


 .blog-filters {
 display: flex;
 justify-content: center;
 gap: 1rem;
 margin-bottom: 3rem;
 flex-wrap: wrap;
 }

 .filter-btn {
 background: transparent;
 border: 2px solid var(--border-color);
 color: var(--text-gray);
 padding: 0.75rem 1.5rem;
 border-radius: 25px;
 font-weight: 500;
 cursor: pointer;
 transition: all 0.3s ease;
 }

 .filter-btn:hover,
 .filter-btn.active {
 background: var(--primary-color);
 color: var(--text-on-primary);
 border-color: var(--primary-color);
 }

 .blog-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 1rem;
 margin-bottom: 3rem;
 }

 .blog-card {
 background: var(--white);
 border-radius: 12px;
 overflow: hidden;
 box-shadow: var(--shadow);
 transition: all 0.3s ease;
 opacity: 0;
 transform: translateY(20px);
 animation: fadeInUp 0.6s ease forwards;
 }

 .blog-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
 }

 .blog-card-image {
 position: relative;
 height: 200px;
 background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
 display: flex;
 align-items: center;
 justify-content: center;
 overflow: hidden;
 }

 .blog-card-image i {
 font-size: 3rem;
 color: var(--secondary-color);
 opacity: 0.8;
 }

 .blog-card-category {
 position: absolute;
 top: 1rem;
 left: 1rem;
 background: var(--secondary-color);
 color: var(--text-dark);
 padding: 0.25rem 0.75rem;
 border-radius: 15px;
 font-size: 0.8rem;
 font-weight: 600;
 }

 .blog-card-content {
 padding: 1.5rem;
 }

 .blog-card-meta {
 display: flex;
 align-items: center;
 gap: 1rem;
 margin-bottom: 1rem;
 font-size: 0.9rem;
 color: var(--text-gray);
 flex-wrap: wrap;
 }

 .blog-card-meta i {
 color: var(--primary-color);
 }

 .blog-card-meta .author-info {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 }

 .blog-card h3 {
 font-size: 1.3rem;
 font-weight: 600;
 margin-bottom: 1rem;
 color: var(--text-dark);
 line-height: 1.4;
 }

 .blog-card p {
 color: var(--text-gray);
 margin-bottom: 1.5rem;
 line-height: 1.6;
 }

 .blog-card-footer {
 display: flex;
 justify-content: flex-start;
 align-items: center;
 }

 .read-more {
 color: var(--primary-color);
 text-decoration: none;
 font-weight: 600;
 display: flex;
 align-items: center;
 gap: 0.5rem;
 transition: all 0.3s ease;
 font-size: 0.9rem;
 }

 .read-more:hover {
 color: var(--secondary-color);
 transform: translateX(5px);
 }

 .author-avatar {
 width: 24px;
 height: 24px;
 border-radius: 50%;
 background: var(--primary-color);
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--text-on-primary);
 font-weight: 600;
 font-size: 0.65rem;
 flex-shrink: 0;
 }

 /* Featured Post */
 .featured-post {
 background: var(--background-color);
 border-radius: 12px;
 padding: 2rem;
 margin-bottom: 3rem;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 2rem;
 align-items: center;
 }

 .featured-content h2 {
 font-size: 2rem;
 font-weight: 700;
 color: var(--text-dark);
 margin-bottom: 1rem;
 }

 .featured-content p {
 color: var(--text-gray);
 margin-bottom: 1.5rem;
 font-size: 1.1rem;
 }

 .featured-meta {
 display: flex;
 align-items: center;
 gap: 2rem;
 margin-bottom: 1.5rem;
 font-size: 0.9rem;
 color: var(--text-gray);
 }

 .featured-visual {
 background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
 border-radius: 8px;
 height: 250px;
 display: flex;
 align-items: center;
 justify-content: center;
 }

 .featured-visual i {
 font-size: 4rem;
 color: var(--secondary-color);
 }

 /* Pagination */
 .pagination {
 display: flex;
 justify-content: center;
 gap: 0.5rem;
 margin-top: 3rem;
 }

 .pagination button {
 background: transparent;
 border: 2px solid var(--border-color);
 color: var(--text-gray);
 padding: 0.75rem 1rem;
 border-radius: 8px;
 cursor: pointer;
 transition: all 0.3s ease;
 min-width: 45px;
 }

 .pagination button:hover,
 .pagination button.active {
 background: var(--primary-color);
 color: var(--text-on-primary);
 border-color: var(--primary-color);
 }

 .pagination button:disabled {
 opacity: 0.5;
 cursor: not-allowed;
 }

 /* Search Bar */
 .search-section {
 background: var(--background-color);
 padding: 2rem 0;
 margin-bottom: 2rem;
 position: relative;

 }

 .search-container {
 max-width: auto;
 margin-left: 0;
 margin-right: auto;
 position: relative;
 }


 .search-input {
 width: 100%;
 padding: 1rem 1rem 1rem 3rem;
 border: 1px solid var(--border-color);
 border-radius: 25px;
 font-size: 1rem;
 outline: none;
 transition: all 0.3s ease;
 }

 .search-input:focus {
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(27, 61, 47, 0.1);
 }

 .search-icon {
 position: absolute;
 left: 1rem;
 top: 50%;
 transform: translateY(-50%);
 color: var(--text-gray);
 }

 /* Newsletter */
 .newsletter {
 background: var(--primary-color);
 color: var(--text-on-primary);
 padding: 3rem 0;
 text-align: center;
 }

 .newsletter h3 {
 font-size: 1.8rem;
 margin-bottom: 1rem;
 }

 .newsletter p {
 margin-bottom: 2rem;
 opacity: 0.9;
 }

 .newsletter-form {
 display: flex;
 max-width: 400px;
 margin: 0 auto;
 gap: 1rem;
 }

 .newsletter-input {
 flex: 1;
 padding: 0.75rem 1rem;
 border: none;
 border-radius: 8px;
 outline: none;
 }

 .newsletter-btn {
 background: var(--secondary-color);
 color: var(--text-dark);
 border: none;
 padding: 0.75rem 1.5rem;
 border-radius: 8px;
 font-weight: 600;
 cursor: pointer;
 transition: all 0.3s ease;
 }

 .newsletter-btn:hover {
 background: #d4a73a;
 }




 @media (max-width: 480px) {
 .container {
 padding: 0 1rem;
 }

 .page-header {
 padding: 5rem 0 2rem;
 }

 .page-header h1 {
 font-size: 1.5rem;
 }

  .page-header p {
 font-size: 1rem;
 }

 .blog-card-content {
 padding: 1rem;
 }

 .read-more {
 font-size: 0.85rem;
 }

 .featured-post {
 padding: 1.5rem;
 }

 .featured-content h2 {
 font-size: 1.5rem;
 }

 .blog-filters {
 justify-content: flex-start;
 overflow-x: auto;
 padding-bottom: 0.5rem;
 }

 .filter-btn {
 white-space: nowrap;
 flex-shrink: 0;
 }

 }

 /* Animations */
 @keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(30px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
 }

 .blog-card:nth-child(1) { animation-delay: 0.1s; }
 .blog-card:nth-child(2) { animation-delay: 0.2s; }
 .blog-card:nth-child(3) { animation-delay: 0.3s; }
 .blog-card:nth-child(4) { animation-delay: 0.4s; }
 .blog-card:nth-child(5) { animation-delay: 0.5s; }
 .blog-card:nth-child(6) { animation-delay: 0.6s; }

 /* Loading Animation */
 .loading {
 display: none;
 text-align: center;
 padding: 2rem;
 }

 .loading.show {
 display: block;
 }

 .spinner {
 border: 3px solid var(--border-color);
 border-top: 3px solid var(--primary-color);
 border-radius: 50%;
 width: 40px;
 height: 40px;
 animation: spin 1s linear infinite;
 margin: 0 auto 1rem;
 }

 @keyframes spin {
 0% { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
 }

 /* ======CLIENT======= */

 /* Client Page */

 .clients {
 padding: 0 0 2rem;
 }

 .search-bar {
 max-width: 400px;
 margin: 0 auto;
 position: relative;
 }

 .search-bar input {
 padding: 0.75rem 1.25rem;
 border: 1px solid #ccc;
 border-radius: 8px;
 font-size: 1rem;
 width: 100%;
 }

 /* Table styling */
 .client-table {
 width: 100%;
 border-collapse: collapse;
 margin-top: 1rem;
 background-color: #fff;
 }

 .client-table th,
 .client-table td {
 padding: 0.75rem 1rem;
 border-bottom: 1px solid #ddd;
 text-align: left;
 font-size: 1rem;
 }

 .client-table th {
 background-color: var(--primary-color);
 color: var(--text-on-primary);
 }

 .client-table td {
 color: var(--text-dark);
 }

 /* Responsive */
 @media (max-width: 768px) {
 .page-header {
 padding: 5rem 0 3rem;
 }

 .client-table th,
 .client-table td {
 font-size: 0.875rem;
 padding: 0.6rem 0.5rem;
 }

 .search-bar {
 padding: 0 1rem;
 }
 }


 /* ======POST=============== */

 /* Article Header */
 .article-header {
 background: var(--background-color);
 padding: 12rem 0 3rem;
 }

 .article-category {
 display: inline-block;
 background: var(--secondary-color);
 color: var(--text-dark);
 padding: 0.5rem 1rem;
 border-radius: 20px;
 font-size: 0.9rem;
 font-weight: 600;
 margin-bottom: 1.5rem;
 }

 .article-title {
 font-size: clamp(1.5rem, 3vw, 2.25rem); 
 font-weight: 700;
 color: var(--text-dark);
 margin-bottom: 1.5rem;
 line-height: 1.3;
 }


 .article-meta {
 display: flex;
 align-items: center;
 gap: 2rem;
 margin-bottom: 2rem;
 flex-wrap: wrap;
 }

 .meta-item {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 color: var(--text-gray);
 font-size: 0.95rem;
 }

 .meta-item i {
 color: var(--primary-color);
 }


 /* Article Content */
 .article-content {
 padding: 4rem 0;
 }

 .content-wrapper {
 display: grid;
 grid-template-columns: 2fr 300px;
 gap: 2rem;
 }

 .main-content {
 background: var(--white);
 }

 .featured-image {
 width: 100%;
 height: 400px;
 background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
 border-radius: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 3rem;
 position: relative;
 overflow: hidden;
 }

 .featured-image i {
 font-size: 4rem;
 color: var(--secondary-color);
 opacity: 0.8;
 }

 .article-body {
 font-size: 1.1rem;
 line-height: 1.8;
 color: var(--text-dark);
 }

 .article-body h2 {
 font-size: 1.8rem;
 font-weight: 600;
 color: var(--text-dark);
 margin: 2.5rem 0 1rem;
 padding-bottom: 0.5rem;
 border-bottom: 2px solid var(--secondary-color);
 }

 .article-body h3 {
 font-size: 1.4rem;
 font-weight: 600;
 color: var(--text-dark);
 margin: 2rem 0 1rem;
 }

 .article-body p {

    margin-bottom: 1.5rem;
 text-align: justify;
 }

 .article-body ul, .article-body ol {
 margin: 1.5rem 0;
 padding-left: 2rem;
 }

 .article-body li {
 margin-bottom: 0.75rem;
 }

 .article-body blockquote {
 background: var(--background-color);
 border-left: 4px solid var(--secondary-color);
 padding: 1.5rem 2rem;
 margin: 2rem 0;
 font-style: italic;
 border-radius: 0 8px 8px 0;
 }

 .highlight-box {
 background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
 color: var(--text-on-primary);
 padding: 2rem;
 border-radius: 12px;
 margin: 2rem 0;
 }

 .highlight-box h3 {
 color: var(--secondary-color);
 margin-bottom: 1rem;
 }

 /* Sidebar */
 .sidebar {
 position: sticky;
 top: 6rem;
 height: fit-content;
 }

.sidebar-widget {
    background: var(--white);
border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow); /* tetap pakai shadow ringan */
}

 .sidebar-widget h3 {
 font-size: 1.2rem;
 font-weight: 600;
 color: var(--text-dark);
 margin-bottom: 1.5rem;
 padding-bottom: 0.5rem;
 border-bottom: 2px solid var(--secondary-color);
 }

 .toc-list {
 list-style: none;
 padding: 0;
 }

 .toc-list li {
 margin-bottom: 0.75rem;
 }

 .toc-list a {
 color: var(--text-gray);
 text-decoration: none;
 font-size: 0.95rem;
 transition: color 0.3s ease;
 display: block;
 padding: 0.5rem 0;
 }

 .toc-list a:hover,
 .toc-list a.active {
 color: var(--primary-color);
 font-weight: 500;
 }

 .related-posts {
 list-style: none;
 padding: 0;
 }

 .related-post {
 display: flex;
 gap: 1rem;
 margin-bottom: 1.5rem;
 padding-bottom: 1.5rem;
 border-bottom: 1px solid var(--border-color);
 }

 .related-post:last-child {
 border-bottom: none;
 margin-bottom: 0;
 padding-bottom: 0;
 }

 .related-post-image {
 width: 80px;
 height: 60px;
 background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
 border-radius: 8px;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 }

 .related-post-image i {
 color: var(--secondary-color);
 font-size: 1.2rem;
 }

 .related-post-content h4 {
 font-size: 0.9rem;
 font-weight: 500;
 margin-bottom: 0.5rem;
 line-height: 1.4;
 }

 .related-post-content a {
 color: var(--text-dark);
 text-decoration: none;
 transition: color 0.3s ease;
 }

 .related-post-content a:hover {
 color: var(--primary-color);
 }

 .related-post-meta {
 font-size: 0.8rem;
 color: var(--text-gray);
 }


 /* Navigation */
 .post-navigation {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 2rem;
 margin: 3rem 0;
 }

 .nav-post {
 background: var(--white);
 border: 2px solid var(--border-color);
 border-radius: 12px;
 padding: 1.5rem;
 text-decoration: none;
 transition: all 0.3s ease;
 display: block;
 }

 .nav-post:hover {
 border-color: var(--primary-color);
 transform: translateY(-2px);
 }

 .nav-post.prev {
 text-align: left;
 }

 .nav-post.next {
 text-align: right;
 }

 .nav-label {
 font-size: 0.85rem;
 color: var(--text-gray);
 margin-bottom: 0.5rem;
 display: flex;
 align-items: center;
 gap: 0.5rem;
 }

 .nav-title {
 font-size: 1rem;
 font-weight: 600;
 color: var(--text-dark);
 line-height: 1.4;
 }

 .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.toc-list li:last-child {
    border-bottom: none; /* Hilangkan garis di item terakhir */
}

.toc-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.toc-list a:hover {
    color: var(--primary-color);
    font-weight: 500;
}




 /* Responsive Design */
 @media (max-width: 1024px) {
 .content-wrapper {
 grid-template-columns: 1fr;
 gap: 2rem;
 }

 .article-body p {
    text-align: left;
 }

 .sidebar {
 position: static;
 }

 .sidebar-widget {
 margin-bottom: 1rem;
 }
 }

 @media (max-width: 768px) {
 .cta-btn {
 display: none;
 }

 .breadcrumb {
 padding: 5rem 0 1rem;
 }

 .article-title {
 font-size: 2rem;
 }

 .article-meta {
 gap: 1rem;
 }

 .content-wrapper {
 gap: 1.5rem;
 }

 .featured-image {
 height: 250px;
 margin-bottom: 2rem;
 }

 .article-body {
 font-size: 1rem;
 }

 .sidebar-widget {
 padding: 1.5rem;
 }

 .post-navigation {
 grid-template-columns: 1fr;
 gap: 1rem;
 }

 .form-row {
 grid-template-columns: 1fr;
 }

 .share-buttons {
 gap: 0.5rem;
 }

 .share-btn {
 padding: 0.5rem 1rem;
 font-size: 0.85rem;
 }

 .whatsapp-float {
 bottom: 1rem;
 right: 1rem;
 width: 50px;
 height: 50px;
 font-size: 1.2rem;
 }
 }

 @media (max-width: 780px) {

 .article-header {
 padding: 6.5rem 0 2rem;
 }
 }

 @media (max-width: 480px) {
 .container {
 padding: 0 1rem;
 }

 .article-header {
 padding: 5.5rem 0 2rem;
 }

 .article-content {
 padding: 2rem 0;
 }

 .sidebar-widget {
 padding: 1rem;
 }

 .share-section {
 padding: 1.5rem;
 }

 .comments-section {
 padding: 1.5rem;
 }
 }

 /* Smooth scrolling */
 html {
 scroll-behavior: smooth;
 }

 /* Print styles */
 @media print {
 .header, .sidebar, .share-section, .post-navigation, .comments-section, .footer, .whatsapp-float {
 display: none;
 }

 .content-wrapper {
 grid-template-columns: 1fr;
 }

 .article-content {
 padding: 0;
 }
 }


 /* ================TENTANG KAMI==================== */

 .team h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-card i {
    margin-bottom: 1rem;
}

section.team {
  padding: 3rem 0;
}


/* ==========Galeri============ */

.client-gallery {
    background-color: #f1f3f6; /* Agar card putih terlihat menonjol */
}

/* Grid Container */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 50px 20px;
}

/* Card Styling */
.gallery-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e4e7ec;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* Gambar */
.gallery-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Caption */
.gallery-caption {
    padding: 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background-color: #fafafa;
    border-top: 1px solid #eee;
    letter-spacing: 0.3px;
}

/* Responsive Padding */
@media (max-width: 576px) {
    .gallery-grid {
        padding: 30px 12px;
        gap: 16px;
    }

    .gallery-caption {
        font-size: 13px;
        padding: 12px;
    }

    .gallery-image img {
        height: 180px;
    }
}
