/*
Theme Name:   Athletic Circles Child
Theme URI:    https://saas.web-creation.net
Description:  Child theme GeneratePress avec design cercles decoratifs, sections alternees et photos lifestyle. Palette personnalisee par Claude pour chaque site.
Author:       Web Creation SaaS
Author URI:   https://saas.web-creation.net
Template:     generatepress
Version:      1.0.0
Text Domain:  athletic-circles-child
*/

/* ═══════════════════════════════════════════════════════════════════
   Athletic Circles — Child theme GeneratePress
   Variables couleur substituees par theme-engine.js au moment de l'install.
   Placeholders: #0077B6, #FF9F1C, #023E8A,
                 #E0F7FF, #1A1A2E
   ═══════════════════════════════════════════════════════════════════ */

:root {
    --ac-primary: #0077B6;
    --ac-accent: #FF9F1C;
    --ac-dark: #023E8A;
    --ac-light: #E0F7FF;
    --ac-text: #1A1A2E;
    --ac-bg: #FAFAF7;
    --ac-muted: rgba(0, 0, 0, 0.55);
    --ac-muted-light: rgba(255, 255, 255, 0.75);
    --ac-radius: 14px;
    --ac-shadow: 0 10px 30px rgba(15, 42, 46, 0.08);
    --ac-shadow-lg: 0 20px 50px rgba(15, 42, 46, 0.15);
    --ac-max: 1200px;
    --ac-gap: 2rem;
}

/* ── Reset / Base ───────────────────────────────────────────────── */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ac-text);
    background: var(--ac-light);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ac-accent); text-decoration: none; }
a:hover { color: var(--ac-primary); }
h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ac-text);
    margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { margin: 0 0 1rem; }

/* Hide le header + footer natif GeneratePress (on injecte notre propre) */
.site-header, .site-footer { display: none !important; }

/* ── Container & Sections ───────────────────────────────────────── */

.ac-container {
    max-width: var(--ac-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.ac-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* ── Boutons ────────────────────────────────────────────────────── */

.ac-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}
.ac-btn-primary {
    background: var(--ac-light);
    color: var(--ac-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.ac-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    color: var(--ac-primary);
}
.ac-btn-outline {
    background: transparent;
    color: var(--ac-light);
    border: 2px solid var(--ac-light);
}
.ac-btn-outline:hover {
    background: var(--ac-light);
    color: var(--ac-primary);
}
.ac-btn-accent {
    background: var(--ac-accent);
    color: var(--ac-light);
    box-shadow: 0 4px 12px rgba(189, 139, 77, 0.35);
}
.ac-btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(189, 139, 77, 0.45);
    color: var(--ac-light);
}
.ac-btn-dark {
    background: var(--ac-dark);
    color: var(--ac-light);
}
.ac-btn-dark:hover {
    background: #000;
    color: var(--ac-light);
}

/* ── Header ─────────────────────────────────────────────────────── */

.ac-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--ac-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.ac-header-inner {
    max-width: var(--ac-max);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ac-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--ac-text);
}
.ac-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ac-primary);
    display: grid;
    place-items: center;
    color: var(--ac-light);
    font-weight: 800;
    font-size: 1.125rem;
}
.ac-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.ac-logo-name { font-size: 1.0625rem; font-weight: 800; color: var(--ac-text); }
.ac-logo-sub { font-size: 0.75rem; color: var(--ac-muted); }
.ac-nav { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.ac-nav a {
    color: var(--ac-text);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}
.ac-nav a:hover { color: var(--ac-primary); }
.ac-header-cta { display: flex; align-items: center; gap: 1rem; }
.ac-menu-toggle {
    display: none;
    background: var(--ac-primary);
    color: var(--ac-light);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
}
@media (max-width: 900px) {
    .ac-nav, .ac-header-cta { display: none; }
    .ac-menu-toggle { display: grid; place-items: center; }
    .ac-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ac-light);
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }
}

/* ── Cercles decoratifs (reutilises dans plusieurs sections) ──── */

.ac-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.ac-circle-primary { background: var(--ac-primary); }
.ac-circle-light { background: var(--ac-light); }
.ac-circle-outline {
    background: transparent;
    border: 2px solid var(--ac-light);
}
.ac-circle-accent { background: var(--ac-accent); }

/* ── 1. Hero ────────────────────────────────────────────────────── */

.ac-hero {
    background: var(--ac-primary);
    color: var(--ac-light);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}
.ac-hero-inner {
    max-width: var(--ac-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.ac-hero-content h1 {
    color: var(--ac-light);
    font-weight: 800;
    margin-bottom: 1.25rem;
}
.ac-hero-content h1 span {
    display: inline-block;
    position: relative;
}
.ac-hero-content h1 span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.1em;
    height: 0.2em;
    background: var(--ac-accent);
    opacity: 0.5;
    z-index: -1;
    border-radius: 4px;
}
.ac-hero-subtitle {
    color: var(--ac-muted-light);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}
.ac-hero-visual {
    position: relative;
    min-height: 460px;
}
.ac-hero-img-main {
    position: absolute;
    right: 0;
    top: 30px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: var(--ac-shadow-lg);
    z-index: 2;
}
.ac-hero-img-sub {
    position: absolute;
    left: 20px;
    top: 260px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: var(--ac-shadow-lg);
    border: 6px solid var(--ac-primary);
    z-index: 3;
}
.ac-hero .ac-circle-1 { width: 380px; height: 380px; right: -80px; top: -60px; background: rgba(255, 255, 255, 0.08); }
.ac-hero .ac-circle-2 { width: 120px; height: 120px; left: -40px; bottom: 30px; background: rgba(255, 255, 255, 0.15); }
.ac-hero .ac-circle-3 { width: 60px; height: 60px; right: 60px; bottom: 100px; background: var(--ac-light); }
@media (max-width: 900px) {
    .ac-hero-inner { grid-template-columns: 1fr; }
    .ac-hero-visual { min-height: 380px; margin: 0 auto; max-width: 400px; }
    .ac-hero-img-main { width: 260px; height: 260px; right: 20px; }
    .ac-hero-img-sub { width: 130px; height: 130px; left: 0; top: 220px; }
}

/* ── 2. Features (3 cards sur fond amber) ───────────────────────── */

.ac-features {
    background: var(--ac-accent);
    padding: 5rem 0;
    position: relative;
}
.ac-features-inner {
    max-width: var(--ac-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.ac-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.ac-feature-card {
    background: var(--ac-primary);
    color: var(--ac-light);
    padding: 2rem 1.5rem;
    border-radius: var(--ac-radius);
    box-shadow: var(--ac-shadow);
    transition: transform 0.25s ease;
}
.ac-feature-card:hover { transform: translateY(-4px); }
.ac-feature-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ac-accent);
    margin-bottom: 0.75rem;
    display: block;
}
.ac-feature-card h3 { color: var(--ac-light); font-size: 1.125rem; line-height: 1.35; margin-bottom: 0.5rem; }
.ac-feature-card p { color: var(--ac-muted-light); font-size: 0.875rem; margin: 0; }
.ac-features-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--ac-radius);
    background-size: cover;
    background-position: center;
    box-shadow: var(--ac-shadow-lg);
}
@media (max-width: 900px) {
    .ac-features-inner { grid-template-columns: 1fr; }
    .ac-features-grid { grid-template-columns: 1fr; }
    .ac-features-photo { max-height: 320px; aspect-ratio: 16/10; }
}

/* ── 3. Image overlay (fullbleed avec cards icones) ─────────────── */

.ac-image-overlay {
    position: relative;
    min-height: 520px;
    background-color: var(--ac-dark);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.ac-overlay-cards {
    max-width: var(--ac-max);
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.ac-overlay-card {
    background: var(--ac-primary);
    color: var(--ac-light);
    padding: 1.75rem 1.5rem;
    border-radius: var(--ac-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(8px);
    box-shadow: var(--ac-shadow-lg);
}
.ac-overlay-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ac-light);
    color: var(--ac-primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}
.ac-overlay-card-text { display: flex; flex-direction: column; line-height: 1.3; }
.ac-overlay-card-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ac-muted-light); }
.ac-overlay-card-value { font-size: 1rem; font-weight: 700; }
@media (max-width: 900px) {
    .ac-overlay-cards { grid-template-columns: 1fr; padding-bottom: 2rem; }
    .ac-image-overlay { min-height: 480px; }
}

/* ── 4. Split dark (photo ronde + texte CTA) ────────────────────── */

.ac-split-dark {
    background: var(--ac-dark);
    color: var(--ac-light);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.ac-split-dark-inner {
    max-width: var(--ac-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.ac-split-dark-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 440px;
}
.ac-split-dark-visual img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--ac-shadow-lg);
}
.ac-split-dark .ac-circle-1 { width: 140px; height: 140px; top: -30px; left: -30px; background: var(--ac-primary); opacity: 0.3; }
.ac-split-dark .ac-circle-2 { width: 80px; height: 80px; bottom: 40px; right: -20px; background: var(--ac-accent); }
.ac-split-dark-content h2 { color: var(--ac-light); margin-bottom: 1rem; }
.ac-split-dark-content p { color: var(--ac-muted-light); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 1.75rem; }
@media (max-width: 900px) {
    .ac-split-dark-inner { grid-template-columns: 1fr; }
    .ac-split-dark-visual { max-width: 320px; margin: 0 auto; }
}

/* ── 5. Split amber (texte + bloc amber photo) ──────────────────── */

.ac-split-amber {
    background: var(--ac-light);
    padding: 5rem 0;
}
.ac-split-amber-inner {
    max-width: var(--ac-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.ac-split-amber-content h2 { color: var(--ac-text); margin-bottom: 1rem; }
.ac-split-amber-content p { color: var(--ac-muted); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 1.75rem; }
.ac-amber-block {
    position: relative;
    background: var(--ac-accent);
    color: var(--ac-light);
    padding: 2.5rem;
    border-radius: var(--ac-radius);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ac-amber-block-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ac-muted-light);
    font-weight: 600;
}
.ac-amber-block-title {
    color: var(--ac-light);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    margin: 0.5rem 0;
}
.ac-amber-block-body {
    color: var(--ac-muted-light);
    font-size: 0.9375rem;
    max-width: 260px;
    margin: 0;
}
.ac-amber-block-photo {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 6px solid var(--ac-light);
    opacity: 0.95;
}
@media (max-width: 900px) {
    .ac-split-amber-inner { grid-template-columns: 1fr; }
    .ac-amber-block { max-width: 360px; margin: 0 auto; aspect-ratio: auto; min-height: 340px; }
}

/* ── 6. Feature teal (fond teal + silhouette) ───────────────────── */

.ac-feature-teal {
    background: var(--ac-primary);
    color: var(--ac-light);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.ac-feature-teal-inner {
    max-width: var(--ac-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.ac-feature-teal-content h2 { color: var(--ac-light); margin-bottom: 1rem; }
.ac-feature-teal-content p { color: var(--ac-muted-light); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 1.75rem; }
.ac-feature-teal-visual {
    position: relative;
    aspect-ratio: 3/4;
    max-width: 400px;
    margin-left: auto;
}
.ac-feature-teal-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--ac-radius);
}
.ac-feature-teal .ac-circle-1 { width: 200px; height: 200px; top: -40px; right: -40px; background: rgba(255, 255, 255, 0.08); }
.ac-feature-teal .ac-circle-2 { width: 80px; height: 80px; bottom: 30px; left: 20px; background: var(--ac-accent); }
@media (max-width: 900px) {
    .ac-feature-teal-inner { grid-template-columns: 1fr; }
    .ac-feature-teal-visual { max-width: 320px; margin: 0 auto; }
}

/* ── 7. Contact tri (3 icon cards rondes) ───────────────────────── */

.ac-contact-tri {
    background: var(--ac-light);
    padding: 5rem 0;
    text-align: center;
}
.ac-contact-tri h2 { margin-bottom: 0.5rem; }
.ac-contact-tri-sub { color: var(--ac-muted); max-width: 520px; margin: 0 auto 3rem; }
.ac-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--ac-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.ac-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
}
.ac-contact-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--ac-accent);
    color: var(--ac-light);
    display: grid;
    place-items: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--ac-shadow);
}
.ac-contact-card h3 {
    font-size: 1.125rem;
    color: var(--ac-text);
    margin-bottom: 0.25rem;
}
.ac-contact-card p { font-size: 0.9375rem; color: var(--ac-muted); margin: 0; }
@media (max-width: 900px) {
    .ac-contact-cards { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── 8. Newsletter (form + photo + cercles) ─────────────────────── */

.ac-newsletter {
    background: var(--ac-primary);
    color: var(--ac-light);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}
.ac-newsletter-inner {
    max-width: var(--ac-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.ac-newsletter-form {
    background: var(--ac-light);
    color: var(--ac-text);
    padding: 2.5rem;
    border-radius: var(--ac-radius);
    box-shadow: var(--ac-shadow-lg);
    max-width: 460px;
}
.ac-newsletter-form h2 {
    color: var(--ac-text);
    font-size: 2rem;
    margin-bottom: 0.25rem;
}
.ac-newsletter-form p { color: var(--ac-muted); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.ac-newsletter-form .form-group { margin-bottom: 1rem; }
.ac-newsletter-form label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ac-text);
    margin-bottom: 0.375rem;
}
.ac-newsletter-form input,
.ac-newsletter-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-bottom: 2px solid #E5E5E5;
    background: transparent;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--ac-text);
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.ac-newsletter-form input:focus,
.ac-newsletter-form textarea:focus {
    outline: none;
    border-bottom-color: var(--ac-primary);
}
.ac-newsletter-form textarea { resize: vertical; min-height: 80px; }
.ac-newsletter-form button {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.9rem;
    background: var(--ac-accent);
    color: var(--ac-light);
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
}
.ac-newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }
.ac-newsletter-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 440px;
    margin-left: auto;
}
.ac-newsletter-visual img {
    width: 85%;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 8%;
    box-shadow: var(--ac-shadow-lg);
    z-index: 2;
}
.ac-newsletter .ac-circle-1 { width: 220px; height: 220px; left: 10%; top: -30px; background: var(--ac-light); opacity: 0.95; }
.ac-newsletter .ac-circle-2 { width: 90px; height: 90px; right: 5%; bottom: 40px; background: var(--ac-light); opacity: 0.95; }
.ac-newsletter .ac-circle-3 { width: 50px; height: 50px; left: 48%; bottom: 80px; background: var(--ac-accent); }
@media (max-width: 900px) {
    .ac-newsletter-inner { grid-template-columns: 1fr; }
    .ac-newsletter-visual { max-width: 320px; margin: 2rem auto 0; }
    .ac-newsletter .ac-circle-1 { width: 140px; height: 140px; }
}

/* ── 9. Footer ──────────────────────────────────────────────────── */

.ac-footer {
    background: var(--ac-dark);
    color: var(--ac-muted-light);
    padding: 2.5rem 0;
    text-align: center;
    font-size: 0.875rem;
}
.ac-footer a { color: var(--ac-accent); }
.ac-footer-inner { max-width: var(--ac-max); margin: 0 auto; padding: 0 1.5rem; }

/* ── Content (pages, articles, blog) ────────────────────────────── */

.ac-content-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}
.ac-content-wrap h1 { margin-bottom: 0.5rem; }
.ac-content-wrap .legal-date {
    color: var(--ac-muted);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 2rem;
    display: block;
}
.ac-content-wrap .legal-content h2 {
    margin-top: 2.5em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--ac-primary);
    color: var(--ac-primary);
}
.ac-content-wrap .legal-content p { color: var(--ac-text); line-height: 1.75; }
.ac-content-wrap .entry-content a { color: var(--ac-accent); }
.ac-content-wrap .entry-content a:hover { color: var(--ac-primary); }

/* Contact form (page-contact.php) */
.ac-contact-form { max-width: 560px; margin: 2rem auto 0; }
.ac-contact-form .form-group { margin-bottom: 1.25rem; }
.ac-contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ac-text);
    margin-bottom: 0.5rem;
}
.ac-contact-form input,
.ac-contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.ac-contact-form input:focus,
.ac-contact-form textarea:focus {
    outline: none;
    border-color: var(--ac-primary);
}
.ac-contact-form button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background: var(--ac-accent);
    color: var(--ac-light);
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s;
}
.ac-contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Gutenberg button blocks */
.wp-block-button__link {
    background: var(--ac-accent) !important;
    color: var(--ac-light) !important;
    border-radius: 999px !important;
    padding: 0.85rem 1.75rem !important;
    font-weight: 600 !important;
}
.wp-block-button__link:hover { background: var(--ac-primary) !important; }
