/*
Theme Name:        AAU ThreePage
Theme URI:         https://aaustudio.com
Author:            AAU Studio
Author URI:        https://aaustudio.com
Description:       A professional 3-page WordPress theme (Home, About Us, Contact) built for AAU Studio's Standard package. All content — colours, fonts, hero slider, services, team, values, FAQs, and contact details — is controlled entirely from the WordPress Customizer. Includes optional hero slider with up to 3 slides. Compatible with Contact Form 7.
Version:           1.0.0
Requires at least: 6.0
Tested up to:      6.5
Requires PHP:      8.0
License:           Proprietary — AAU Studio client use only
License URI:       https://aaustudio.com/license
Text Domain:       aau-threepage
Tags:              three-page, business, customizer, custom-colors, custom-logo, contact-form-7, hero-slider
*/

/* =============================================
   BRAND TOKENS — injected dynamically via
   functions.php inline CSS from Customizer
   ============================================= */
:root {
  --brand-primary:  #1B2B5E;
  --brand-accent:   #C9A84C;
  --brand-light:    #F4F6FB;
  --brand-dark:     #0F1A3A;
  --brand-text:     #1A1A2E;
  --brand-muted:    #6B7280;
  --brand-white:    #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:     10px;
  --shadow:     0 4px 24px rgba(27,43,94,0.10);
  --transition: 0.22s ease;
  --max-w:      1100px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); color: var(--brand-text);
        background: var(--brand-white); line-height: 1.65;
        -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }

/* ── Layout ── */
.aau-container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.aau-section      { padding: 80px 0; }
.aau-section--alt { background: var(--brand-light); }

/* ── Buttons ── */
.aau-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  transition: all var(--transition); cursor: pointer; border: none;
}
.aau-btn--primary { background: var(--brand-accent); color: var(--brand-dark); }
.aau-btn--primary:hover { background: #d4b45a; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,168,76,0.35); }
.aau-btn--outline { background: transparent; color: var(--brand-white); border: 1px solid rgba(255,255,255,0.35); }
.aau-btn--outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.aau-btn--dark { background: var(--brand-primary); color: var(--brand-white); }
.aau-btn--dark:hover { background: #243870; transform: translateY(-1px); }

/* ── Nav ── */
.aau-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--brand-white);
  border-bottom: 1px solid rgba(27,43,94,0.08);
  padding: 14px 0; transition: box-shadow var(--transition);
}
.aau-nav.scrolled { box-shadow: 0 2px 16px rgba(27,43,94,0.10); }
.aau-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.aau-nav__logo  { display: flex; align-items: center; gap: 10px; }
.aau-nav__logo img { height: 38px; width: auto; }
.aau-nav__site-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
                      color: var(--brand-primary); letter-spacing: -0.02em; }
.aau-nav__site-name span { color: var(--brand-accent); }
.aau-nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.aau-nav__links a { font-size: 0.9rem; font-weight: 500; color: var(--brand-text);
                    transition: color var(--transition); }
.aau-nav__links a:hover,
.aau-nav__links .current-menu-item a,
.aau-nav__links .current_page_item a { color: var(--brand-primary); font-weight: 700; }
.aau-nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-primary); color: var(--brand-white);
  padding: 10px 20px; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 600; transition: background var(--transition);
}
.aau-nav__cta:hover { background: var(--brand-accent); color: var(--brand-dark); }
.aau-nav__hamburger { display: none; flex-direction: column; gap: 5px;
                      cursor: pointer; padding: 4px; background: none; border: none; }
.aau-nav__hamburger span { display: block; width: 24px; height: 2px;
                           background: var(--brand-primary); transition: all 0.3s; }
.aau-nav__mobile { display: none; flex-direction: column;
                   background: var(--brand-white);
                   border-top: 1px solid rgba(27,43,94,0.08); }
.aau-nav__mobile a { padding: 14px 24px; font-weight: 500; font-size: 0.95rem;
                     border-bottom: 1px solid rgba(27,43,94,0.05);
                     transition: background var(--transition); display: block; }
.aau-nav__mobile a:hover { background: var(--brand-light); }
.aau-nav__mobile.open { display: flex; }

/* ── Section headings ── */
.aau-section__label   { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
                        text-transform: uppercase; color: var(--brand-accent); margin-bottom: 10px; }
.aau-section__heading { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.4rem);
                        color: var(--brand-primary); letter-spacing: -0.02em;
                        line-height: 1.2; margin-bottom: 14px; }
.aau-section__sub     { color: var(--brand-muted); font-size: 1rem; max-width: 580px; }
.aau-section__header--center { text-align: center; margin: 0 auto 52px; max-width: 600px; }
.aau-section__header--center .aau-section__sub { margin: 0 auto; }

/* ── Hero ── */
.aau-hero {
  padding: 96px 0 72px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #243870 100%);
  color: var(--brand-white); position: relative; overflow: hidden;
}
.aau-hero__bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.aau-hero__inner  { position: relative; max-width: 720px; }
.aau-hero__eyebrow { display: inline-block; background: rgba(201,168,76,0.18);
                     color: var(--brand-accent); font-size: 0.8rem; font-weight: 600;
                     letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px;
                     border-radius: 999px; margin-bottom: 20px;
                     border: 1px solid rgba(201,168,76,0.3); }
.aau-hero__heading { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,3.5rem);
                     font-weight: 700; line-height: 1.15; margin-bottom: 20px;
                     letter-spacing: -0.02em; }
.aau-hero__heading em { color: var(--brand-accent); font-style: normal; }
.aau-hero__sub    { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 540px;
                    margin-bottom: 34px; line-height: 1.7; }
.aau-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Page hero (About, Contact inner pages) ── */
.aau-page-hero {
  padding: 64px 0 52px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #243870 100%);
  color: var(--brand-white); position: relative; overflow: hidden;
}
.aau-page-hero__pattern { position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.aau-page-hero__inner    { position: relative; }
.aau-page-hero__breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.aau-page-hero__breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.aau-page-hero__breadcrumb a:hover,
.aau-page-hero__breadcrumb span { color: var(--brand-accent); }
.aau-page-hero__title { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem);
                        font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; }
.aau-page-hero__sub   { font-size: 1rem; color: rgba(255,255,255,0.78); max-width: 540px; }

/* ── Trust bar ── */
.aau-trust { background: var(--brand-dark); padding: 16px 0; }
.aau-trust__inner { display: flex; align-items: center; gap: 28px;
                    overflow-x: auto; -webkit-overflow-scrolling: touch; }
.aau-trust__item  { display: flex; align-items: center; gap: 8px; white-space: nowrap;
                    color: rgba(255,255,255,0.65); font-size: 0.84rem; flex-shrink: 0; }
.aau-trust__item::before { content: ''; display: inline-block; width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C9A84C' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0; }

/* ── Intro grid ── */
.aau-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.aau-intro__image { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3;
                    background: linear-gradient(135deg, var(--brand-primary), #243870);
                    display: flex; align-items: center; justify-content: center; position: relative; }
.aau-intro__image img { width: 100%; height: 100%; object-fit: cover; }
.aau-intro__placeholder { color: rgba(255,255,255,0.3); font-family: var(--font-display);
                          font-size: 0.9rem; text-align: center; padding: 20px; position: absolute; }

/* ── Stats ── */
.aau-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.aau-stat { background: var(--brand-light); border-radius: var(--radius);
            padding: 20px; border-left: 3px solid var(--brand-accent); }
.aau-stat__number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--brand-primary); }
.aau-stat__label  { font-size: 0.82rem; color: var(--brand-muted); margin-top: 2px; }

/* ── Service cards ── */
.aau-services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.aau-service-card { background: var(--brand-white); border: 1px solid rgba(27,43,94,0.08);
                    border-radius: var(--radius); padding: 30px 26px; transition: all var(--transition); }
.aau-service-card:hover { border-color: var(--brand-accent); box-shadow: var(--shadow); transform: translateY(-3px); }
.aau-service-card__icon  { font-size: 1.8rem; margin-bottom: 16px; }
.aau-service-card__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
                           color: var(--brand-primary); margin-bottom: 8px; }
.aau-service-card__body  { color: var(--brand-muted); font-size: 0.88rem; line-height: 1.6; }

/* ── Features ── */
.aau-features__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.aau-feature { display: flex; gap: 14px; align-items: flex-start; }
.aau-feature__dot { flex-shrink: 0; width: 36px; height: 36px; background: var(--brand-primary);
                    border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.aau-feature__dot::after { content: '✓'; color: var(--brand-accent); font-weight: 700; font-size: 0.85rem; }
.aau-feature__title { font-weight: 600; font-size: 0.93rem; color: var(--brand-primary); margin-bottom: 3px; }
.aau-feature__body  { color: var(--brand-muted); font-size: 0.86rem; }

/* ── Values ── */
.aau-values__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.aau-value-card { background: var(--brand-white); border: 1px solid rgba(27,43,94,0.08);
                  border-radius: var(--radius); padding: 28px 24px; text-align: center; }
.aau-value-card__icon  { font-size: 2rem; margin-bottom: 14px; }
.aau-value-card__title { font-family: var(--font-display); font-size: 1rem; font-weight: 600;
                         color: var(--brand-primary); margin-bottom: 8px; }
.aau-value-card__body  { color: var(--brand-muted); font-size: 0.86rem; line-height: 1.6; }

/* ── Team ── */
.aau-team__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.aau-team-card  { text-align: center; }
.aau-team-card__photo { width: 120px; height: 120px; border-radius: 50%; overflow: hidden;
                        background: var(--brand-light); margin: 0 auto 16px;
                        border: 3px solid var(--brand-accent); }
.aau-team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.aau-team-card__name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
                       color: var(--brand-primary); margin-bottom: 4px; }
.aau-team-card__role { font-size: 0.84rem; color: var(--brand-muted); }

/* ── Testimonials ── */
.aau-testimonials__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.aau-testimonial { background: var(--brand-white); border: 1px solid rgba(27,43,94,0.08);
                   border-radius: var(--radius); padding: 28px; }
.aau-testimonial__quote { font-size: 0.94rem; color: var(--brand-text); line-height: 1.7;
                          margin-bottom: 18px; font-style: italic; }
.aau-testimonial__quote::before { content: '\201C'; color: var(--brand-accent); font-size: 1.5rem;
                                   vertical-align: -0.2em; line-height: 0; margin-right: 2px; }
.aau-testimonial__author { display: flex; align-items: center; gap: 12px; }
.aau-testimonial__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--brand-light);
                           display: flex; align-items: center; justify-content: center;
                           font-weight: 700; font-size: 0.9rem; color: var(--brand-primary); overflow: hidden; }
.aau-testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.aau-testimonial__name { font-weight: 600; font-size: 0.86rem; color: var(--brand-primary); }
.aau-testimonial__role { font-size: 0.76rem; color: var(--brand-muted); }

/* ── Contact ── */
.aau-contact__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.aau-contact-info__item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.aau-contact-info__icon { width: 44px; height: 44px; border-radius: var(--radius);
                          background: var(--brand-light); display: flex; align-items: center;
                          justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.aau-contact-info__label { font-weight: 700; font-size: 0.88rem; color: var(--brand-primary); margin-bottom: 3px; }
.aau-contact-info__value { font-size: 0.9rem; color: var(--brand-muted); }
.aau-contact-info__value a { color: var(--brand-primary); font-weight: 500; transition: color var(--transition); }
.aau-contact-info__value a:hover { color: var(--brand-accent); }
.aau-hours-row { display: flex; justify-content: space-between; padding: 10px 0;
                 border-bottom: 1px solid rgba(27,43,94,0.06); font-size: 0.9rem; }
.aau-hours-row:last-child { border-bottom: none; }
.aau-hours-row__day  { font-weight: 500; color: var(--brand-text); }
.aau-hours-row__time { color: var(--brand-muted); }
.aau-hours-row--closed .aau-hours-row__time { color: #ef4444; }
.aau-map-wrap { border-radius: var(--radius); overflow: hidden; margin-top: 28px;
                border: 1px solid rgba(27,43,94,0.08); }
.aau-map-wrap iframe { width: 100%; height: 260px; display: block; border: none; }
.aau-direct-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.aau-direct-link { display: inline-flex; align-items: center; gap: 8px;
                   padding: 11px 20px; border-radius: var(--radius);
                   font-size: 0.88rem; font-weight: 600; transition: all var(--transition); }
.aau-direct-link--call  { background: var(--brand-primary); color: white; }
.aau-direct-link--call:hover { background: #243870; }
.aau-direct-link--wa    { background: #25D366; color: white; }
.aau-direct-link--wa:hover { background: #1ebe5d; }
.aau-direct-link--email { background: var(--brand-light); color: var(--brand-primary);
                          border: 1px solid rgba(27,43,94,0.12); }
.aau-direct-link--email:hover { border-color: var(--brand-accent); }

/* ── Contact form ── */
.aau-contact-card { background: var(--brand-white); border: 1px solid rgba(27,43,94,0.08);
                    border-radius: var(--radius); padding: 32px; }
.aau-contact-card h3 { font-family: var(--font-display); font-size: 1.3rem;
                       color: var(--brand-primary); margin-bottom: 18px; }
.aau-contact-form { display: grid; gap: 16px; }
.aau-form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.aau-form-field label { display: block; font-size: 0.82rem; font-weight: 600;
                        color: var(--brand-primary); margin-bottom: 6px; }
.aau-form-field input,
.aau-form-field textarea,
.aau-form-field select { width: 100%; padding: 12px 16px;
                         border: 1.5px solid rgba(27,43,94,0.15);
                         border-radius: var(--radius); font-family: var(--font-body);
                         font-size: 0.9rem; color: var(--brand-text);
                         background: var(--brand-white); outline: none;
                         transition: border-color var(--transition); }
.aau-form-field input:focus,
.aau-form-field textarea:focus,
.aau-form-field select:focus { border-color: var(--brand-accent); }
.aau-form-field textarea { resize: vertical; min-height: 120px; }
.aau-form-submit { width: 100%; padding: 15px; background: var(--brand-primary);
                   color: var(--brand-white); border: none; border-radius: var(--radius);
                   font-family: var(--font-body); font-size: 1rem; font-weight: 700;
                   cursor: pointer; transition: all var(--transition); }
.aau-form-submit:hover { background: var(--brand-accent); color: var(--brand-dark);
                         transform: translateY(-1px); }
.wpcf7-not-valid-tip { color: #ef4444; font-size: 0.78rem; margin-top: 4px; }
.wpcf7-response-output { color: var(--brand-accent); font-size: 0.88rem;
                         margin-top: 12px; border: none !important; padding: 0 !important; }

/* ── FAQ ── */
.aau-faq__item { border-bottom: 1px solid rgba(27,43,94,0.08); padding: 18px 0; }
.aau-faq__question { font-weight: 600; color: var(--brand-primary); cursor: pointer;
                     display: flex; justify-content: space-between; align-items: center;
                     font-size: 0.95rem; }
.aau-faq__question::after { content: '+'; font-size: 1.2rem; color: var(--brand-accent); flex-shrink: 0; }
.aau-faq__question.open::after { content: '−'; }
.aau-faq__answer { color: var(--brand-muted); font-size: 0.9rem; line-height: 1.7;
                   padding-top: 10px; display: none; }
.aau-faq__answer.open { display: block; }

/* ── CTA section ── */
.aau-cta-section { background: linear-gradient(135deg, var(--brand-primary) 0%, #243870 100%);
                   color: var(--brand-white); text-align: center; padding: 80px 0;
                   position: relative; overflow: hidden; }
.aau-cta-section__pattern { position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.aau-cta-section__inner   { position: relative; }
.aau-cta-section__heading { font-family: var(--font-display); font-size: clamp(1.9rem,4vw,2.8rem);
                            letter-spacing: -0.02em; margin-bottom: 14px; }
.aau-cta-section__heading em { color: var(--brand-accent); font-style: normal; }
.aau-cta-section__sub { color: rgba(255,255,255,0.75); max-width: 500px;
                        margin: 0 auto 32px; font-size: 1rem; }
.aau-cta-section__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.aau-footer { background: var(--brand-dark); color: rgba(255,255,255,0.55); padding: 48px 0 24px; }
.aau-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.aau-footer__brand-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
                          color: var(--brand-white); margin-bottom: 10px; }
.aau-footer__brand-name span { color: var(--brand-accent); }
.aau-footer__brand-desc { font-size: 0.88rem; line-height: 1.6; margin-bottom: 18px; max-width: 260px; }
.aau-footer__social { display: flex; gap: 10px; }
.aau-footer__social a { width: 36px; height: 36px; border-radius: 8px;
                        background: rgba(255,255,255,0.06);
                        display: flex; align-items: center; justify-content: center;
                        font-size: 0.85rem; transition: background var(--transition); }
.aau-footer__social a:hover { background: rgba(201,168,76,0.2); }
.aau-footer__col-title { font-weight: 700; font-size: 0.88rem; color: var(--brand-white);
                         margin-bottom: 16px; letter-spacing: 0.04em; }
.aau-footer__links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.aau-footer__links a { font-size: 0.86rem; transition: color var(--transition); }
.aau-footer__links a:hover { color: var(--brand-accent); }
.aau-footer__contact-item { display: flex; gap: 8px; align-items: flex-start;
                             margin-bottom: 10px; font-size: 0.86rem; }
.aau-footer__contact-item a { transition: color var(--transition); }
.aau-footer__contact-item a:hover { color: var(--brand-accent); }
.aau-footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px;
                      display: flex; justify-content: space-between; align-items: center;
                      flex-wrap: wrap; gap: 10px; }
.aau-footer__copy { font-size: 0.78rem; }
.aau-footer__copy a { color: var(--brand-accent); }

/* ── WA float ── */
.aau-wa-float { position: fixed; bottom: 28px; right: 24px; z-index: 9999;
                width: 56px; height: 56px; border-radius: 50%; background: #25D366;
                color: #fff; display: flex; align-items: center; justify-content: center;
                box-shadow: 0 4px 16px rgba(37,211,102,0.45);
                transition: transform 0.2s ease, box-shadow 0.2s ease; }
.aau-wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }

/* ── Fade-in animations ── */
.aau-fade { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.aau-fade.aau-visible { opacity: 1; transform: translateY(0); }

/* ── Admin bar offset ── */
.admin-bar .aau-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .aau-nav { top: 46px; } }

/* ── Responsive ── */
@media (max-width: 900px) {
  .aau-services__grid { grid-template-columns: repeat(2,1fr); }
  .aau-team__grid     { grid-template-columns: repeat(2,1fr); }
  .aau-values__grid   { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .aau-section { padding: 56px 0; }
  .aau-intro__grid       { grid-template-columns: 1fr; gap: 36px; }
  .aau-features__grid    { grid-template-columns: 1fr; }
  .aau-testimonials__grid { grid-template-columns: 1fr; }
  .aau-contact__grid     { grid-template-columns: 1fr; }
  .aau-footer__grid      { grid-template-columns: 1fr; gap: 28px; }
  .aau-footer__bottom    { flex-direction: column; text-align: center; }
  .aau-stats-grid        { grid-template-columns: 1fr 1fr; }
  .aau-form-row          { grid-template-columns: 1fr; }
  .aau-hero__actions     { flex-direction: column; align-items: flex-start; }
  .aau-cta-section__actions { flex-direction: column; align-items: center; }
  .aau-nav__links, .aau-nav__cta { display: none; }
  .aau-nav__hamburger    { display: flex; }
}
@media (max-width: 480px) {
  .aau-services__grid { grid-template-columns: 1fr; }
  .aau-team__grid     { grid-template-columns: 1fr; }
  .aau-values__grid   { grid-template-columns: 1fr; }
  .aau-stats-grid     { grid-template-columns: 1fr; }
}
