/* =========================================
   KAWA INTI MEDIKA - Organic/Natural Design System
   ========================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Nunito:wght@300;400;500;600;700&display=swap');

/* =========================================
   CSS Variables / Design Tokens
   ========================================= */
:root {
    --background: #FDFCF8;
    --foreground: #2C2C24;
    --primary: #0088A8;
    --primary-foreground: #F3F4F1;
    --secondary: #C18C5D;
    --secondary-foreground: #FFFFFF;
    --accent: #E6DCCD;
    --accent-foreground: #4A4A40;
    --muted: #F0EBE5;
    --muted-foreground: #78786C;
    --border: #DED8CF;
    --destructive: #A85448;
    
    --font-heading: 'Fraunces', serif;
    --font-body: 'Nunito', sans-serif;
    
    --shadow-soft: 0 4px 20px -2px rgba(0, 136, 168, 0.15);
    --shadow-float: 0 10px 40px -10px rgba(193, 140, 93, 0.2);
    --shadow-hover: 0 20px 40px -10px rgba(0, 136, 168, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    --blob-1: 60% 40% 30% 70% / 60% 30% 70% 40%;
    --blob-2: 40% 60% 70% 30% / 30% 60% 40% 70%;
    --blob-3: 70% 30% 50% 50% / 40% 70% 30% 60%;
    --blob-4: 30% 70% 70% 30% / 30% 30% 70% 70%;
    
    --transition-fast: 200ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--foreground); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: var(--muted-foreground); margin-bottom: 1rem; }
a { color: var(--primary); text-decoration: none; transition: var(--transition-base); }
a:hover { color: var(--secondary); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.875rem 2rem; font-family: var(--font-body); font-size: 1rem; font-weight: 600;
    border-radius: var(--radius-full); border: none; cursor: pointer;
    transition: all var(--transition-base); text-decoration: none;
}
.btn-primary { background-color: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-soft); }
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 6px 24px -4px rgba(0, 136, 168, 0.25); color: var(--primary-foreground); }
.btn-primary:active { transform: scale(0.95); }
.btn-outline { background-color: transparent; color: var(--secondary); border: 2px solid var(--secondary); }
.btn-outline:hover { background-color: var(--secondary); color: var(--secondary-foreground); transform: scale(1.05); }
.btn-ghost { background-color: transparent; color: var(--primary); }
.btn-ghost:hover { background-color: rgba(0, 136, 168, 0.1); }
.btn-white { background-color: white; color: var(--primary); box-shadow: var(--shadow-soft); }
.btn-white:hover { transform: scale(1.05); box-shadow: var(--shadow-hover); color: var(--primary); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; }

.navbar {
    position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
    width: calc(100% - 2rem); max-width: 1200px;
    background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(222, 216, 207, 0.5); border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem; z-index: 1000; box-shadow: var(--shadow-soft);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo { display: flex; align-items: center; gap: 0.75rem; }
.navbar-logo img { height: 72px; width: auto; }
.navbar-logo span { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--foreground); }
.navbar-menu { display: none; list-style: none; gap: 0.5rem; }
@media (min-width: 768px) { .navbar-menu { display: flex; } }
.navbar-menu a { display: block; padding: 0.5rem 1rem; font-weight: 500; color: var(--foreground); border-radius: var(--radius-full); transition: var(--transition-base); }
.navbar-menu a:hover, .navbar-menu a.active { background-color: rgba(0, 136, 168, 0.1); color: var(--primary); }
.navbar-cta { display: none; }
@media (min-width: 768px) { .navbar-cta { display: block; } }
.navbar-toggle { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; background: none; border: none; cursor: pointer; }
@media (min-width: 768px) { .navbar-toggle { display: none; } }
.navbar-toggle span { display: block; width: 24px; height: 2px; background-color: var(--foreground); border-radius: 2px; transition: var(--transition-base); }
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.navbar-mobile { display: none; position: fixed; top: 5rem; left: 1rem; right: 1rem; background: white; border-radius: var(--radius-xl); padding: 1.5rem; box-shadow: var(--shadow-float); z-index: 999; }
.navbar-mobile.active { display: block; }
.navbar-mobile ul { list-style: none; margin-bottom: 1rem; }
.navbar-mobile li { margin-bottom: 0.5rem; }
.navbar-mobile a { display: block; padding: 0.75rem 1rem; color: var(--foreground); font-weight: 500; border-radius: var(--radius-md); transition: var(--transition-base); }
.navbar-mobile a:hover, .navbar-mobile a.active { background-color: rgba(0, 136, 168, 0.1); color: var(--primary); }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 10rem; overflow: hidden; }
.hero-content { position: relative; z-index: 10; max-width: 800px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background-color: var(--muted); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.hero-badge svg { width: 16px; height: 16px; color: var(--primary); }
.hero h1 { margin-bottom: 1.5rem; color: var(--foreground); }
.hero h1 span { color: var(--primary); }
.hero-description { font-size: 1.25rem; color: var(--muted-foreground); margin-bottom: 2rem; max-width: 600px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-blob { position: absolute; border-radius: var(--blob-1); filter: blur(80px); opacity: 0.5; z-index: 1; }
.hero-blob-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; right: -150px; opacity: 0.15; }
.hero-blob-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -100px; opacity: 0.12; border-radius: var(--blob-2); }

.highlights { background-color: rgba(240, 235, 229, 0.3); position: relative; }
.highlights-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .highlights-grid { grid-template-columns: repeat(3, 1fr); } }
.highlight-card { background: rgba(254, 254, 250, 0.8); border: 1px solid rgba(222, 216, 207, 0.5); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-soft); transition: all var(--transition-base); }
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.highlight-card:nth-child(1) { border-radius: 4rem 2rem 2rem 2rem; }
.highlight-card:nth-child(2) { border-radius: 2rem 4rem 2rem 2rem; }
.highlight-card:nth-child(3) { border-radius: 2rem 2rem 2rem 4rem; }
.highlight-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background-color: rgba(0, 136, 168, 0.1); border-radius: var(--radius-lg); margin-bottom: 1.5rem; transition: var(--transition-base); }
.highlight-icon svg { width: 28px; height: 28px; color: var(--primary); transition: var(--transition-base); }
.highlight-card:hover .highlight-icon { background-color: var(--primary); }
.highlight-card:hover .highlight-icon svg { color: white; }
.highlight-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.highlight-card p { font-size: 0.9375rem; margin-bottom: 0; }

.services-section { position: relative; }
.services-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.services-header h2 { margin-bottom: 1rem; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card { position: relative; background: linear-gradient(135deg, rgba(254, 254, 250, 0.9), rgba(240, 235, 229, 0.5)); border: 1px solid rgba(222, 216, 207, 0.5); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-soft); transition: all var(--transition-base); overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: var(--primary); opacity: 0.05; border-radius: var(--blob-3); filter: blur(60px); transition: var(--transition-slow); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { opacity: 0.1; }
.service-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; background-color: rgba(0, 136, 168, 0.1); border-radius: var(--radius-lg); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.service-icon svg { width: 32px; height: 32px; color: var(--primary); }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.service-card p { position: relative; z-index: 1; margin-bottom: 0; }

.how-it-works { background-color: rgba(230, 220, 205, 0.3); position: relative; overflow: hidden; }
.how-it-works-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.steps-container { position: relative; max-width: 1000px; margin: 0 auto; }
.steps-list { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .steps-list { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }
.step-item { text-align: center; position: relative; }
.step-number { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background-color: var(--primary); color: white; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; border-radius: var(--radius-full); margin: 0 auto 1rem; box-shadow: var(--shadow-soft); }
.step-item h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-item p { font-size: 0.875rem; margin-bottom: 0; }
.steps-connector { display: none; position: absolute; top: 28px; left: 10%; width: 80%; height: 40px; z-index: 0; }
@media (min-width: 768px) { .steps-connector { display: block; } }
.steps-connector path { fill: none; stroke: var(--border); stroke-width: 2; stroke-dasharray: 8 8; }

.cta-section { background-color: var(--primary); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -25%; width: 60%; height: 150%; background: rgba(255, 255, 255, 0.05); border-radius: var(--blob-1); filter: blur(60px); }
.cta-content { position: relative; z-index: 10; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { color: white; margin-bottom: 1rem; }
.cta-content p { color: rgba(255, 255, 255, 0.8); font-size: 1.125rem; margin-bottom: 2rem; }

.about-hero { position: relative; padding-top: 10rem; background-color: rgba(240, 235, 229, 0.3); }
.about-content { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-content { grid-template-columns: 1fr 1fr; } }
.about-text h1 { margin-bottom: 1.5rem; }
.about-text p { font-size: 1.125rem; }
.about-image { position: relative; }
.about-image img { border-radius: var(--blob-4); box-shadow: var(--shadow-float); }

.vmv-section { position: relative; }
.vmv-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .vmv-grid { grid-template-columns: repeat(3, 1fr); } }
.vmv-card { background: rgba(254, 254, 250, 0.8); border: 1px solid rgba(222, 216, 207, 0.5); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-soft); text-align: center; }
.vmv-card:nth-child(1) { border-radius: 4rem 2rem 2rem 2rem; }
.vmv-card:nth-child(2) { border-radius: 2rem 2rem 4rem 2rem; }
.vmv-card:nth-child(3) { border-radius: 2rem 4rem 2rem 2rem; }
.vmv-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; background-color: rgba(0, 136, 168, 0.1); border-radius: var(--radius-full); margin: 0 auto 1.5rem; }
.vmv-icon svg { width: 32px; height: 32px; color: var(--primary); }
.vmv-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.vmv-card ul { list-style: none; text-align: left; }
.vmv-card li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; color: var(--muted-foreground); }
.vmv-card li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; background-color: var(--primary); border-radius: var(--radius-full); }

.values-section { background-color: rgba(230, 220, 205, 0.3); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { text-align: center; padding: 2rem; }
.value-icon { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: var(--blob-1); margin: 0 auto 1.5rem; box-shadow: var(--shadow-float); }
.value-icon svg { width: 40px; height: 40px; color: white; }
.value-card h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

.team-section { position: relative; }
.team-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { text-align: center; transition: all var(--transition-base); }
.team-card:hover { transform: translateY(-4px); }
.team-avatar { width: 120px; height: 120px; margin: 0 auto 1rem; border-radius: var(--blob-1); overflow: hidden; background-color: var(--muted); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar svg { width: 48px; height: 48px; color: var(--muted-foreground); }
.team-card h4 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.team-card p { font-size: 0.875rem; color: var(--primary); margin-bottom: 0; }

.services-hero { position: relative; padding-top: 10rem; padding-bottom: 4rem; background-color: rgba(240, 235, 229, 0.3); text-align: center; }
.services-hero h1 { margin-bottom: 1rem; }
.services-hero p { font-size: 1.125rem; max-width: 700px; margin: 0 auto; }
.services-list-section { position: relative; }
.services-list { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .services-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-list { grid-template-columns: repeat(3, 1fr); } }
.service-list-card { background: white; border: 1px solid rgba(222, 216, 207, 0.5); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-soft); transition: all var(--transition-base); }
.service-list-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-list-card:nth-child(1) { border-radius: 4rem 2rem 2rem 2rem; }
.service-list-card:nth-child(2) { border-radius: 2rem 4rem 2rem 2rem; }
.service-list-card:nth-child(3) { border-radius: 2rem 2rem 4rem 2rem; }
.service-list-card:nth-child(4) { border-radius: 2rem 2rem 2rem 4rem; }
.service-list-card:nth-child(5) { border-radius: 4rem 2rem 2rem 4rem; }
.service-list-card:nth-child(6) { border-radius: 2rem 4rem 4rem 2rem; }
.service-list-number { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background-color: var(--primary); color: white; font-family: var(--font-heading); font-weight: 700; border-radius: var(--radius-full); margin-bottom: 1rem; }
.service-list-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-list-card p { margin-bottom: 0; }

.contact-hero { position: relative; padding-top: 10rem; padding-bottom: 4rem; background-color: rgba(240, 235, 229, 0.3); text-align: center; }
.contact-hero h1 { margin-bottom: 1rem; }
.contact-hero p { font-size: 1.125rem; max-width: 700px; margin: 0 auto; }
.contact-section { position: relative; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-form-wrapper { background: white; border: 1px solid rgba(222, 216, 207, 0.5); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-soft); }
.contact-form-wrapper h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--foreground); }
.form-group .label-hint { font-weight: 400; font-size: 0.875rem; color: var(--muted-foreground); margin-left: 0.5rem; }
.form-control { width: 100%; padding: 0.875rem 1.25rem; font-family: var(--font-body); font-size: 1rem; color: var(--foreground); background-color: rgba(255, 255, 255, 0.5); border: 1px solid var(--border); border-radius: var(--radius-full); transition: var(--transition-base); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 136, 168, 0.15); }
textarea.form-control { border-radius: var(--radius-lg); min-height: 150px; resize: vertical; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2378786C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px; padding-right: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-card { background: rgba(254, 254, 250, 0.8); border: 1px solid rgba(222, 216, 207, 0.5); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-soft); }
.contact-info-card h4 { font-size: 1.125rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.contact-info-card h4 svg { width: 24px; height: 24px; color: var(--primary); }
.contact-info-card p { margin-bottom: 0; }
.contact-info-card a { color: var(--primary); font-weight: 500; }
.contact-whatsapp { background: linear-gradient(135deg, var(--primary), #006680); color: white; border: none; }
.contact-whatsapp h4 { color: white; }
.contact-whatsapp h4 svg { color: white; }
.contact-whatsapp p { color: rgba(255, 255, 255, 0.8); margin-bottom: 1rem; }
.contact-whatsapp .btn-white { width: 100%; }
.contact-map { margin-top: 2rem; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-soft); }
.contact-map iframe { width: 100%; height: 300px; border: none; }

.blog-hero { position: relative; padding-top: 10rem; padding-bottom: 4rem; background-color: rgba(240, 235, 229, 0.3); text-align: center; }
.blog-hero h1 { margin-bottom: 1rem; }
.blog-hero p { font-size: 1.125rem; max-width: 700px; margin: 0 auto; }
.blog-categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.blog-category { padding: 0.5rem 1.25rem; background-color: white; border: 1px solid var(--border); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; color: var(--muted-foreground); cursor: pointer; transition: var(--transition-base); }
.blog-category:hover, .blog-category.active { background-color: var(--primary); border-color: var(--primary); color: white; }
.blog-section { position: relative; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: white; border: 1px solid rgba(222, 216, 207, 0.5); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-soft); transition: all var(--transition-base); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; background-color: var(--muted); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-category { position: absolute; top: 1rem; left: 1rem; padding: 0.375rem 0.875rem; background-color: white; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; color: var(--primary); }
.blog-card-content { padding: 1.5rem; }
.blog-card-date { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card h3 a { color: var(--foreground); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.9375rem; margin-bottom: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 4rem; }
.blog-pagination a, .blog-pagination span { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background-color: white; border: 1px solid var(--border); border-radius: var(--radius-full); font-weight: 500; color: var(--foreground); transition: var(--transition-base); }
.blog-pagination a:hover, .blog-pagination span.active { background-color: var(--primary); border-color: var(--primary); color: white; }

.blog-detail-hero { position: relative; padding-top: 10rem; padding-bottom: 3rem; }
.blog-detail-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.blog-detail-category { padding: 0.375rem 0.875rem; background-color: var(--primary); border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; color: white; }
.blog-detail-date { font-size: 0.875rem; color: var(--muted-foreground); }
.blog-detail-hero h1 { max-width: 900px; }
.blog-detail-image { margin-top: 3rem; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-float); }
.blog-detail-image img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }
.blog-detail-content { max-width: 800px; margin: 0 auto; padding: 4rem 0; }
.blog-detail-content h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; }
.blog-detail-content h3 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.blog-detail-content p { font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.5rem; color: var(--foreground); }
.blog-detail-content ul, .blog-detail-content ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.blog-detail-content li { margin-bottom: 0.5rem; color: var(--foreground); }
.blog-detail-content blockquote { border-left: 4px solid var(--primary); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; color: var(--muted-foreground); }

.footer { background-color: var(--foreground); color: rgba(255, 255, 255, 0.8); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { height: 72px; width: auto; filter: brightness(0) invert(1); }
.footer-logo span { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: white; }
.footer-brand p { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 0; }
.footer-column h4 { color: white; font-size: 1rem; margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.6); transition: var(--transition-base); }
.footer-links a:hover { color: white; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.9375rem; color: rgba(255, 255, 255, 0.6); }
.footer-contact svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-direction: column; gap: 1rem; text-align: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 0; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background-color: rgba(255, 255, 255, 0.1); border-radius: var(--radius-full); transition: var(--transition-base); }
.footer-social a:hover { background-color: var(--primary); }
.footer-social svg { width: 20px; height: 20px; color: white; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--muted-foreground); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-6 { margin-bottom: 3rem; }
.hidden { display: none; }
.alert { padding: 1rem 1.5rem; border-radius: var(--radius-md); margin-bottom: 1rem; }
.alert-success { background-color: rgba(0, 136, 168, 0.1); color: var(--primary); border: 1px solid var(--primary); }
.alert-error { background-color: rgba(168, 84, 72, 0.1); color: var(--destructive); border: 1px solid var(--destructive); }
.spinner { width: 20px; height: 20px; border: 2px solid rgba(255, 255, 255, 0.3); border-top-color: white; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state svg { width: 80px; height: 80px; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.empty-state h3 { margin-bottom: 0.5rem; }

/* =========================================
   Hero Split Layout with Slider
   ========================================= */
.hero-split { padding-top: 10rem; min-height: auto; }
.hero-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 3rem; 
    align-items: center; 
}
@media (min-width: 1024px) { 
    .hero-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 4rem; 
    } 
}
.hero-split .hero-content { 
    max-width: none; 
    text-align: left; 
}

/* Slider Styles */
.hero-slider { 
    position: relative; 
    width: 100%; 
}
.slider-container { 
    position: relative; 
    width: 100%; 
    overflow: hidden; 
    border-radius: var(--radius-xl); 
    box-shadow: var(--shadow-float); 
    background: var(--muted);
}
.slider-track { 
    display: flex; 
    transition: transform 0.5s ease-in-out; 
}
.slider-slide { 
    min-width: 100%; 
    aspect-ratio: 4/3; 
    overflow: hidden;
}
.slider-slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease;
}
.slider-container:hover .slider-slide.active img {
    transform: scale(1.05);
}

/* Slider Navigation Arrows */
.slider-arrow { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 44px; 
    height: 44px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: rgba(255, 255, 255, 0.9); 
    border: none; 
    border-radius: var(--radius-full); 
    cursor: pointer; 
    transition: var(--transition-base); 
    box-shadow: var(--shadow-soft);
    z-index: 10;
}
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }
.slider-arrow:hover { 
    background: var(--primary); 
    color: white;
}
.slider-arrow svg { 
    width: 20px; 
    height: 20px; 
}

/* Slider Dots */
.slider-dots { 
    position: absolute; 
    bottom: 1rem; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex; 
    gap: 0.5rem; 
    z-index: 10;
}
.slider-dot { 
    width: 12px; 
    height: 12px; 
    border-radius: var(--radius-full); 
    border: 2px solid white; 
    background: transparent; 
    cursor: pointer; 
    transition: var(--transition-base);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.slider-dot.active, 
.slider-dot:hover { 
    background: white; 
}

/* About Hero Slider */
.about-hero.hero-split { padding-bottom: 2rem; }
.about-hero .about-text { max-width: none; }
.about-hero .about-text h1 { margin-bottom: 1.5rem; }
.about-hero .about-text p { font-size: 1.125rem; margin-bottom: 1rem; }

/* Responsive adjustments */
@media (max-width: 1023px) {
    .hero-split { padding-top: 9rem; padding-bottom: 3rem; }
    .hero-grid { gap: 2rem; }
    .slider-arrow { width: 36px; height: 36px; }
    .slider-prev { left: 0.5rem; }
    .slider-next { right: 0.5rem; }
}

/* Footer Social Icons (below description) */
.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

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

.footer-social-icons a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Contact Page Social Links - Card Style */
.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--muted);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    flex-shrink: 0;
}

.social-link.instagram:hover { background: #E4405F; }
.social-link.tiktok:hover { background: #000000; }
.social-link.facebook:hover { background: #1877F2; }
.social-link.youtube:hover { background: #FF0000; }
.social-link.whatsapp:hover { background: #25D366; }

/* WhatsApp Floating Widget */
.wa-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: inherit;
}

.wa-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.wa-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.wa-icon-close {
    display: none;
}

.wa-widget.active .wa-icon-open {
    display: none;
}

.wa-widget.active .wa-icon-close {
    display: block;
}

.wa-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 340px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s;
}

.wa-widget.active .wa-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-header {
    background: #25D366;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.wa-header strong {
    display: block;
    font-size: 1rem;
}

.wa-header span {
    font-size: 0.75rem;
    opacity: 0.9;
}

.wa-body {
    padding: 1.25rem;
}

.wa-message {
    background: #f0f0f0;
    padding: 1rem;
    border-radius: 12px;
    border-top-left-radius: 4px;
    margin-bottom: 1rem;
}

.wa-message p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.wa-message p + p {
    margin-top: 0.5rem;
}

.wa-form-group {
    margin-bottom: 0.75rem;
}

.wa-form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.wa-form-group input:focus {
    outline: none;
    border-color: #25D366;
}

.wa-submit {
    width: 100%;
    padding: 0.875rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.wa-submit:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .wa-widget {
        bottom: 16px;
        right: 16px;
    }
    
    .wa-popup {
        width: calc(100vw - 32px);
        right: 0;
    }
}
