/*
Theme Name: CleanForce Fresh
Theme URI: https://pinnaclepressure.pro
Author: Pinnacle Pressure
Author URI: https://pinnaclepressure.pro
Description: Light, clean, and fresh — the "after photo" theme for Pinnacle Pressure. Blue and coral palette, white header, crisp design.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cleanforce
Tags: pressure-washing, business, booking, one-page, custom-logo, custom-menu
*/

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Light, clean palette — the "after photo" feeling */
    --ink: #1a1e2e;
    --ink-soft: #3d4255;
    --ink-muted: #7c8194;
    --surface: #ffffff;
    --surface-cool: #f4f7fa;
    --surface-hover: #edf1f7;
    --border: #e2e7ef;
    --border-focus: #4a90d9;

    /* Clean water blue */
    --brand: #2968c8;
    --brand-soft: #e8f0fe;
    --brand-hover: #1e52a0;
    --brand-text: #1d4fa0;

    /* Warm coral for CTAs */
    --cta: #e8563c;
    --cta-hover: #d14428;
    --cta-soft: #fef0ed;

    --success: #1a9a5c;
    --star: #f0a30a;

    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1120px;
    --radius: 8px;
    --radius-lg: 12px;
    --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    background: var(--surface);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }

a { text-decoration: none; color: var(--brand); transition: color .2s var(--ease); }
a:hover { color: var(--brand-hover); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ============================================
   UTILITIES
   ============================================ */
.cf-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.cf-section { padding: 80px 0; }
.cf-section-header { max-width: 580px; margin: 0 0 48px; }
.cf-section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }

.cf-label {
    display: inline-block; font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--brand); margin-bottom: 10px;
}

.cf-section-header h2 { margin-bottom: 10px; }
.cf-section-header p { font-size: 1.02rem; color: var(--ink-muted); line-height: 1.7; }

/* Buttons */
.cf-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: var(--radius);
    font-family: var(--font); font-weight: 600; font-size: 0.92rem;
    cursor: pointer; border: none; transition: all .2s var(--ease);
    text-decoration: none; line-height: 1;
}
.cf-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.cf-btn-primary { background: var(--cta); color: #fff; }
.cf-btn-primary:hover { background: var(--cta-hover); color: #fff; }

.cf-btn-secondary { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.cf-btn-secondary:hover { background: #fff; color: var(--ink); border-color: #fff; }

.cf-btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.cf-btn-outline:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }

.cf-btn-accent { background: var(--brand); color: #fff; }
.cf-btn-accent:hover { background: var(--brand-hover); color: #fff; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.cf-animate, .cf-animate-left, .cf-animate-right {}

html.cf-js .cf-animate { opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
html.cf-js .cf-animate.cf-visible { opacity: 1; transform: translateY(0); }
html.cf-js .cf-animate-left { opacity: 0; transform: translateX(-20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
html.cf-js .cf-animate-left.cf-visible { opacity: 1; transform: translateX(0); }
html.cf-js .cf-animate-right { opacity: 0; transform: translateX(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
html.cf-js .cf-animate-right.cf-visible { opacity: 1; transform: translateX(0); }

.cf-topbar { display: none; }

/* ============================================
   HEADER — light, clean
   ============================================ */
.cf-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: box-shadow .3s var(--ease); }
.cf-header-inner { background: #fff; border-bottom: 1px solid var(--border); }
.cf-header.cf-scrolled .cf-header-inner { box-shadow: 0 2px 16px rgba(0,0,0,.06); }

.cf-nav-container { display: flex; justify-content: space-between; align-items: center; padding: 12px 24px; max-width: var(--container); margin: 0 auto; }

.cf-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.cf-logo img, .cf-logo .custom-logo { max-height: 44px; width: auto; }
.cf-has-logo .cf-logo-text { display: none !important; }
.cf-logo-text { display: flex; flex-direction: column; }
.cf-logo-name { font-size: 1.15rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
.cf-logo-tagline { font-size: 0.62rem; color: var(--ink-muted); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }

.cf-nav { display: flex; align-items: center; }
.cf-nav a { color: var(--ink-soft); font-weight: 500; font-size: 0.88rem; padding: 8px 14px; transition: color .15s var(--ease); }
.cf-nav a::after { display: none; }
.cf-nav a:hover, .cf-nav a.active { color: var(--brand); }
.cf-nav-cta { margin-left: 10px; }
.cf-nav-cta .cf-btn { padding: 10px 20px; font-size: 0.85rem; }

.cf-menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; }
.cf-menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s var(--ease); }
.cf-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
.cf-menu-toggle.active span:nth-child(2) { opacity: 0; }
.cf-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }

/* ============================================
   HERO
   ============================================ */
.cf-hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--ink); overflow: hidden; }
.cf-hero-bg { position: absolute; inset: 0; background: linear-gradient(155deg, #1a2744 0%, #1e3a6d 40%, #2968c8 100%); z-index: 1; }
.cf-hero-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 70%, rgba(255,255,255,.06) 0%, transparent 60%); }
.cf-hero-particles { display: none; }
.cf-hero-content { position: relative; z-index: 4; padding: 130px 0 90px; width: 100%; }
.cf-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.cf-hero-text { animation: fadeUp .6s var(--ease) .2s both; }

.cf-hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); padding: 6px 14px; border-radius: var(--radius); color: rgba(255,255,255,.8); font-size: 0.75rem; font-weight: 600; margin-bottom: 20px; letter-spacing: .04em; text-transform: uppercase; }
.cf-hero-badge svg { width: 14px; height: 14px; }
.cf-hero-text h1 { color: #fff; margin-bottom: 18px; font-size: clamp(2.4rem, 5vw, 3.6rem); }
.cf-hero-text h1 span { color: #7db5f5; }
.cf-hero-text > p { color: rgba(255,255,255,.6); font-size: 1.08rem; margin-bottom: 30px; max-width: 460px; line-height: 1.75; }
.cf-hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.cf-hero-stats { display: flex; gap: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.cf-hero-stat { text-align: left; }
.cf-hero-stat-number { display: block; font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.cf-hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,.4); margin-top: 4px; }

/* Hero quote card — WHITE card on dark hero */
.cf-hero-visual { animation: fadeUp .6s var(--ease) .35s both; }
.cf-hero-card { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.cf-hero-card::before { display: none; }
.cf-hero-card-content { position: relative; }
.cf-hero-card h3 { color: var(--ink); font-size: 1.2rem; margin-bottom: 18px; text-align: center; }

.cf-quick-quote-form { display: flex; flex-direction: column; gap: 10px; }
.cf-quick-quote-form input, .cf-quick-quote-form select, .cf-quick-quote-form textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); background: var(--surface); color: var(--ink); font-family: var(--font); font-size: .92rem; transition: border-color .2s var(--ease); outline: none; }
.cf-quick-quote-form input::placeholder, .cf-quick-quote-form textarea::placeholder { color: var(--ink-muted); }
.cf-quick-quote-form input:focus, .cf-quick-quote-form select:focus, .cf-quick-quote-form textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(41,104,200,.1); }
.cf-quick-quote-form select { cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237c8194' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.cf-quick-quote-form select option { background: #fff; color: var(--ink); }
.cf-quick-quote-form .cf-btn { width: 100%; justify-content: center; padding: 14px; margin-top: 4px; }

/* ============================================
   TRUST BAR
   ============================================ */
.cf-trust-bar { background: var(--surface-cool); padding: 22px 0; border-bottom: 1px solid var(--border); }
.cf-trust-items { display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap; }
.cf-trust-item { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-weight: 500; font-size: .88rem; }
.cf-trust-icon { width: 36px; height: 36px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cf-trust-icon.blue { background: var(--brand-soft); color: var(--brand); }
.cf-trust-icon.green { background: #e4f7ed; color: var(--success); }
.cf-trust-icon.orange { background: var(--cta-soft); color: var(--cta); }

/* ============================================
   SERVICES
   ============================================ */
.cf-services { background: var(--surface); }
.cf-services::before { display: none; }
.cf-services .cf-section-header { text-align: center; margin-left: auto; margin-right: auto; }
.cf-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.cf-service-card { background: var(--surface-cool); border-radius: var(--radius-lg); padding: 30px 26px; transition: background .2s var(--ease), box-shadow .2s var(--ease); border: 1px solid transparent; }
.cf-service-card::before { display: none; }
.cf-service-card:hover { background: #fff; border-color: var(--border); box-shadow: 0 4px 20px rgba(0,0,0,.05); }

.cf-service-icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin: 0 0 18px; background: var(--brand-soft); color: var(--brand); transition: none; }
.cf-service-card:hover .cf-service-icon { background: var(--brand); color: #fff; transform: none; }
.cf-service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.cf-service-card p { font-size: .9rem; color: var(--ink-muted); margin-bottom: 14px; line-height: 1.65; }

.cf-service-link { font-weight: 600; font-size: .85rem; display: inline-flex; align-items: center; gap: 4px; color: var(--brand); }
.cf-service-link:hover { gap: 8px; color: var(--brand-hover); }

/* ============================================
   WHY US
   ============================================ */
.cf-why-us { background: var(--surface-cool); }
.cf-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cf-why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cf-why-feature { padding: 20px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); transition: border-color .2s var(--ease); }
.cf-why-feature:hover { border-color: var(--brand); }
.cf-why-feature-icon { width: 40px; height: 40px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; background: var(--brand-soft); color: var(--brand); }
.cf-why-feature h4 { font-size: .95rem; margin-bottom: 5px; }
.cf-why-feature p { font-size: .85rem; margin-bottom: 0; color: var(--ink-muted); }

.cf-why-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.cf-why-image::after { display: none; }
.cf-experience-badge { position: absolute; bottom: 20px; left: 20px; background: var(--cta); color: #fff; padding: 14px 20px; border-radius: var(--radius); }
.cf-experience-badge-number { font-size: 1.7rem; font-weight: 800; line-height: 1; display: block; }
.cf-experience-badge-text { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }

/* ============================================
   PROCESS
   ============================================ */
.cf-process { background: var(--ink); color: #fff; }
.cf-process::before { display: none; }
.cf-process .cf-section-header { text-align: center; margin-left: auto; margin-right: auto; }
.cf-process .cf-section-header h2 { color: #fff; }
.cf-process .cf-section-header p { color: rgba(255,255,255,.55); }
.cf-process .cf-label { color: rgba(255,255,255,.4); }
.cf-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cf-process-steps::before { display: none; }
.cf-process-step { text-align: left; }
.cf-process-number { width: 44px; height: 44px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin: 0 0 14px; font-size: 1.1rem; font-weight: 700; background: rgba(255,255,255,.08); color: #7db5f5; }
.cf-process-step:hover .cf-process-number { background: rgba(255,255,255,.12); transform: none; box-shadow: none; }
.cf-process-step h3 { color: #fff; font-size: 1.05rem; margin-bottom: 6px; }
.cf-process-step p { color: rgba(255,255,255,.5); font-size: .88rem; }

/* ============================================
   AREAS
   ============================================ */
.cf-areas { background: var(--surface); }
.cf-areas .cf-section-header { text-align: center; margin-left: auto; margin-right: auto; }
.cf-areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.cf-areas-main { background: var(--brand); border-radius: var(--radius-lg); padding: 36px 32px; color: #fff; }
.cf-areas-main::before { display: none; }
.cf-areas-main h3 { color: #fff; font-size: 1.5rem; margin-bottom: 4px; }
.cf-areas-main .cf-area-subtitle { color: rgba(255,255,255,.6); font-size: .95rem; margin-bottom: 14px; }
.cf-areas-main p { color: rgba(255,255,255,.7); margin-bottom: 20px; font-size: .92rem; }
.cf-area-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cf-area-highlight { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); padding: 10px 12px; border-radius: var(--radius); font-weight: 500; font-size: .85rem; }
.cf-area-highlight svg { width: 15px; height: 15px; color: #fbbf24; flex-shrink: 0; }
.cf-areas-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cf-area-card { background: var(--surface-cool); border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); transition: border-color .2s var(--ease); }
.cf-area-card:hover { border-color: var(--brand); }
.cf-area-pin { width: 34px; height: 34px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; background: var(--brand-soft); color: var(--brand); flex-shrink: 0; }
.cf-area-card h4 { font-size: .9rem; margin-bottom: 1px; font-weight: 600; }
.cf-area-card p { font-size: .75rem; margin-bottom: 0; color: var(--ink-muted); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.cf-testimonials { background: var(--surface-cool); overflow: hidden; }
.cf-testimonials::before { display: none; }
.cf-testimonials .cf-section-header { text-align: center; margin-left: auto; margin-right: auto; }
.cf-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cf-testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); transition: border-color .2s var(--ease); }
.cf-testimonial-card:hover { border-color: var(--brand); }
.cf-testimonial-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.cf-testimonial-stars svg { width: 16px; height: 16px; fill: var(--star); color: var(--star); }
.cf-testimonial-text { font-size: .92rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 18px; font-style: normal; }
.cf-testimonial-author { display: flex; align-items: center; gap: 10px; }
.cf-testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .8rem; }
.cf-testimonial-name { font-weight: 600; font-size: .9rem; color: var(--ink); }
.cf-testimonial-location { font-size: .8rem; color: var(--ink-muted); }

/* ============================================
   GALLERY
   ============================================ */
.cf-gallery { background: var(--ink); padding: 64px 0; }
.cf-gallery .cf-section-header { text-align: center; margin-left: auto; margin-right: auto; }
.cf-gallery .cf-section-header h2 { color: #fff; }
.cf-gallery .cf-section-header p { color: rgba(255,255,255,.45); }
.cf-gallery .cf-label { color: rgba(255,255,255,.35); }
.cf-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cf-gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 1; background: rgba(255,255,255,.04); cursor: pointer; }
.cf-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.cf-gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%); opacity: 0; transition: opacity .25s var(--ease); }
.cf-gallery-item:hover img { transform: scale(1.05); }
.cf-gallery-item:hover::after { opacity: 1; }
.cf-gallery-label { position: absolute; bottom: 12px; left: 12px; color: #fff; font-weight: 600; font-size: .82rem; z-index: 2; opacity: 0; transform: translateY(6px); transition: all .25s var(--ease); }
.cf-gallery-item:hover .cf-gallery-label { opacity: 1; transform: translateY(0); }
.cf-gallery-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,.15); gap: 6px; font-size: .8rem; }
.cf-gallery-placeholder svg { width: 28px; height: 28px; }

/* ============================================
   FAQ
   ============================================ */
.cf-faq { background: var(--surface-cool); }
.cf-faq-list { max-width: 720px; margin: 0 auto; }
.cf-faq-item { border-bottom: 1px solid var(--border); }
.cf-faq-item summary { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-weight: 600; font-size: .98rem; color: var(--ink); list-style: none; line-height: 1.4; transition: color .15s var(--ease); }
.cf-faq-item summary::-webkit-details-marker { display: none; }
.cf-faq-item summary::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--ink-muted); flex-shrink: 0; margin-left: 14px; }
.cf-faq-item[open] summary::after { content: '\2212'; }
.cf-faq-item summary:hover { color: var(--brand); }
.cf-faq-answer { padding: 0 0 18px; }
.cf-faq-answer p { color: var(--ink-muted); font-size: .92rem; line-height: 1.7; margin-bottom: 0; }

/* ============================================
   CTA BANNER
   ============================================ */
.cf-cta-banner { background: var(--brand); padding: 56px 0; text-align: center; }
.cf-cta-banner::before { display: none; }
.cf-cta-banner-content { position: relative; }
.cf-cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 10px; }
.cf-cta-banner p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cf-cta-banner .cf-btn { background: #fff; color: var(--brand-hover); font-size: .95rem; padding: 14px 30px; }
.cf-cta-banner .cf-btn:hover { background: var(--ink); color: #fff; }
.cf-cta-phone { display: block; margin-top: 14px; font-size: 1.1rem; font-weight: 700; color: #fff; }
.cf-cta-phone a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================
   BOOKING
   ============================================ */
.cf-booking { background: var(--surface); }
.cf-booking .cf-section-header { text-align: center; margin-left: auto; margin-right: auto; }
.cf-booking-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.cf-booking-info h3 { font-size: 1.3rem; margin-bottom: 10px; }
.cf-booking-info > p { margin-bottom: 22px; font-size: .98rem; }
.cf-booking-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.cf-booking-benefit { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink-soft); font-size: .9rem; }
.cf-booking-benefit-icon { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #e4f7ed; color: var(--success); flex-shrink: 0; }
.cf-booking-contact { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 22px; }
.cf-booking-contact h4 { color: #fff; font-size: .95rem; margin-bottom: 12px; }
.cf-booking-contact-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; color: rgba(255,255,255,.7); font-size: .88rem; }
.cf-booking-contact-item svg { width: 15px; height: 15px; color: #7db5f5; flex-shrink: 0; }

.cf-booking-form-card { background: var(--surface-cool); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border); }
.cf-booking-form-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.cf-booking-form-card .cf-form-subtitle { color: var(--ink-muted); margin-bottom: 22px; }
.cf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.cf-form-group { margin-bottom: 12px; }
.cf-form-group label { display: block; font-weight: 500; font-size: .85rem; color: var(--ink-soft); margin-bottom: 4px; }
.cf-form-group label .required { color: var(--cta); }
.cf-form-group input, .cf-form-group select, .cf-form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font); font-size: .92rem; color: var(--ink); background: #fff; transition: border-color .2s var(--ease); outline: none; }
.cf-form-group input:focus, .cf-form-group select:focus, .cf-form-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(41,104,200,.1); }
.cf-form-group textarea { resize: vertical; min-height: 85px; }
.cf-form-group select { cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237c8194' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.cf-booking-form .cf-btn { width: 100%; justify-content: center; padding: 14px; font-size: .95rem; }
.cf-form-note { text-align: center; font-size: .8rem; color: var(--ink-muted); margin-top: 8px; }

/* ============================================
   FOOTER
   ============================================ */
.cf-footer { background: var(--ink); color: rgba(255,255,255,.55); }
.cf-footer-main { padding: 56px 0 36px; }
.cf-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.cf-footer-brand { max-width: 260px; }
.cf-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.cf-footer-logo-text { font-size: 1.1rem; font-weight: 700; color: #fff; }
.cf-footer-brand p { font-size: .88rem; margin-bottom: 18px; line-height: 1.7; }
.cf-footer-socials { display: flex; gap: 6px; }
.cf-footer-socials a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: var(--radius); background: rgba(255,255,255,.06); color: rgba(255,255,255,.55); transition: all .2s var(--ease); }
.cf-footer-socials a:hover { background: var(--brand); color: #fff; }
.cf-footer-heading { font-size: .82rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.cf-footer-heading::after { display: none; }
.cf-footer-links li { margin-bottom: 7px; }
.cf-footer-links a { color: rgba(255,255,255,.45); font-size: .88rem; transition: color .15s var(--ease); }
.cf-footer-links a:hover { color: #fff; padding-left: 0; }
.cf-footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: .88rem; }
.cf-footer-contact-item svg { width: 15px; height: 15px; color: #7db5f5; flex-shrink: 0; margin-top: 3px; }
.cf-footer-contact-item a { color: rgba(255,255,255,.45); }
.cf-footer-contact-item a:hover { color: #fff; }
.cf-footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0; }
.cf-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.cf-footer-bottom p { font-size: .8rem; margin-bottom: 0; }
.cf-footer-bottom-links { display: flex; gap: 14px; }
.cf-footer-bottom-links a { color: rgba(255,255,255,.35); font-size: .8rem; }
.cf-footer-bottom-links a:hover { color: #fff; }

/* ============================================
   INNER PAGES
   ============================================ */
.cf-page-header { background: var(--ink); padding: 130px 0 56px; text-align: center; }
.cf-page-header::before { display: none; }
.cf-page-header h1 { color: #fff; margin-bottom: 10px; }
.cf-page-header p { color: rgba(255,255,255,.5); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }
.cf-page-breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 14px; font-size: .85rem; }
.cf-page-breadcrumb a { color: rgba(255,255,255,.35); }
.cf-page-breadcrumb a:hover { color: #fff; }
.cf-page-breadcrumb span { color: rgba(255,255,255,.55); }

.cf-services-detail { background: var(--surface); }
.cf-service-detail-card { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; padding: 44px 0; border-bottom: 1px solid var(--border); }
.cf-service-detail-card:nth-child(even) { direction: rtl; }
.cf-service-detail-card:nth-child(even) > * { direction: ltr; }
.cf-service-detail-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--surface-cool); display: flex; align-items: center; justify-content: center; color: var(--ink-muted); }
.cf-service-detail-content h3 { font-size: 1.3rem; margin-bottom: 10px; }
.cf-service-detail-content p { margin-bottom: 14px; font-size: .95rem; line-height: 1.75; }
.cf-service-features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.cf-service-feature-item { display: flex; align-items: center; gap: 7px; font-weight: 500; color: var(--ink-soft); font-size: .9rem; }
.cf-service-feature-item svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

.cf-about-story { background: var(--surface); }
.cf-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cf-about-image-box { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--surface-cool); }
.cf-about-content h3 { font-size: 1.3rem; margin-bottom: 14px; }
.cf-about-content p { margin-bottom: 10px; line-height: 1.75; }
.cf-about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.cf-about-value { padding: 24px 20px; border-radius: var(--radius-lg); background: var(--surface-cool); border: 1px solid var(--border); transition: border-color .2s var(--ease); }
.cf-about-value:hover { border-color: var(--brand); }
.cf-about-value-icon { width: 44px; height: 44px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin: 0 0 12px; background: var(--brand); color: #fff; }
.cf-about-value h4 { font-size: 1rem; margin-bottom: 5px; }
.cf-about-value p { font-size: .85rem; margin-bottom: 0; color: var(--ink-muted); }

.cf-contact-section { background: var(--surface); }
.cf-contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 44px; }
.cf-contact-cards { display: flex; flex-direction: column; gap: 14px; }
.cf-contact-card { display: flex; align-items: flex-start; gap: 12px; padding: 22px; border-radius: var(--radius); background: var(--surface-cool); border: 1px solid var(--border); transition: border-color .2s var(--ease); }
.cf-contact-card:hover { border-color: var(--brand); }
.cf-contact-card-icon { width: 40px; height: 40px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; background: var(--brand); color: #fff; flex-shrink: 0; }
.cf-contact-card h4 { font-size: .92rem; margin-bottom: 2px; }
.cf-contact-card p { font-size: .88rem; margin-bottom: 0; }
.cf-contact-card a { color: var(--brand); font-weight: 600; }
.cf-contact-form-wrapper { background: var(--surface-cool); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border); }
.cf-contact-form-wrapper h3 { margin-bottom: 4px; }
.cf-contact-form-wrapper > p { color: var(--ink-muted); margin-bottom: 22px; }

.cf-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--ink); padding: 40px 24px; }
.cf-404 h1 { font-size: 5rem; color: var(--brand); line-height: 1; margin-bottom: 10px; }
.cf-404 h2 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.cf-404 p { color: rgba(255,255,255,.45); font-size: .95rem; margin-bottom: 24px; max-width: 380px; margin-left: auto; margin-right: auto; }

.cf-form-message { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 14px; font-weight: 500; font-size: .9rem; display: none; }
.cf-form-message.success { background: #e4f7ed; color: #14532d; border: 1px solid #bbf7d0; display: block; }
.cf-form-message.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .cf-hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .cf-hero-visual { max-width: 460px; }
    .cf-why-grid { grid-template-columns: 1fr; gap: 36px; }
    .cf-areas-grid { grid-template-columns: 1fr; }
    .cf-booking-grid { grid-template-columns: 1fr; }
    .cf-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .cf-contact-grid { grid-template-columns: 1fr; }
    .cf-about-grid { grid-template-columns: 1fr; }
    .cf-service-detail-card { grid-template-columns: 1fr; }
    .cf-service-detail-card:nth-child(even) { direction: ltr; }
    .cf-services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    .cf-section { padding: 48px 0; }
    .cf-container { padding: 0 20px; }

    .cf-menu-toggle { display: flex; }

    .cf-nav {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100vw; height: 100vh; height: 100dvh;
        min-height: -webkit-fill-available;
        background: var(--ink);
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 72px 0 40px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform .35s cubic-bezier(.4,0,.1,1);
        z-index: 999;
    }
    .cf-nav.active { transform: translateX(0); }

    .cf-nav a { display: block; font-size: 1.1rem; padding: 15px 24px; color: rgba(255,255,255,.75); text-align: left; border-bottom: 1px solid rgba(255,255,255,.06); }
    .cf-nav a:hover, .cf-nav a.active { color: #fff; background: rgba(255,255,255,.04); }
    .cf-nav-cta { margin: 16px 24px 0; padding: 0; width: auto; }
    .cf-nav-cta .cf-btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 1rem; }

    .cf-header-inner { background: #fff; }
    .cf-nav-container { padding: 10px 20px; }
    .cf-logo img, .cf-logo .custom-logo { max-height: 36px; }

    .cf-hero-content { padding: 100px 0 48px; }
    .cf-hero-text h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .cf-hero-text > p { font-size: .98rem; margin-bottom: 24px; }
    .cf-hero-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
    .cf-hero-buttons .cf-btn { justify-content: center; width: 100%; }
    .cf-hero-stats { gap: 20px; flex-wrap: wrap; }
    .cf-hero-stat-number { font-size: 1.5rem; }
    .cf-hero-badge { font-size: .72rem; padding: 5px 12px; }
    .cf-hero-card { padding: 24px 20px; }
    .cf-section-header { margin-bottom: 32px; }
    .cf-section-header h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }

    .cf-services-grid { grid-template-columns: 1fr; gap: 14px; }
    .cf-service-card { padding: 22px 20px; }
    .cf-process-steps { grid-template-columns: 1fr 1fr; gap: 14px; }
    .cf-testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
    .cf-gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .cf-areas-list { grid-template-columns: 1fr; }
    .cf-areas-main { padding: 24px 20px; }
    .cf-area-highlights { grid-template-columns: 1fr; }
    .cf-why-features { grid-template-columns: 1fr; gap: 10px; }
    .cf-about-values { grid-template-columns: 1fr; gap: 14px; }
    .cf-form-row { grid-template-columns: 1fr; gap: 0; }
    .cf-booking-form-card { padding: 22px 18px; }
    .cf-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .cf-footer-brand { max-width: 100%; }
    .cf-footer-main { padding: 40px 0 28px; }
    .cf-footer-bottom-inner { flex-direction: column; text-align: center; }
    .cf-cta-banner { padding: 44px 0; }
    .cf-page-header { padding: 100px 0 40px; }
    .cf-page-header h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
    .cf-trust-items { flex-direction: column; gap: 8px; align-items: flex-start; }
    .cf-faq-item summary { font-size: .92rem; padding: 15px 0; }
}

@media (max-width: 480px) {
    .cf-hero-content { padding: 88px 0 40px; }
    .cf-hero-stats { gap: 14px; }
    .cf-process-steps { grid-template-columns: 1fr; }
    .cf-gallery-grid { grid-template-columns: 1fr; }
    .cf-hero-card { padding: 20px 16px; }
}

/* ============================================
   WORDPRESS
   ============================================ */
.wp-block-image img { border-radius: var(--radius); }
.alignwide { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
body.admin-bar .cf-header { top: 32px; }
body.admin-bar .cf-header.cf-scrolled { top: 32px; }
@media (max-width: 782px) { body.admin-bar .cf-header { top: 46px; } body.admin-bar .cf-header.cf-scrolled { top: 46px; } }

.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }
