:root {
    --ink: #0f172a;
    --ink-soft: #475569;
    --canvas: #f8fafc;
    --canvas-soft: #e2e8f0;
    --card: #ffffff;
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --accent: #f59e0b;
    --success: #10b981;
    --line: rgba(15, 23, 42, 0.1);
    
    --display: 'Crimson Text', serif;
    --body: 'Sora', sans-serif;
    --mono: 'JetBrains Mono', monospace;
    
    --max: 1200px;
    --radius: 12px;
    --shadow-soft: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lift: 0 12px 32px rgba(15, 23, 42, 0.12);
    --shadow-deep: 0 20px 48px rgba(15, 23, 42, 0.16);
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--canvas);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 12px;
    font-weight: 600;
}

h1, h2, h3, h4 {
    font-family: var(--display);
    color: var(--ink);
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
h3 { font-size: 1.2rem; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--body);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.05);
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--primary);
    color: #fff;
}

.btn-light:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-light-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-light-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.section-header {
    margin-bottom: 48px;
    text-align: center;
}

.section-header.light {
    color: #fff;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header.light h2 {
    color: #fff;
}

.section-subtitle {
    color: var(--ink-soft);
    font-size: 1rem;
    margin: 0 auto;
    max-width: 600px;
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* ====== HERO ====== */
.hero {
    background: #0f172a;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.hero-cover {
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
}

.hero-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.6) 70%, rgba(15, 23, 42, 0.95) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -100px;
    padding: 0 28px 80px;
}

.hero-main {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.hero-text .eyebrow {
    color: var(--accent);
    font-size: 0.7rem;
}

.hero-text h1 {
    color: #fff;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 16px;
    margin-top: 0;
}

.text-accent {
    display: block;
    color: #38bdf8;
    font-size: 0.8em;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-quick-links {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.hero-quick-links li a {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-quick-links li a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-badge {
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.logo-img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
}

.hero-stats {
    max-width: var(--max);
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.stat-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(8px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-icon.star  { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.stat-icon.users { background: linear-gradient(135deg, #f59e0b, #d97706); }
.stat-icon.care  { background: linear-gradient(135deg, #10b981, #059669); }

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 3px;
}

@media (max-width: 1000px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .logo-badge {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 600px) {
    .hero-cover { height: 240px; }
    .hero-content-wrapper { margin-top: -60px; padding-bottom: 60px; }
    .logo-badge { width: 200px; height: 200px; }
    .hero-stats { grid-template-columns: 1fr; }
}

/* ====== ABOUT ====== */
.about {
    background: var(--canvas);
    padding: 80px 28px;
}

.about-content {
    max-width: var(--max);
    margin: 0 auto;
}

.about-text {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-text p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lift);
    transform: translateY(-6px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.feature-card h3 {
    color: var(--ink);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .about { padding: 60px 20px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
}

/* ====== GALLERY ====== */
.gallery-section {
    background: var(--canvas-soft);
    padding: 80px 28px;
}

.gallery-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    background: var(--card);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    border: none;
    padding: 0;
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.lightbox.open {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .gallery-section { padding: 60px 20px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ====== SERVICES ====== */
.services-section {
    background: var(--canvas);
    padding: 80px 28px;
}

.services-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lift);
    transform: translateY(-6px);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.service-icon.icon-1 { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.service-icon.icon-2 { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.service-icon.icon-3 { background: linear-gradient(135deg, #10b981, #059669); }

.service-header h3 {
    color: var(--ink);
    margin: 0;
    font-size: 1.15rem;
}

.service-description {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    color: var(--ink-soft);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features i {
    color: var(--success);
    font-size: 0.8rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .services-section { padding: 60px 20px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ====== REVIEWS ====== */
.reviews-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 28px;
}

.reviews-container {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reviews-info .eyebrow {
    color: var(--accent);
}

.reviews-info h2 {
    color: #fff;
}

.reviews-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
}

.review-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.reviews-visual {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.reviews-visual img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .reviews-section { padding: 60px 20px; }
    .reviews-container { grid-template-columns: 1fr; gap: 40px; }
}

/* ====== CONTACT ====== */
.contact-section {
    background: var(--canvas-soft);
    padding: 80px 28px;
}

.contact-container {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.contact-card h3 {
    color: var(--ink);
    margin-bottom: 32px;
    font-size: 1.3rem;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.detail-label {
    color: var(--ink-soft);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-detail-text p {
    margin: 0;
    color: var(--ink);
    font-size: 0.95rem;
}

.contact-detail-text a {
    color: var(--primary);
    font-weight: 600;
}

.contact-detail-text a:hover {
    color: var(--primary-dark);
}

.social-links-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.social-label {
    color: var(--ink-soft);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--canvas);
    color: var(--ink);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    min-height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

@media (max-width: 900px) {
    .contact-section { padding: 60px 20px; }
    .contact-container { grid-template-columns: 1fr; gap: 40px; }
    .map-wrapper { min-height: 350px; }
}

/* ====== FOOTER ====== */
/* ── FOOTER ── */
 footer {
  background: #060F09;
  padding: 52px 5% 28px;
  text-align: center;
}
.footer-powered { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.footer-powered span { font-size: 0.7rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.12em; }
.footer-powered img { height: 38px; width: auto; object-fit: contain; vertical-align: middle; }
.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 28px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--sun); }
.footer-section-label { font-size: 0.68rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.footer-social { display: flex; justify-content: center; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 0.95rem; text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.footer-social a:hover { transform: translateY(-3px); }
.footer-social a:nth-child(1):hover { background: #3b5999; border-color: #3b5999; color: #fff; }
.footer-social a:nth-child(2):hover { background: #1d9bf0; border-color: #1d9bf0; color: #fff; }
.footer-social a:nth-child(3):hover { background: #e4405f; border-color: #e4405f; color: #fff; }
.footer-social a:nth-child(4):hover { background: #ff0000; border-color: #ff0000; color: #fff; }
.footer-social a.wa-icon { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); color: #25D366; }
.footer-social a.wa-icon:hover { background: #25D366; border-color: #25D366; color: #fff; }
.footer-share-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.fsr-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.fsr-btn:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 20px rgba(0,0,0,0.35); }
.fsr-wa  { background: #25D366; }
.fsr-fb  { background: #3b5999; }
.fsr-tw  { background: #1d9bf0; }
.fsr-li  { background: #0077b5; }
.fsr-em  { background: #e8593f; }
.fsr-sm  { background: #4c53ef; }
.footer-bottom { font-size: 0.78rem; color: rgba(255,255,255,.28); border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; }



/* ====== FLOATING BUTTONS ====== */

/* WhatsApp — bottom LEFT */
.float-wa {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 90;
    animation: floatBob 3s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.float-wa:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

@keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Share menu — bottom RIGHT, above scroll-to-top */
.float-share {
    position: fixed;
    bottom: 90px;
    right: 28px;
    left: unset;
    z-index: 90;
}

.float-share-trigger {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(200, 168, 75, 0.35);
    background: #0a1a0f;
    color: #c8a84b;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.float-share-trigger:hover {
    background: #c8a84b;
    color: #0a1a0f;
    border-color: #c8a84b;
    transform: scale(1.08);
}

.float-share-items {
    position: absolute;
    right: 0;
    left: unset;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
}

.float-share.open .float-share-items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fsi-pop {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fsi-pop:hover {
    transform: scale(1.12) translateY(-2px);
}

.fsi-pop-wa { background: #25d366; }
.fsi-pop-fb { background: #3b5999; }
.fsi-pop-tw { background: #1da1f2; }
.fsi-pop-li { background: #0077b5; }
.fsi-pop-em { background: #c8a84b; }

/* Scroll to top — bottom RIGHT */
.float-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    left: unset;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(200, 168, 75, 0.35);
    background: #0a1a0f;
    color: #c8a84b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 89;
}

.float-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-top:hover {
    background: #c8a84b;
    color: #0a1a0f;
    border-color: #c8a84b;
    transform: translateY(-3px);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .section-header { margin-bottom: 36px; }
    h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
    h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
    .footer-inner { padding: 48px 20px 36px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .float-wa     { width: 50px; height: 50px; font-size: 1.3rem; bottom: 20px; left: 20px; }
    .float-share  { bottom: 84px; right: 20px; left: unset; }
    .float-top    { width: 44px; height: 44px; bottom: 20px; right: 20px; }
}