/*
Theme Name: ATShosting Blog
Theme URI: https://atshosting.id
Author: ATShosting Team
Author URI: https://atshosting.id
Description: WordPress theme untuk ATShosting blog dengan featured slider, popular posts, hosting showcase, contact page, dan full integration dengan ATShosting hosting services.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: atshosting-blog
Tags: blog, professional, blue, hosting, responsive, cpanel, cloud
*/

/* ==========================================================================
   Base Styles - ATShosting Blue Theme
   ========================================================================== */

:root {
    /* ATShosting Brand Colors - Blue */
    --color-primary: #2563eb;      /* Blue 600 */
    --color-primary-dark: #1e40af; /* Blue 700 */
    --color-primary-light: #3b82f6; /* Blue 500 */
    --color-accent: #2563eb;
    
    /* Neutrals */
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
    
    /* Spacing */
    --container-max-width: 1280px;
    --section-padding: 4rem 1rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

/* ==========================================================================
   Layout
   ========================================================================== */

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

.site-content {
    min-height: 60vh;
    padding: 3rem 0;
}

/* ==========================================================================
   Top Announcement Banner
   ========================================================================== */

.top-announcement-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.top-announcement-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.announcement-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.announcement-text {
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    flex: 1;
}

.announcement-text a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 0.5rem;
}

.announcement-text a:hover {
    color: #dbeafe;
}

.announcement-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    line-height: 1;
}

.announcement-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .announcement-text {
        font-size: 0.8125rem;
    }
    
    .announcement-content {
        gap: 0.5rem;
    }
}

/* ==========================================================================
   Program Showcase Section
   ========================================================================== */

.program-showcase-section {
    padding: 3rem 0 2rem;
    background: var(--color-gray-50);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    text-align: center;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

.program-swiper {
    position: relative;
    padding: 0 3rem 3rem;
}

.program-slide-card {
    border-radius: var(--radius-xl);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-height: 200px;
}

.program-slide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.2);
}

/* All Slides - Light Blue Background */
.program-slide-card.spill-tech-slide,
.program-slide-card.retreat-slide {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
    border: 1px solid #93c5fd;
}

.program-slide-card.spill-tech-slide:hover,
.program-slide-card.retreat-slide:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
    border-color: #60a5fa;
}

.program-slide-content {
    padding: 1.5rem 2rem;
    color: var(--color-gray-900);
}

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

.program-slide-icon {
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.program-slide-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 0;
    line-height: 1.2;
}

.program-slide-subtitle {
    font-size: 0.8125rem;
    color: var(--color-primary);
    margin: 0.25rem 0 0 0;
    font-weight: 600;
}

.program-slide-tagline {
    font-size: 0.9375rem;
    color: var(--color-gray-700);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.program-slide-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.program-slide-features li {
    font-size: 0.875rem;
    color: var(--color-gray-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.program-slide-features li svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.program-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

.program-slide-cta:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #047857 100%);
    transform: translateX(4px);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.4);
    color: white;
}

/* Program Swiper Navigation */
.program-next,
.program-prev {
    color: var(--color-primary);
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.program-next:after,
.program-prev:after {
    font-size: 1.25rem;
    font-weight: 700;
}

.program-pagination {
    bottom: 0 !important;
}

.program-pagination .swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.4;
    width: 10px;
    height: 10px;
}

.program-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 28px;
    border-radius: 5px;
    background: var(--color-primary);
}

@media (max-width: 768px) {
    .program-showcase-section {
        padding: 2rem 0 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .program-swiper {
        padding: 0 2rem 2rem;
    }
    
    .program-slide-card {
        min-height: 180px;
    }
    
    .program-slide-content {
        padding: 1.25rem 1.5rem;
    }
    
    .program-slide-header {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .program-slide-icon {
        font-size: 2rem;
    }
    
    .program-slide-title {
        font-size: 1.125rem;
    }
    
    .program-slide-subtitle {
        font-size: 0.75rem;
    }
    
    .program-slide-tagline {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .program-slide-features {
        margin-bottom: 1rem;
        gap: 0.375rem;
    }
    
    .program-slide-features li {
        font-size: 0.8125rem;
    }
    
    .program-slide-cta {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .program-next,
    .program-prev {
        width: 2rem;
        height: 2rem;
    }
}

/* ==========================================================================
   Header Pro - Matching hubitat.id
   ========================================================================== */

.site-header-pro {
    background: white;
    border-bottom: 1px solid #dbeafe;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

body.has-announcement .site-header-pro {
    top: 48px;
}

@media (max-width: 768px) {
    body.has-announcement .site-header-pro {
        top: 0;
    }
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover .logo-icon {
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.logo-emoji {
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1;
}

.logo-accent {
    color: var(--color-primary);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 0;
    line-height: 1;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

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

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    left: 0;
    margin-top: 0.25rem;
    width: 12rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 50;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
}

.dropdown-item:hover {
    background: #ecfdf5;
}

.dropdown-item .item-title {
    font-weight: 600;
    color: #111827;
}

.dropdown-item:hover .item-title {
    color: var(--color-primary);
}

.dropdown-item .item-desc {
    font-size: 0.75rem;
    color: #6b7280;
}

/* CTA Button */
.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: block;
    }
}

.cta-button-header {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button-header:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    color: #374151;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background: #eff6ff;
    color: var(--color-primary);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-mobile.active {
    display: block;
    max-height: 500px;
    padding-bottom: 1rem;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-link {
    color: #374151;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: var(--color-primary);
    background: #eff6ff;
}

.mobile-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
    color: white;
    text-align: center;
    font-weight: 600;
    margin-top: 0.5rem;
}

.mobile-cta:hover {
    color: white;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.mobile-submenu {
    padding: 0.5rem 1rem;
}

.submenu-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.submenu-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1rem;
}

.submenu-link {
    color: #6b7280;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.submenu-link:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 3rem 1rem;
    text-align: center;
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Slider */
.hero-slider-wrapper {
    max-width: 100%;
    margin-top: 2rem;
}

.hero-slider {
    position: relative;
    padding: 0 3rem;
}

.hero-slide-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-slide-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.hero-slide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hero-slide-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-slide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.hero-slide-views {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    white-space: nowrap;
}

.hero-slide-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.hero-slide-title a {
    color: var(--color-gray-900);
    text-decoration: none;
}

.hero-slide-title a:hover {
    color: var(--color-primary);
}

.hero-slide-excerpt {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Article Cards
   ========================================================================== */

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.article-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.article-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-bottom: 1rem;
}

.article-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.article-title a {
    color: var(--color-gray-900);
}

.article-title a:hover {
    color: var(--color-primary);
}

.article-excerpt {
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.read-more:hover {
    gap: 1rem;
}

/* ==========================================================================
   Category Badge
   ========================================================================== */

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-umkm {
    background: #dbeafe;
    color: #1e40af;
}

.category-kpi-hr {
    background: #dbeafe;
    color: #1e40af;
}

.category-hosting {
    background: #f3e8ff;
    color: #6b21a8;
}

.category-digital-marketing {
    background: #fce7f3;
    color: #9f1239;
}

.category-startup {
    background: #e0e7ff;
    color: #3730a3;
}

/* ==========================================================================
   Single Article
   ========================================================================== */

.single-article {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 3rem;
}

.article-featured-image {
    width: 100%;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.8;
}

.article-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body strong {
    color: var(--color-gray-900);
    font-weight: 600;
}

/* ==========================================================================
   CTA Boxes
   ========================================================================== */

.cta-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin: 3rem 0;
    text-align: center;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--color-primary);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); /* Blue 900 to Blue 700 */
    color: #dbeafe; /* Blue 100 */
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Simple Footer Layout */
.footer-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
}

@media (max-width: 640px) {
    .footer-simple {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer-copyright {
    color: #dbeafe; /* Blue 100 */
    font-size: 0.875rem;
    margin: 0;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-social a {
    color: #93c5fd; /* Blue 300 */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: white;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ==========================================================================
   Related Posts
   ========================================================================== */

.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--color-gray-200);
}

.related-posts h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--color-gray-900);
}

/* ==========================================================================
   Featured Slider
   ========================================================================== */

.featured-slider-wrapper {
    margin-bottom: 4rem;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 2rem;
    text-align: center;
}

.featured-slider {
    position: relative;
    padding: 0 3rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary);
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.25rem;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ==========================================================================
   Popular Posts Widget
   ========================================================================== */

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

.popular-post-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

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

.popular-post-item a {
    color: var(--color-gray-900);
    font-weight: 600;
    font-size: 0.9375rem;
    display: block;
    margin-bottom: 0.25rem;
}

.popular-post-item a:hover {
    color: var(--color-primary);
}

.post-views {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

/* ==========================================================================
   Product Showcase Widget
   ========================================================================== */

.product-showcase {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--color-primary-light);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
}

.product-tagline {
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.product-features li {
    font-size: 0.875rem;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.product-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.product-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   Kontak Page
   ========================================================================== */

.kontak-page {
    padding: 2rem 0;
}

.kontak-header {
    text-align: center;
    margin-bottom: 4rem;
}

.kontak-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kontak-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.kontak-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .kontak-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

/* Contact Info Cards */
.kontak-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kontak-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

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

.kontak-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.kontak-icon svg {
    width: 2rem;
    height: 2rem;
}

.kontak-details {
    flex: 1;
}

.kontak-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.kontak-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
}

.kontak-value:hover {
    color: var(--color-primary);
}

.kontak-desc {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin: 0.5rem 0 0 0;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #20BA5A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
}

/* Contact Form */
.kontak-form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.kontak-form-header {
    margin-bottom: 2rem;
}

.kontak-form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.kontak-form-header p {
    color: var(--color-gray-600);
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
}

.form-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Additional Info */
.kontak-additional {
    margin-top: 4rem;
}

.kontak-cta {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .kontak-cta {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: var(--color-gray-600);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.cta-btn-primary:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

.cta-btn-secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .header-inner {
        padding: 1rem 0;
    }
    
    .site-logo {
        font-size: 1.5rem;
    }
    
    .main-navigation ul {
        gap: 0.25rem;
    }
    
    .main-navigation a {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .featured-slider {
        padding: 0 2rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 2rem;
        height: 2rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}
