/* ============================================================
   ANCUT PETANU — Main Stylesheet
   Adventure & Wellness · Ancut Petanu, Bali
   ============================================================ */

/* ============================================================
   0. FULL-WIDTH OVERRIDE — Hello Elementor / Elementor Fix
   ============================================================
   main.css dimuat SETELAH hello-elementor CSS, jadi selector
   dengan specificity tinggi + !important di sini pasti menang.
   ============================================================ */

/* 0a. Page wrapper — spesifik ke body class Hello Elementor */
html body.hello-elementor-default #page,
html body.hello-elementor-default .site,
html body.hello-elementor-default #page.site,
html body.elementor-default #page,
html body.elementor-default .site,
html body.elementor-page #page,
html body.elementor-page .site,
html body.ancut-petanu #page,
html body.ancut-petanu .site,
html body #page,
html body .site,
html body #page.site {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: hidden;
}

/* 0b. Inner content wrappers — Hello Elementor kadang wrap dalam #content */
html body #content,
html body .site-content,
html body #main,
html body .site-main,
html body.hello-elementor-default #content,
html body.hello-elementor-default .site-content,
html body.hello-elementor-default #main,
html body.hello-elementor-default .site-main {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* 0c. Structural sections must always span the full viewport */
.site-topbar,
.site-header,
.site-footer,
.site-footer .footer-strip,
.site-footer .footer-main,
.site-footer .footer-bottom,
.cta-section,
.hero-section,
.stats-section,
.about-section,
.services-section,
.gallery-section,
.testimonials-section,
.page-hero,
.service-hero,
.post-hero {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* 0d. Elementor's own container variable — keep full width on our pages */
:root {
    --e-global-color-primary: var(--ap-primary);
}
.elementor-page #page,
.elementor-page .site,
.elementor-default #page,
.elementor-default .site {
    max-width: 100% !important;
}

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--ap-text);
    background: var(--ap-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--ap-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--ap-secondary); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--ap-dark);
    font-weight: 700;
    margin-bottom: .75em;
}

p { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.25em; }

/* ============================================================
   2. UTILITIES
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding    { padding: var(--section-padding); }
.section-padding-sm { padding: 50px 0; }

/* ---- Section Header ---- */
.section-header {
    margin-bottom: 60px;
}
.section-header--center {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.section-badge {
    display: inline-block;
    font-family: var(--font-sub);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ap-secondary);
    background: rgba(193,122,59,.1);
    border: 1px solid rgba(193,122,59,.25);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--ap-dark);
    margin-bottom: .5em;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--ap-text-muted);
    line-height: 1.8;
}

/* ---- Section Header Light ---- */
.section-header--light .section-title,
.section-header--light .section-subtitle { color: var(--ap-white); }
.section-header--light .section-badge {
    color: var(--ap-secondary-light);
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sub);
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn-sm  { padding: 10px 22px; font-size: .85rem; }
.btn-md  { padding: 13px 28px; font-size: .95rem; }
.btn-lg  { padding: 16px 36px; font-size: 1rem; }
.btn-block { display: flex; justify-content: center; width: 100%; }

/* Primary */
.btn-primary {
    background: var(--ap-primary);
    color: var(--ap-white);
    border-color: var(--ap-primary);
}
.btn-primary:hover {
    background: var(--ap-primary-dark);
    border-color: var(--ap-primary-dark);
    color: var(--ap-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45,80,22,.35);
}

/* Secondary */
.btn-secondary {
    background: var(--ap-secondary);
    color: var(--ap-white);
    border-color: var(--ap-secondary);
}
.btn-secondary:hover {
    background: var(--ap-secondary-light);
    border-color: var(--ap-secondary-light);
    color: var(--ap-white);
    transform: translateY(-2px);
}

/* Outline Primary */
.btn-outline-primary {
    background: transparent;
    color: var(--ap-primary);
    border-color: var(--ap-primary);
}
.btn-outline-primary:hover {
    background: var(--ap-primary);
    color: var(--ap-white);
    transform: translateY(-2px);
}

/* Outline Light */
.btn-outline-light {
    background: transparent;
    color: var(--ap-white);
    border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover {
    background: var(--ap-white);
    color: var(--ap-primary);
    border-color: var(--ap-white);
}

/* WhatsApp */
.btn-whatsapp {
    background: #25D366;
    color: var(--ap-white);
    border-color: #25D366;
}
.btn-whatsapp:hover {
    background: #1EBE57;
    border-color: #1EBE57;
    color: var(--ap-white);
    transform: translateY(-2px);
}

/* ============================================================
   3. TOP BAR
   ============================================================ */
.site-topbar {
    background: var(--ap-primary);
    color: var(--ap-white);
    font-size: .82rem;
    font-family: var(--font-sub);
    text-align: center;
    padding: 8px 0;
}
.site-topbar .topbar-link,
.site-topbar span {
    color: var(--ap-white);
    opacity: .9;
}
.site-topbar .topbar-link:hover { opacity: 1; text-decoration: underline; }

/* ============================================================
   4. HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ap-border);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

/* Logo */
.header-logo a {
    display: flex;
    align-items: center;
}
.header-logo .custom-logo {
    max-height: 56px;
    width: auto;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-main {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--ap-primary);
    letter-spacing: -.02em;
}
.logo-tagline {
    font-family: var(--font-sub);
    font-size: .72rem;
    font-weight: 500;
    color: var(--ap-secondary);
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Nav */
.header-nav .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.header-nav .nav-menu > li > a {
    font-family: var(--font-sub);
    font-size: .9rem;
    font-weight: 600;
    color: var(--ap-text);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: block;
}
.header-nav .nav-menu > li > a:hover,
.header-nav .nav-menu > li.current-menu-item > a,
.header-nav .nav-menu > li.current-page-ancestor > a {
    color: var(--ap-primary);
    background: rgba(45,80,22,.07);
}

/* Dropdown */
.header-nav .nav-menu li {
    position: relative;
}
.header-nav .nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: var(--ap-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--ap-border);
    list-style: none;
    padding: 8px;
    z-index: 100;
    animation: fadeDown .2s ease;
}
.header-nav .nav-menu li:hover > .sub-menu { display: block; }
.header-nav .nav-menu .sub-menu li a {
    font-family: var(--font-sub);
    font-size: .88rem;
    font-weight: 500;
    color: var(--ap-text);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    display: block;
}
.header-nav .nav-menu .sub-menu li a:hover {
    background: rgba(45,80,22,.07);
    color: var(--ap-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sub);
    font-size: .85rem;
    font-weight: 600;
    color: var(--ap-text);
}
.header-phone:hover { color: var(--ap-primary); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.hamburger:hover { background: rgba(45,80,22,.07); }
.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ap-text);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
    opacity: 0;
    transition: opacity .3s;
}
.mobile-menu-overlay.active { display: block; opacity: 1; }

@media (max-width: 900px) {
    .hamburger { display: flex; }
    .header-phone { display: none; }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--ap-white);
        z-index: 999;
        padding: 80px 24px 24px;
        overflow-y: auto;
        transition: right .3s cubic-bezier(.4,0,.2,1);
        box-shadow: var(--shadow-lg);
    }
    .header-nav.open { right: 0; }

    .header-nav .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }
    .header-nav .nav-menu > li > a {
        font-size: 1rem;
        padding: 12px 16px;
    }
    .header-nav .nav-menu .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        display: block !important;
        padding: 4px 0 4px 16px;
    }
}

/* ============================================================
   5. HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--ap-primary-dark);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 48, 9, .85) 0%,
        rgba(45, 80, 22, .6) 50%,
        rgba(26, 48, 9, .75) 100%
    );
}

.hero-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}
.hero-deco--leaf1 { top: -10%; right: -5%; width: 300px; transform: rotate(20deg); }
.hero-deco--leaf2 { bottom: 10%; left: -3%; width: 200px; transform: rotate(-15deg); }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: var(--ap-white);
    padding: 100px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sub);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ap-secondary-light);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(193,122,59,.4);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--ap-accent); }

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--ap-white);
    margin-bottom: 24px;
    letter-spacing: -.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255,255,255,.85);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

/* Hero Scroll */
.hero-scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.6);
    font-size: .78rem;
    font-family: var(--font-sub);
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}
.hero-scroll:hover { color: rgba(255,255,255,.9); }
.hero-scroll__mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.hero-scroll__wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,.6);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease infinite;
}
@keyframes scrollWheel {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 2;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ============================================================
   6. STATS SECTION
   ============================================================ */
.stats-section {
    background: var(--ap-white);
    padding: 50px 0;
    border-bottom: 1px solid var(--ap-border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--ap-border);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--ap-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-family: var(--font-sub);
    font-size: .82rem;
    font-weight: 600;
    color: var(--ap-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ============================================================
   7. ABOUT SECTION
   ============================================================ */
.about-section { background: var(--ap-cream); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 50px; } }

/* Images side */
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.about-photo--placeholder {
    height: 480px;
    background: linear-gradient(135deg, var(--ap-primary-light), var(--ap-primary));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
}
.about-photo--placeholder i { font-size: 3rem; }

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--ap-white);
    box-shadow: var(--shadow-md);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-deco-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--ap-white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    font-family: var(--font-sub);
}
.about-deco-badge i {
    font-size: 1.4rem;
    color: var(--ap-secondary);
}
.about-deco-badge strong {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ap-dark);
    display: block;
    line-height: 1.2;
}
.about-deco-badge span {
    font-size: .75rem;
    color: var(--ap-text-muted);
}

.about-deco-shape {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(45,80,22,.15);
    border-radius: var(--radius-md);
    transform: rotate(15deg);
    z-index: -1;
}

/* Content side */
.about-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
}
.about-text { margin-bottom: 30px; }
.about-text p { color: var(--ap-text-muted); line-height: 1.85; }

.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--ap-text);
}
.about-feature__icon {
    width: 32px;
    height: 32px;
    background: rgba(45,80,22,.1);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    color: var(--ap-primary);
    flex-shrink: 0;
}

/* ============================================================
   8. SERVICES SECTION
   ============================================================ */
.services-section {
    position: relative;
    background: var(--ap-cream);
    overflow: hidden;
}
.services-section__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--ap-light) 0%, var(--ap-cream) 100%);
}
.services-section > .container { position: relative; z-index: 1; }

/* Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

/* Service Card */
.service-card {
    position: relative;
    background: var(--ap-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.service-card:hover .service-card__image img {
    transform: scale(1.08);
}
.service-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--card-accent, var(--ap-primary)), color-mix(in srgb, var(--card-accent, var(--ap-primary)) 70%, black));
    color: rgba(255,255,255,.5);
    font-size: 3rem;
}
.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 60%);
}

.service-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    font-family: var(--font-sub);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--ap-white);
    color: var(--card-accent, var(--ap-primary));
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.service-card__icon {
    position: absolute;
    bottom: 170px;
    right: 20px;
    z-index: 3;
    width: 52px;
    height: 52px;
    background: var(--card-accent, var(--ap-primary));
    color: var(--ap-white);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
    border: 3px solid var(--ap-white);
    transition: var(--transition);
}
.service-card:hover .service-card__icon {
    transform: rotate(-5deg) scale(1.1);
}

.service-card__content {
    padding: 28px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ap-dark);
    margin-bottom: 8px;
}
.service-card__tagline {
    font-size: .88rem;
    color: var(--ap-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.service-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.service-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ap-text-muted);
    background: rgba(45,80,22,.06);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}
.service-meta-item i { color: var(--card-accent, var(--ap-primary)); font-size: .75rem; }

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--ap-border);
    margin-top: auto;
}

.service-card__price {
    display: flex;
    flex-direction: column;
}
.price-label {
    font-size: .72rem;
    color: var(--ap-text-muted);
    font-family: var(--font-sub);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.price-value {
    font-family: var(--font-sub);
    font-size: 1rem;
    font-weight: 800;
    color: var(--ap-primary);
}
.price-note {
    font-size: .72rem;
    color: var(--ap-text-muted);
}

.service-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sub);
    font-size: .85rem;
    font-weight: 700;
    color: var(--card-accent, var(--ap-primary));
    white-space: nowrap;
    transition: var(--transition);
}
.service-card__cta i {
    transition: transform .25s ease;
}
.service-card:hover .service-card__cta i {
    transform: translateX(4px);
}

/* Services Section CTA */
.services-section__cta { text-align: center; }

/* Services Empty */
.services-empty {
    text-align: center;
    padding: 60px;
    color: var(--ap-text-muted);
}
.services-empty i {
    font-size: 4rem;
    margin-bottom: 16px;
    display: block;
    color: var(--ap-border);
}

/* ============================================================
   9. GALLERY SECTION
   ============================================================ */
.gallery-section { background: var(--ap-white); }

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}
.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    position: relative;
}
.gallery-item--wide  { grid-column: span 2; }
.gallery-item--tall  { grid-row:    span 2; }

.gallery-link { display: block; height: 100%; position: relative; }
.gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.gallery-item:hover .gallery-link img { transform: scale(1.06); }

.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(26,48,9,.5);
    display: grid;
    place-items: center;
    color: var(--ap-white);
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-hover { opacity: 1; }

@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-item--wide  { grid-column: span 2; }
    .gallery-item--tall  { grid-row: span 1; }
}

/* ============================================================
   10. TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    position: relative;
    overflow: hidden;
}
.testimonials-section__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ap-primary-dark) 0%, var(--ap-primary) 100%);
    opacity: .97;
}
.testimonials-section > .container { position: relative; z-index: 1; }

/* Slider */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}
.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}

/* Testimonial Card */
.testimonial-card { }
.testimonial-card__inner {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover .testimonial-card__inner {
    background: rgba(255,255,255,.12);
    transform: translateY(-4px);
}

.testimonial-quote {
    position: absolute;
    top: -1px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--ap-secondary);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    display: grid;
    place-items: center;
    color: var(--ap-white);
    font-size: 1.1rem;
}

.testimonial-rating {
    margin-bottom: 16px;
}
.testimonial-rating .stars i {
    color: #FFD700;
    font-size: .85rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: .95rem;
    color: rgba(255,255,255,.85);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
    quotes: '"' '"';
}
.testimonial-text::before { content: open-quote; color: var(--ap-secondary); font-size: 1.2em; }
.testimonial-text::after  { content: close-quote; color: var(--ap-secondary); font-size: 1.2em; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--ap-secondary);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-avatar__initial {
    width: 100%;
    height: 100%;
    background: var(--ap-secondary);
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ap-white);
}
.testimonial-name {
    display: block;
    font-family: var(--font-sub);
    font-size: .95rem;
    font-weight: 700;
    color: var(--ap-white);
}
.testimonial-location {
    display: block;
    font-size: .78rem;
    color: rgba(255,255,255,.6);
}
.testimonial-location i { margin-right: 3px; }
.testimonial-service {
    display: block;
    font-size: .75rem;
    color: var(--ap-secondary-light);
    font-weight: 600;
    margin-top: 2px;
}

/* Slider Nav */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}
.slider-nav__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.08);
    color: var(--ap-white);
    cursor: pointer;
    transition: var(--transition);
    display: grid;
    place-items: center;
    font-size: .9rem;
}
.slider-nav__btn:hover {
    background: var(--ap-secondary);
    border-color: var(--ap-secondary);
}
.slider-dots {
    display: flex;
    gap: 8px;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: var(--transition);
}
.slider-dot.active {
    background: var(--ap-secondary);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 960px) {
    .testimonials-track { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .testimonials-track { grid-template-columns: 1fr; }
}

/* ============================================================
   11. CTA SECTION
   ============================================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--ap-primary-dark);
    background-image: var(--cta-bg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,48,9,.9) 0%, rgba(45,80,22,.8) 100%);
}
.cta-deco {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .5;
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.cta-text { flex: 1; min-width: 280px; }
.cta-leaf { font-size: 2rem; margin-bottom: 16px; }
.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    color: var(--ap-white);
    margin-bottom: 16px;
}
.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

/* ============================================================
   12. PAGE HERO (Generic — Services, Archive, etc.)
   ============================================================ */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, var(--ap-primary-dark), var(--ap-primary));
    background-size: cover;
    background-position: center;
    padding-bottom: 60px;
    overflow: hidden;
}
.page-hero--has-bg .page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,48,9,.9) 0%, rgba(26,48,9,.5) 100%);
}
.page-hero__content {
    position: relative;
    z-index: 2;
    color: var(--ap-white);
}
.page-hero__title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    color: var(--ap-white);
    margin-bottom: 12px;
}
.page-hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,.8);
}
.page-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}
.page-hero__wave svg { display: block; width: 100%; height: 60px; }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-family: var(--font-sub);
    color: rgba(255,255,255,.65);
    margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--ap-white); }
.breadcrumb i { font-size: .65rem; }
.breadcrumb span { color: var(--ap-white); }

/* ============================================================
   13. SINGLE SERVICE
   ============================================================ */
.service-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, var(--ap-primary-dark), var(--ap-primary));
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.service-hero--has-bg .service-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,48,9,.92) 0%, rgba(26,48,9,.5) 60%, transparent 100%);
}
.service-hero__content {
    position: relative;
    z-index: 2;
    color: var(--ap-white);
    padding: 80px 0 60px;
}
.service-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--service-accent, var(--ap-primary));
    color: var(--ap-white);
    font-family: var(--font-sub);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}
.service-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--ap-white);
    margin-bottom: 16px;
    max-width: 700px;
}
.service-hero__excerpt {
    font-size: 1.05rem;
    color: rgba(255,255,255,.8);
    max-width: 600px;
    margin-bottom: 30px;
}
.service-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.hero-fact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-md);
    padding: 10px 16px;
}
.hero-fact i { font-size: 1.1rem; color: var(--ap-secondary-light); }
.hero-fact .fact-label { font-size: .72rem; color: rgba(255,255,255,.6); font-family: var(--font-sub); display: block; }
.hero-fact strong { font-size: .9rem; color: var(--ap-white); font-family: var(--font-sub); display: block; }

.service-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}
.service-hero__wave svg { display: block; width: 100%; height: 60px; }

/* Service Layout */
.service-layout { background: var(--ap-cream); }
.service-layout__grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    align-items: start;
}
@media (max-width: 1024px) {
    .service-layout__grid {
        grid-template-columns: 1fr;
    }
    .service-layout__sidebar {
        order: -1;
    }
}

.service-section-title {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--ap-border);
    color: var(--ap-dark);
}
.service-section-title i { color: var(--service-accent, var(--ap-primary)); }

/* Highlights */
.service-highlights { margin-bottom: 50px; }
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.highlight-item {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--ap-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--ap-border);
    transition: var(--transition);
}
.highlight-item:hover {
    border-color: var(--service-accent, var(--ap-primary));
    box-shadow: var(--shadow-card);
}
.highlight-icon {
    width: 44px;
    height: 44px;
    background: rgba(45,80,22,.08);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--service-accent, var(--ap-primary));
    font-size: 1.1rem;
}
.highlight-content h3 { font-size: 1rem; margin-bottom: 6px; }
.highlight-content p { font-size: .88rem; color: var(--ap-text-muted); margin: 0; }

/* Inclusions */
.service-inclusions { margin-bottom: 50px; }
.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 640px) { .inclusions-grid { grid-template-columns: 1fr; } }

.inclusions-col {
    background: var(--ap-white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--ap-border);
}
.inclusions-col h3 {
    font-size: 1rem;
    font-family: var(--font-sub);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.inclusions-col--included h3 i { color: #22C55E; }
.inclusions-col--excluded h3 i { color: #EF4444; }
.inclusions-col ul { list-style: none; padding: 0; margin: 0; }
.inclusions-col li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: .9rem;
    border-bottom: 1px solid var(--ap-border);
}
.inclusions-col li:last-child { border-bottom: none; }
.inclusions-col--included li i { color: #22C55E; margin-top: 3px; }
.inclusions-col--excluded li i { color: #EF4444; margin-top: 3px; }

/* Service Gallery */
.service-gallery-section { margin-bottom: 50px; }
.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}
.service-gallery-grid .gallery-link {
    aspect-ratio: 1;
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}
.service-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.service-gallery-grid .gallery-link:hover img { transform: scale(1.05); }

/* Related Services */
.related-services { margin-top: 50px; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 700px) { .related-grid { grid-template-columns: 1fr; } }

.related-card {
    display: flex;
    gap: 12px;
    background: var(--ap-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--ap-border);
    transition: var(--transition);
    text-decoration: none;
}
.related-card:hover {
    border-color: var(--card-accent, var(--ap-primary));
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}
.related-card__img {
    width: 80px;
    flex-shrink: 0;
    overflow: hidden;
}
.related-card__img img { width: 100%; height: 100%; object-fit: cover; }
.related-card__img-ph {
    width: 100%;
    height: 100%;
    min-height: 80px;
    background: linear-gradient(135deg, var(--card-accent, var(--ap-primary)), var(--ap-primary-dark));
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.5);
    font-size: 1.5rem;
}
.related-card__content {
    padding: 12px 12px 12px 0;
    flex: 1;
}
.related-card__content h4 {
    font-size: .9rem;
    margin-bottom: 6px;
    color: var(--ap-dark);
}
.related-card__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: .78rem;
    color: var(--ap-text-muted);
}
.related-card__meta i { margin-right: 4px; }
.related-card__price {
    color: var(--card-accent, var(--ap-primary));
    font-weight: 700;
    font-size: .82rem;
}

/* Booking Card */
.booking-card {
    background: var(--ap-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--ap-border);
    overflow: hidden;
}
.sticky-sidebar {
    position: sticky;
    top: 100px;
}
.booking-card__header {
    background: linear-gradient(135deg, var(--service-accent, var(--ap-primary)), var(--ap-primary-dark));
    padding: 28px 24px;
    color: var(--ap-white);
}
.booking-price {
    display: flex;
    flex-direction: column;
}
.price-from {
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    font-family: var(--font-sub);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.price-main {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--ap-white);
    line-height: 1.1;
}
.booking-card__header .price-note {
    font-size: .82rem;
    color: rgba(255,255,255,.7);
}

.booking-card__body { padding: 24px; }

.booking-info {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    border: 1px solid var(--ap-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.booking-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: .88rem;
    border-bottom: 1px solid var(--ap-border);
}
.booking-info li:last-child { border-bottom: none; }
.booking-info li i { color: var(--service-accent, var(--ap-primary)); width: 16px; }
.booking-info li span { color: var(--ap-text-muted); flex: 1; }
.booking-info li strong { font-weight: 700; }

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.booking-note {
    display: flex;
    gap: 8px;
    background: rgba(45,80,22,.06);
    border-radius: var(--radius-sm);
    padding: 12px;
    font-size: .82rem;
    color: var(--ap-text-muted);
}
.booking-note i { color: var(--ap-primary); flex-shrink: 0; margin-top: 2px; }
.booking-note p { margin: 0; }

/* ============================================================
   14. SINGLE POST
   ============================================================ */
.post-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, var(--ap-primary-dark), var(--ap-primary));
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.post-hero--has-bg .post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,48,9,.92) 0%, rgba(26,48,9,.55) 60%, rgba(26,48,9,.3) 100%);
}
.post-hero__content {
    position: relative;
    z-index: 2;
    color: var(--ap-white);
    padding: 80px 0 60px;
    max-width: 820px;
}
.post-hero__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.post-cat-badge {
    display: inline-block;
    font-family: var(--font-sub);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ap-white);
    background: var(--ap-secondary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}
.post-hero__title {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    color: var(--ap-white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.post-hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 24px;
}
.post-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: .85rem;
}
.post-meta-author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.author-avatar {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.4);
}
.post-meta-author > div {
    display: flex;
    flex-direction: column;
}
.meta-label {
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    font-family: var(--font-sub);
}
.author-name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--ap-white);
}
.post-meta-date, .post-meta-reading {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,.7);
}
.post-meta-date i, .post-meta-reading i { color: var(--ap-secondary-light); }
.post-meta-divider { color: rgba(255,255,255,.3); }

.post-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}
.post-hero__wave svg { display: block; width: 100%; height: 60px; }

/* Post Layout */
.post-layout { background: var(--ap-cream); }
.post-layout__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}
@media (max-width: 1024px) {
    .post-layout__grid { grid-template-columns: 1fr; }
}

/* Content Area */
.content-area {
    background: var(--ap-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
}
.content-area h2 {
    font-size: 1.6rem;
    color: var(--ap-dark);
    margin: 1.5em 0 .75em;
    padding-bottom: .5em;
    border-bottom: 2px solid var(--ap-border);
}
.content-area h3 { font-size: 1.25rem; margin: 1.25em 0 .5em; }
.content-area h4 { font-size: 1.05rem; }
.content-area p  { color: var(--ap-text); line-height: 1.85; }
.content-area img {
    border-radius: var(--radius-md);
    margin: 1.5em 0;
}
.content-area blockquote {
    border-left: 4px solid var(--ap-primary);
    padding: 16px 20px;
    margin: 1.5em 0;
    background: rgba(45,80,22,.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}
.content-area ul, .content-area ol {
    line-height: 1.8;
    color: var(--ap-text);
}
.content-area a {
    color: var(--ap-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media (max-width: 640px) { .content-area { padding: 28px 20px; } }

/* Share Bar */
.share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    border-bottom: 1px solid var(--ap-border);
    margin-bottom: 32px;
    font-family: var(--font-sub);
}
.share-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--ap-text-muted);
    margin-right: 4px;
}
.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .85rem;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.share-btn--facebook  { background: #1877F2; color: #fff; }
.share-btn--twitter   { background: #1DA1F2; color: #fff; }
.share-btn--whatsapp  { background: #25D366; color: #fff; }
.share-btn--copy      { background: var(--ap-border); color: var(--ap-text); }
.share-btn:hover { transform: scale(1.1) translateY(-2px); }

/* Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--ap-border);
    margin-top: 32px;
}
.post-tags i { color: var(--ap-text-muted); }
.post-tag {
    font-size: .78rem;
    font-family: var(--font-sub);
    font-weight: 600;
    color: var(--ap-primary);
    background: rgba(45,80,22,.08);
    border: 1px solid rgba(45,80,22,.15);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}
.post-tag:hover {
    background: var(--ap-primary);
    color: var(--ap-white);
    border-color: var(--ap-primary);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--ap-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--ap-border);
    margin: 36px 0;
}
.author-box__avatar img, .author-big-avatar {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50%;
    flex-shrink: 0;
}
.author-box__label {
    font-size: .72rem;
    font-family: var(--font-sub);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ap-secondary);
    margin-bottom: 4px;
    display: block;
}
.author-box__name { font-size: 1.1rem; margin-bottom: 8px; }
.author-box__bio { font-size: .9rem; color: var(--ap-text-muted); margin: 0; }

/* Post Navigation */
.post-navigation { margin: 40px 0 0; }
.post-nav__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) { .post-nav__grid { grid-template-columns: 1fr; } }

.post-nav__item {
    display: block;
    padding: 20px;
    background: var(--ap-white);
    border: 1px solid var(--ap-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}
.post-nav__item:hover {
    border-color: var(--ap-primary);
    box-shadow: var(--shadow-card);
}
.post-nav__item--next { text-align: right; }
.nav-label {
    display: block;
    font-size: .78rem;
    font-family: var(--font-sub);
    font-weight: 600;
    color: var(--ap-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px;
}
.nav-label i { vertical-align: middle; }
.nav-title {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--ap-dark);
    line-height: 1.4;
}

/* ============================================================
   15. SIDEBAR
   ============================================================ */
.sidebar-widget {
    background: var(--ap-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--ap-border);
    margin-bottom: 24px;
}
.sidebar-widget__title {
    font-size: 1rem;
    font-family: var(--font-sub);
    font-weight: 700;
    color: var(--ap-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--ap-border);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Related Posts */
.related-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.related-post { border-bottom: 1px solid var(--ap-border); padding-bottom: 12px; margin-bottom: 12px; }
.related-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.related-post__link {
    display: flex;
    gap: 10px;
    text-decoration: none;
}
.related-post__img {
    width: 64px;
    height: 50px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}
.related-post__img img { width: 100%; height: 100%; object-fit: cover; }
.related-post__date {
    display: block;
    font-size: .72rem;
    color: var(--ap-text-muted);
    font-family: var(--font-sub);
    margin-bottom: 3px;
}
.related-post__title {
    font-size: .88rem;
    font-weight: 600;
    color: var(--ap-dark);
    line-height: 1.4;
    margin: 0;
}
.related-post__link:hover .related-post__title { color: var(--ap-primary); }

/* Sidebar CTA */
.sidebar-cta .sidebar-cta__inner {
    text-align: center;
    background: linear-gradient(135deg, var(--ap-primary-dark), var(--ap-primary));
    border-radius: var(--radius-md);
    padding: 28px 20px;
    color: var(--ap-white);
}
.sidebar-cta__icon {
    font-size: 2rem;
    color: var(--ap-accent);
    margin-bottom: 12px;
    display: block;
}
.sidebar-cta__inner h3 {
    font-size: 1.1rem;
    color: var(--ap-white);
    margin-bottom: 8px;
}
.sidebar-cta__inner p {
    font-size: .88rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 16px;
}
.sidebar-cta__inner .btn + .btn { margin-top: 8px; }

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer-strip {
    background: var(--ap-secondary);
    padding: 30px 0;
}
.footer-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-strip__text h3 {
    font-size: 1.2rem;
    color: var(--ap-white);
    margin-bottom: 4px;
}
.footer-strip__text p { color: rgba(255,255,255,.8); font-size: .9rem; margin: 0; }
.footer-strip__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.footer-main {
    background: var(--ap-dark);
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-col--brand { grid-column: span 2; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col--brand { grid-column: span 1; }
}

.footer-logo .custom-logo { max-height: 56px; filter: brightness(0) invert(1); }
.logo-text--light .logo-main  { color: var(--ap-white); }
.logo-text--light .logo-tagline { color: var(--ap-secondary-light); }
.footer-about {
    font-size: .9rem;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-top: 16px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    transition: var(--transition);
    text-decoration: none;
}
.social-icon:hover {
    background: var(--ap-secondary);
    color: var(--ap-white);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-sub);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu li { margin-bottom: 8px; }
.footer-menu a {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.footer-menu a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--ap-secondary);
    transition: width .25s ease;
}
.footer-menu a:hover {
    color: var(--ap-white);
    padding-left: 4px;
}
.footer-menu a:hover::before { width: 12px; }

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    align-items: flex-start;
}
.footer-contact-list li:last-child { border-bottom: none; }
.footer-contact-list i {
    color: var(--ap-secondary);
    width: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-contact-list a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-contact-list a:hover { color: var(--ap-secondary-light); }

.footer-bottom {
    background: rgba(0,0,0,.3);
    padding: 16px 0;
}
.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.copyright { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom__links { display: flex; gap: 20px; }
.footer-bottom__links a {
    font-size: .82rem;
    color: rgba(255,255,255,.4);
    text-decoration: none;
    transition: var(--transition);
}
.footer-bottom__links a:hover { color: var(--ap-secondary-light); }

/* ============================================================
   17. FLOATING ELEMENTS
   ============================================================ */
/* WhatsApp Float */
.floating-wa {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 900;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ap-white);
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
    transition: var(--transition);
    text-decoration: none;
}
.floating-wa:hover {
    transform: scale(1.1);
    color: var(--ap-white);
}
.floating-wa__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: var(--ap-dark);
    color: var(--ap-white);
    font-size: .78rem;
    font-family: var(--font-sub);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.floating-wa:hover .floating-wa__tooltip { opacity: 1; }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 44px;
    height: 44px;
    background: var(--ap-primary);
    color: var(--ap-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    font-size: .9rem;
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.back-to-top:hover {
    background: var(--ap-primary-dark);
    transform: translateY(-3px);
}

/* ============================================================
   18. ANIMATIONS
   ============================================================ */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   19. SERVICES FILTER
   ============================================================ */
.services-filter { background: var(--ap-cream); }
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.filter-tab {
    font-family: var(--font-sub);
    font-size: .85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 2px solid var(--ap-border);
    background: var(--ap-white);
    color: var(--ap-text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.filter-tab.active,
.filter-tab:hover {
    border-color: var(--ap-primary);
    background: var(--ap-primary);
    color: var(--ap-white);
}

/* ============================================================
   20. DIFFICULTY BADGE
   ============================================================ */
.difficulty-badge {
    display: inline-flex;
    align-items: center;
    font-size: .72rem;
    font-family: var(--font-sub);
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}
.badge--easy     { background: #DCFCE7; color: #15803D; }
.badge--moderate { background: #FEF3C7; color: #B45309; }
.badge--hard     { background: #FEE2E2; color: #DC2626; }

/* ============================================================
   21. RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    :root { --section-padding: 60px 0; }

    .hero-content { padding: 120px 0 80px; }
    .hero-title { font-size: 2.2rem; }
    .hero-actions { gap: 12px; }
    .btn-lg { padding: 14px 28px; font-size: .95rem; }

    .about-img-secondary { display: none; }
    .about-deco-badge { display: none; }
    .about-features { grid-template-columns: 1fr; }

    .cta-content { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

    .services-grid { grid-template-columns: 1fr; }

    .footer-strip__inner { flex-direction: column; text-align: center; }
    .footer-strip__actions { justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.8rem; }
    .content-area { padding: 20px 16px; }
}
