/* ===== VARIABLES ===== */
:root {
    --primary: #1a5276;     /* Biru tua elegan */
    --secondary: #e67e22;   /* Orange cerah - energi */
    --accent: #2ecc71;      /* Hijau - success */
    --light: #f8f9fa;
    --dark: #2c3e50;
    --warning: #f39c12;     /* Kuning - perhatian */
    --bg-light: #ecf0f1;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== RECENT POSTS THUMBNAIL STYLES ===== */
.recent-posts ul.list-unstyled li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.recent-posts ul.list-unstyled li img {
  width: 50px;
  height: 30px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  flex-shrink: 0; /* Tambahkan ini */
}

.recent-posts ul.list-unstyled li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}

.recent-posts ul.list-unstyled li a:hover {
  text-decoration: underline;
  color: #007bff;
}

/* ===== SIDEBAR SEARCH: MAKE IT MORE COMPACT ===== */
.sidebar-search .form-control {
  border-radius: 20px 0 0 20px;
  padding: 6px 10px;
  font-size: 14px;
  height: 36px;
  border: 1px solid #ced4da;
}

.sidebar-search .btn {
  border-radius: 0 20px 20px 0;
  padding: 6px 12px;
  font-size: 14px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Adjust input and button on mobile */
@media (max-width: 576px) {
  .sidebar-search {
    padding: 0 10px;
  }
  .sidebar-search .form-control {
    height: 32px;
    padding: 5px 8px;
    font-size: 13px;
  }
  .sidebar-search .btn {
    height: 32px;
    width: 36px;
    padding: 0;
    font-size: 14px;
  }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.navbar {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 82, 118, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    color: white !important;
    font-weight: bold;
    font-size: 1.5rem; /* Diperkecil dari 1.8rem */
    display: flex;
    align-items: center;
    gap: 10px; /* Tambahkan jarak antara logo dan teks */
}

.navbar-logo {
    height: 40px; /* Sesuaikan dengan ukuran teks */
    width: auto;
}

.navbar-brand i {
    color: var(--secondary);
    margin-right: 8px; /* Diperkecil dari 10px */
    font-size: 1.6rem; /* Diperkecil dari 2rem */
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    margin: 0 6px; /* Diperkecil dari 8px */
    padding: 6px 14px !important; /* Diperkecil dari 8px 16px */
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.95rem; /* Sedikit lebih kecil */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: var(--secondary);
    color: white !important;
    transform: translateY(-2px);
}

/* HEADER CTA BUTTON STYLES */
.navbar-nav .nav-link.btn-outline-warning {
    border: 2px solid #f39c12 !important;
    color: #f39c12 !important;
    background: transparent !important;
    font-weight: 600;
    padding: 6px 12px !important;
    font-size: 0.9rem;
    border-radius: 20px;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.btn-outline-warning:hover,
.navbar-nav .nav-link.btn-outline-warning.active {
    background: #f39c12 !important;
    color: white !important;
    transform: translateY(-2px);
    border-color: #f39c12 !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.3rem; /* Diperkecil dari 1.4rem */
    }
    
    .navbar-brand i {
        font-size: 1.4rem; /* Diperkecil dari 1.6rem */
        margin-right: 6px; /* Diperkecil dari 8px */
    }
    
    .navbar-nav .nav-link {
        margin: 2px 0;
        text-align: center;
        padding: 8px 16px !important; /* Tetap comfortable untuk mobile */
    }
    
    .navbar .btn-outline-warning {
        margin: 10px 0 0 0;
        text-align: center;
        display: block;
        padding: 8px 16px; /* Lebih besar di mobile untuk touch */
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem; /* Diperkecil dari 1.2rem */
    }
    
    .navbar-brand i {
        font-size: 1.2rem; /* Diperkecil dari 1.4rem */
        margin-right: 5px; /* Diperkecil dari 6px */
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Untuk very small devices */
@media (max-width: 360px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-brand i {
        font-size: 1.1rem;
        margin-right: 4px;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, var(--bg-light));
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #d35400 100%);
    border: none;
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    background: linear-gradient(135deg, #d35400 0%, var(--secondary) 100%);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 13px 33px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary) !important;
    transform: translateY(-3px);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 1.2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -moz-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* ===== WHY US SECTION ===== */
.why-us {
    padding: 100px 0;
    background: white;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-box h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ===== PROCESS SECTION ===== */
.process {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    padding: 100px 0;
    color: white;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.process .section-title h2 {
    color: white;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background: var(--accent);
}

.process-step h5 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    opacity: 0.9;
}

/* TAMBAHKIN INI - Tombol di Process Section */
.process .btn-warning {
    position: relative;
    z-index: 10; /* Lebih tinggi dari background */
    background: linear-gradient(135deg, var(--warning) 0%, #e67e22 100%);
    border: none;
    padding: 15px 35px;
    font-weight: 700;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    text-decoration: none;
    display: inline-block;
}

.process .btn-warning:hover {
    background: linear-gradient(135deg, #e67e22 0%, var(--warning) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    color: white;
    text-decoration: none;
}

/* ===== TRACKING SECTION ===== */
.tracking-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.tracking-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.tracking-form .form-control {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tracking-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 82, 118, 0.25);
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning) 0%, #e67e22 100%);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 1rem;
    border-left: 5px solid var(--secondary);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-card strong {
    color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #1a252f 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .service-card, .feature-box, .process-step {
        margin-bottom: 2rem;
    }
    
    .btn-primary, .btn-outline-light {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .btn-outline-light {
        margin-left: 0;
    }
    
    .tracking-form {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services, .why-us, .process, .testimonials {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-number {
        font-size: 2.5rem;
    }
}

/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== STATS SECTION ===== */
.stats {
    background: var(--bg-light);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 600;
}

/* ===== COVERAGE SECTION ===== */
.coverage-map {
    height: 300px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.coverage-list ul li {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* ===== PRODUCT TYPES ===== */
.product-card {
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

/* ===== BLOG SECTION ===== */
.blog-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===== FAQ SECTION ===== */
.accordion-button {
    font-weight: 600;
    background: white;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
}

/* ===== CLIENTS SECTION ===== */
.client-logo {
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #1a252f 100%);
    color: white;
    padding: 50px 0 20px;
    font-size: 0.9rem;
}

.footer h5 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* Profil Perusahaan */
.company-description {
    line-height: 1.6;
}

.company-description p {
    margin-bottom: 1rem;
    color: #bdc3c7;
}

/* Contact Info */
.contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.contact-info p i {
    margin-top: 0.2rem;
    width: 16px;
    margin-right: 10px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white !important;
    text-decoration: none;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    color: white !important;
    padding-left: 0 !important;
}

/* Legal Section */
.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.footer .text-muted {
    color: #95a5a6 !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer a:hover {
        padding-left: 0;
    }
    
    .contact-info p {
        justify-content: center;
        text-align: center;
    }
    
    .company-description {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .footer h5 {
        font-size: 1rem;
    }
    
    .footer .row > div {
        margin-bottom: 2rem;
    }
    
    .footer .row > div:last-child {
        margin-bottom: 0;
    }
}

/* ===== SERVICE PAGE STYLES ===== */
.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 3rem !important;
    padding: 1rem;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper {
    width: 120px;
    height: 120px;
    transition: transform 0.3s ease;
}

.service-icon-wrapper:hover {
    transform: scale(1.1);
}

.service-highlights {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
}

.service-highlights .d-flex {
    padding: 0.5rem 0;
}

.service-specs {
    border: 2px solid #e9ecef;
    border-radius: 10px;
}

.special-service {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.special-service:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.special-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.spec-badge {
    font-size: 0.8rem;
    font-weight: 600;
}

.simple-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    border: none;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 2rem !important;
        padding: 0.5rem;
    }
    
    .service-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .simple-cta {
        padding: 3rem 1.5rem !important;
    }
    
    .simple-cta .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .service-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .service-highlights {
        padding: 1rem;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* Hero Section */
.about-hero-visual {
    padding: 2rem !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

.hero-icon {
    width: 150px; /* Ukuran container */
    height: 150px; /* Ukuran container */
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.hero-icon:hover {
    transform: scale(1.05);
}

.custom-image-icon {
    width: 100%; /* Gambar mengisi penuh container */
    height: 100%; /* Gambar mengisi penuh container */
    object-fit: contain; /* Gambar tidak terdistorsi */
}

.hero-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.hero-icon:hover {
    transform: scale(1.05);
}

/* Vision Mission Section */
.vision-mission-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.card-header-vm {
    padding: 1.5rem 2rem;
    border-bottom: 3px solid rgba(255,255,255,0.2);
}

.card-body-vm {
    padding: 2rem;
}

.vision-text {
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.vision-highlights .d-flex {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.vision-highlights .d-flex:hover {
    background: #f8f9fa;
    border-radius: 8px;
    padding-left: 1rem;
}

.vision-highlights .d-flex:last-child {
    border-bottom: none;
}

.vision-highlights i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Mission List Styles */
.mission-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mission-item:hover {
    background: white;
    border-color: var(--success);
    transform: translateX(8px);
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.mission-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 0.1rem;
    transition: all 0.3s ease;
}

.mission-item:hover .mission-icon {
    transform: scale(1.1);
    background: var(--primary);
}

.mission-icon i {
    font-size: 1.1rem;
}

.mission-content h5 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.mission-content p {
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transform: translateX(-50%);
    border-radius: 10px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 4px solid white;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.timeline-year:hover {
    transform: scale(1.1);
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    margin: 0 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-content h4 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Value Cards */
.value-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Achievement Section */
.achievement-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid #dee2e6;
}

.achievement-item {
    text-align: center;
    padding: 1rem;
}

.achievement-number {
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.achievement-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

/* Team Cards */
.team-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
    transform: scale(1.05);
}

.team-card h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-card .fw-bold {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Simple CTA */
.simple-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    border: none;
    border-radius: 20px;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%) !important;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 600;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .about-hero-visual {
        padding: 1.5rem !important;
    }
    
    .hero-icon {
        width: 120px;
        height: 120px;
    }
    
    .card-header-vm {
        padding: 1.25rem 1.5rem;
    }
    
    .card-body-vm {
        padding: 1.5rem;
    }
    
    .vision-text {
        padding: 1.2rem;
        font-size: 1.1rem !important;
    }
    
    .mission-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .mission-icon {
        align-self: center;
        width: 40px;
        height: 40px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
        margin-bottom: 2rem;
    }
    
    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 1rem;
        margin-right: 1rem;
    }
    
    .timeline-content {
        margin: 0;
        text-align: left !important;
        padding: 1.5rem;
    }
    
    .value-card, .team-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
    }
    
    .simple-cta {
        padding: 2.5rem 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .vision-mission-card {
        margin-bottom: 1.5rem;
    }
    
    .card-header-vm .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .card-header-vm i {
        margin-right: 0 !important;
    }
    
    .mission-item {
        padding: 0.8rem;
    }
    
    .timeline-year {
        width: 70px;
        height: 70px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        padding: 1.2rem;
    }
    
    .achievement-section {
        padding: 2rem 1rem;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .simple-cta .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* ===== GALLERY PAGE STYLES ===== */
.gallery-card {
    border: none !important;
    box-shadow: none !important;
}
.gallery-image {
    border: none !important;
}
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px 12px;
    box-sizing: border-box;
    text-align: center;
}
.overlay-title {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 4px;
    line-height: 1.2;
}
.overlay-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 4px;
    line-height: 1.2;
}
.overlay-date {
    font-size: 0.7rem;
    opacity: 0.8;
}
.overlay-date i {
    margin-right: 4px;
}
.text-justify {
    text-align: justify !important;
    text-justify: inter-word;
}



/* ===== BLOG PAGE STYLES ===== */

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.image-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.blog-card:hover .image-placeholder {
    transform: scale(1.05);
}

.image-placeholder h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-meta .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
}

.blog-meta small {
    font-size: 0.85rem;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--dark);
    text-align: left;
}

.blog-title a {
    text-decoration: none;
    color: inherit;
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: justify;
    display: -webkit-box;
    line-clamp: 3;;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.blog-read-more:hover {
    color: var(--secondary);
    text-decoration: underline;
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    margin-top: 3rem;
}

.pagination .page-link {
    color: var(--primary);
    border: 1px solid #dee2e6;
    padding: 0.6rem 0.9rem;
    margin: 0 0.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination .page-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-blog {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    border-radius: 20px;
}

/* Color Variants */
.bg-primary { background: linear-gradient(135deg, #3498db, #2980b9) !important; }
.bg-success { background: linear-gradient(135deg, #27ae60, #229954) !important; }
.bg-warning { background: linear-gradient(135deg, #f39c12, #e67e22) !important; }
.bg-info { background: linear-gradient(135deg, #17a2b8, #138496) !important; }
.bg-danger { background: linear-gradient(135deg, #e74c3c, #c0392b) !important; }
.bg-secondary { background: linear-gradient(135deg, #6c757d, #5a6268) !important; }



/* Responsive Blog */
@media (max-width: 992px) {
    .blog-grid .col-lg-4 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-image {
        height: 180px;
    }
    
    .image-placeholder {
        padding: 1.5rem;
    }
    
    .image-placeholder i {
        font-size: 2.5rem !important;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .blog-grid .col-md-6 {
        margin-bottom: 1.5rem;
    }
    
    .blog-image {
        height: 160px;
    }
    
    .image-placeholder i {
        font-size: 2rem !important;
    }
    
    .image-placeholder h6 {
        font-size: 0.9rem;
    }
    
    .blog-meta {
        gap: 0.3rem;
    }
    
    .blog-meta small {
        font-size: 0.8rem;
    }
    
    .cta-blog .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .pagination .page-link {
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card h5 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: #6c757d;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-size: 0.95rem;
}

.contact-card small {
    color: #6c757d;
    line-height: 1.4;
    font-size: 0.85rem;
}

/* Small Buttons inside Cards */
.contact-card .btn-sm {
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.contact-card .btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Contact Form */
.contact-form-card .card {
    border-radius: 15px;
    overflow: hidden;
}

.contact-form-card .card-header {
    border-radius: 0;
    font-weight: 600;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Additional Info */
.additional-info {
    border: 1px solid #e9ecef;
}

.additional-info h4 {
    font-weight: 600;
}

.additional-info .lead {
    color: #6c757d;
    font-size: 1.1rem;
}

.additional-info .btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

/* Color Variants */
.bg-primary { background: linear-gradient(135deg, #3498db, #2980b9) !important; }
.bg-success { background: linear-gradient(135deg, #27ae60, #229954) !important; }
.bg-warning { background: linear-gradient(135deg, #f39c12, #e67e22) !important; }

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem !important;
    }
    
    .contact-card .btn-sm {
        padding: 0.35rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .contact-form-card .card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 1.5rem !important;
    }
    
    .contact-card h5 {
        font-size: 1.1rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
    }
    
    .additional-info {
        padding: 1.5rem !important;
    }
    
    .additional-info h4 {
        font-size: 1.3rem;
    }
    
    .additional-info .lead {
        font-size: 1rem;
    }
}

/* Animation */
.contact-card {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SINGLE POST STYLES ===== */
.single-post {
    padding-bottom: 60px;
    padding-top: 80px;
}

.single-post .card {
    padding: 1.6rem;
}

.post-title {
    font-size: 2rem;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.post-meta {
    font-size: 0.95rem;
    color: #6c757d;
}

.post-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.post-content p {
    margin-bottom: 1rem;
    color: #444;
}

.post-content ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.post-content blockquote {
    background: rgba(0,0,0,0.03);
    border-left: 4px solid var(--secondary);
    padding: 0.75rem 1rem;
    margin: 1rem 0;
}

.post-meta-footer {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.95rem;
    color: #666;
    flex-wrap: wrap;
}

.post-category {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.post-category i {
    color: var(--primary);
    width: 16px;
}

.post-category a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px dotted #999;
    transition: color 0.2s ease;
}

.post-category a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.post-tag-list {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    flex-wrap: wrap;
}

.post-tag-list i {
    color: var(--primary);
    width: 16px;
    flex-shrink: 0;
}

.post-tag-list a {
    color: #666;
    text-decoration: none;
    border-bottom: 1px dotted #999;
    transition: color 0.2s ease;
}

.post-tag-list a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.tag-separator {
    color: #999;
    margin: 0 0.2rem;
}

.comments-section h4 {
    margin-bottom: 1rem;
}

.comment .fw-bold {
    color: var(--primary);
}

.sidebar-widget h5 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.sidebar-widget {
    margin-bottom: 20px;
}

/* COMMENT NESTING LEVELS */
.comments-section .comment.reply.level-1 {
    margin-left: 40px;
    border-left: 2px solid var(--primary);
    padding-left: 12px;
    margin-bottom: 8px;
}

.comments-section .comment.reply.level-2 {
    margin-left: 80px;
    border-left: 2px solid var(--primary);
    padding-left: 12px;
    margin-bottom: 8px;
}

.comments-section .comment.reply.level-3 {
    margin-left: 120px;
    border-left: 2px solid var(--primary);
    padding-left: 12px;
    margin-bottom: 8px;
}

.sidebar-widget ul li a {
    color: #333;
    display: block;
    padding: 0.25rem 0;
    text-decoration: none;
}


/* Adjust Recent Posts font size for readability */
.recent-posts ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    color: #222;
    transition: color 0.3s ease;
    display: block;
    padding: 4px 0;
}

.recent-posts ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.sidebar-widget ul li a:hover {
    color: var(--secondary);
}

/* Make entire sidebar sticky on scroll */
aside.col-lg-4 {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    top: 50px;
    align-self: flex-start; /* prevent stretching */
    z-index: 5; /* ensure it stays above content */
}

.comments-section .btn-primary {
    background: var(--primary);
    border: none;
}

@media (max-width: 991px) {
    .post-image {
        max-height: 260px;
    }
    .single-post {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Sidebar search */
.sidebar-search .form-control {
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.sidebar-search .btn {
    background: var(--secondary);
    border: none;
    color: white;
}

.sidebar-search .btn:hover {
    background: #d35400;
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}


/* Floating WhatsApp Icon Styles */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: whatsapp-pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover + .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid white;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Fix */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        z-index: 9999;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        font-size: 12px;
        padding: 8px 12px;
        right: 65px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* ===== COMMENT STYLES ===== */
/* Comments styling for post page */
.comments-section {
    margin-top: 2rem;
    animation: fadeInSection 0.6s ease;
}

.comments-section.highlight {
    animation: highlightSection 0.8s ease;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes highlightSection {
    0% {
        background-color: transparent;
    }
    50% {
        background-color: rgba(230, 126, 34, 0.1);
    }
    100% {
        background-color: transparent;
    }
}

.comment {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
}

.comment + .comment {
    margin-top: 0.75rem;
}

.comment-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f1f1f1;
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-weight: 700;
    color: var(--primary);
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #1da1f2;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    margin-left: 6px;
    position: relative;
    clip-path: polygon(
        50% 0%,
        61% 12%,
        78% 7%,
        88% 22%,
        100% 35%,
        93% 53%,
        100% 70%,
        88% 78%,
        78% 93%,
        61% 88%,
        50% 100%,
        39% 88%,
        22% 93%,
        12% 78%,
        0% 70%,
        7% 53%,
        0% 35%,
        12% 22%,
        22% 7%,
        39% 12%
    );
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.admin-badge::before {
    content: "✓";
    font-size: 12px;
    font-weight: 900;
}

.admin-badge:hover {
    transform: scale(1.1);
}

.comment-date {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.comment-text {
    color: #333;
    line-height: 1.6;
}

.reply {
    margin-left: 3.5rem;
    margin-top: 0.75rem;
}

.reply-btn {
    background: transparent;
    border: none;
    color: var(--primary);
    cursor: pointer;
    margin-top: 0.5rem;
}

.reply-form {
    display: none;
    margin-top: 0.75rem;
}

.reply-form .form-group {
    margin-bottom: 0.5rem;
}

.reply-form input[type="text"],
.reply-form input[type="email"],
.reply-form input[type="url"],
.reply-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
}

.reply-form .form-actions {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.submit-reply-btn,
.cancel-reply-btn {
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    border: none;
}

.submit-reply-btn {
    background: var(--secondary);
    color: white;
}

.cancel-reply-btn {
    background: #f1f1f1;
}

.comment-form {
    margin-top: 1.25rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
}

.comment-form .form-group {
    margin-bottom: 0.75rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.comment-form button[type="submit"] {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
}

@media (max-width: 576px) {
    .comment { flex-direction: column; }
    .reply { margin-left: 0; }
}
