/* ============================================================
   ARTIVIO — BRAND NEW DESIGN SYSTEM 2025
   100% fresh build. Zero old theme reuse.
   Brand: Blue #2A62A6 · Red #D73B39 · Gold #FFC300
   Fonts: Poppins (body) + Space Grotesk (display)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ---------- VARIABLES ---------- */
:root {
    --blue: #2A62A6;
    --blue-dark: #1B4778;
    --blue-light: #4A8AD4;
    --blue-50: #EBF2FB;
    --red: #D73B39;
    --red-dark: #B52D2B;
    --red-light: #F06563;
    --red-50: #FEF0F0;
    --gold: #FFC300;
    --gold-dark: #D9A600;
    --gold-50: #FFF8E0;
    --white: #fff;
    --snow: #FAFBFD;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --font: 'Poppins', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --ease: cubic-bezier(.4,0,.2,1);
    --r: 12px;
    --r-lg: 20px;
    --r-full: 999px;
}

/* ---------- KILL OLD THEME ---------- */
.page-wrapper { display:block!important; padding:0!important; margin:0!important; overflow:visible!important; }
.sticky-header, .search-popup, .hidden-bar, .color-palate, .preloader,
.main-header, .footer-three,
.scroll-to-top:not(#av-top) { display:none!important; }
.wow { visibility:visible!important; }

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body {
    font-family: var(--font)!important;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; transition: color .25s var(--ease); }
a:hover { color: var(--blue); }
ul { list-style:none; padding:0; margin:0; }
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display)!important;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

/* ---------- LAYOUT ---------- */
.av-wrap { max-width:1240px; margin:0 auto; padding:0 24px; }

/* ---------- SITE HEADER ---------- */
.av-header {
    position: fixed; top:0; left:0; width:100%; z-index:9999;
    padding: 16px 0;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--blue);
    transition: padding .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.av-header.scrolled {
    padding: 8px 0;
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0,0,0,.08);
    border-bottom-color: var(--blue);
}
.av-header__inner {
    display:flex; align-items:center; justify-content:space-between;
}
.av-header__logo img { height:60px; width:auto; transition: height .3s var(--ease); }
.av-header.scrolled .av-header__logo img { height:46px; }

/* Desktop Nav */
.av-nav { display:flex; align-items:center; gap:2px; }
.av-nav a {
    display: inline-flex; align-items:center;
    padding: 10px 20px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    border-radius: var(--r-full);
    transition: all .25s var(--ease);
    letter-spacing: .01em;
    position: relative;
}
.av-nav a:hover, .av-nav a.active {
    color: var(--blue);
    background: var(--blue-50);
    text-decoration: none;
}

/* CTA Button */
.av-btn {
    display: inline-flex; align-items:center; gap:8px;
    padding: 12px 28px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--blue);
    border: none; border-radius: var(--r-full);
    cursor: pointer;
    transition: all .3s var(--ease);
    letter-spacing: .02em;
    text-decoration: none;
}
.av-btn:hover {
    background: var(--blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42,98,166,.3);
}
.av-btn--red { background: var(--red); }
.av-btn--red:hover { background: var(--red-dark); box-shadow: 0 8px 25px rgba(215,59,57,.3); }
.av-btn--outline {
    background: transparent; color: var(--blue);
    border: 2px solid var(--blue);
}
.av-btn--outline:hover { background: var(--blue); color: var(--white); }
.av-btn--white { background: var(--white); color: var(--blue); }
.av-btn--white:hover { background: var(--gray-100); color: var(--blue-dark); box-shadow: 0 8px 25px rgba(0,0,0,.1); }
.av-btn--lg { padding:16px 36px; font-size:16px; }
input.av-btn { display:inline-block; line-height:1.5; }

/* Mobile Toggle */
.av-mobile-toggle {
    display:none; background:none; border:none; cursor:pointer;
    font-size:22px; color:var(--gray-800); padding:8px;
}

/* Mobile Drawer */
.av-drawer {
    position:fixed; top:0; right:-320px; width:300px; height:100vh;
    background:var(--white); z-index:10001;
    padding:80px 30px 30px;
    transition: right .4s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,.1);
}
.av-drawer.open { right:0; }
.av-drawer__close {
    position:absolute; top:24px; right:24px;
    background:none; border:none; font-size:24px; cursor:pointer;
    color:var(--gray-600);
}
.av-drawer__logo { margin-bottom:32px; }
.av-drawer__logo img { height:36px; }
.av-drawer nav a {
    display:block; padding:14px 0;
    font-size:17px; font-weight:500; color:var(--gray-700);
    border-bottom:1px solid var(--gray-100);
}
.av-drawer nav a:hover { color:var(--blue); }
.av-backdrop {
    position:fixed; inset:0; background:rgba(0,0,0,.4);
    z-index:10000; opacity:0; visibility:hidden;
    transition: all .3s var(--ease);
}
.av-backdrop.open { opacity:1; visibility:visible; }

/* ---------- HERO SLIDER ---------- */
.av-hero {
    position:relative; width:100%; height:100vh; min-height:600px;
    overflow:hidden;
}
.av-hero__track {
    display:flex; height:100%;
    transition: transform .7s var(--ease);
}
.av-hero__slide {
    position:relative; min-width:100%; height:100%;
}
.av-hero__slide img {
    width:100%; height:100%; object-fit:cover;
    transition: transform 8s ease-out;
}
.av-hero__slide.active img { transform: scale(1.08); }
.av-hero__overlay {
    position:absolute; inset:0;
    background: linear-gradient(135deg, rgba(15,23,42,.75) 0%, rgba(42,98,166,.5) 100%);
    display:flex; align-items:center; justify-content:center;
    text-align:center; padding:0 24px;
}
.av-hero__content { max-width:780px; }
.av-hero__overlay h1 {
    font-size: clamp(34px, 5vw, 66px);
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -.03em;
    line-height: 1.1;
}
.av-hero__overlay p {
    font-size: clamp(16px, 1.8vw, 20px);
    color: rgba(255,255,255,.85);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.av-hero__arrows {
    position:absolute; bottom:40px; left:50%; transform:translateX(-50%);
    display:flex; gap:12px; z-index:10;
}
.av-hero__arrow {
    width:50px; height:50px;
    display:flex; align-items:center; justify-content:center;
    background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25);
    backdrop-filter:blur(8px);
    border-radius:50%; color:var(--white); font-size:16px;
    cursor:pointer; transition: all .3s var(--ease);
}
.av-hero__arrow:hover {
    background:var(--white); color:var(--blue);
}
.av-hero__dots {
    position:absolute; bottom:48px; right:48px;
    display:flex; gap:8px; z-index:10;
}
.av-hero__dot {
    width:10px; height:10px; border-radius:50%;
    background:rgba(255,255,255,.35); border:none; cursor:pointer;
    transition: all .3s var(--ease);
}
.av-hero__dot.active { background:var(--gold); width:30px; border-radius:5px; }

/* ---------- PAGE BANNER ---------- */
.av-page-banner {
    position:relative; padding:140px 0 60px;
    background-size:cover; background-position:center;
    overflow:hidden;
}
.av-page-banner::before {
    content:''; position:absolute; inset:0;
    background: linear-gradient(135deg, rgba(15,23,42,.82), rgba(42,98,166,.55));
}
.av-page-banner__content { position:relative; z-index:2; }
.av-page-banner__title {
    font-size: clamp(30px, 4vw, 48px);
    color: var(--white);
    letter-spacing: -.03em;
}
.av-page-banner__crumb {
    margin-top:14px; font-size:15px; color:rgba(255,255,255,.6);
}
.av-page-banner__crumb a { color:var(--gold); }

/* ---------- SECTION SYSTEM ---------- */
.av-section { padding:100px 0; }
.av-section--gray { background:var(--gray-50); }
.av-section--dark { background:var(--gray-900); color:var(--gray-300); }
.av-section--dark h2, .av-section--dark h3 { color:var(--white); }
.av-section--blue { background:var(--blue); }
.av-section--blue h2, .av-section--blue h3 { color:var(--white); }

/* Section Header */
.av-sh { text-align:center; margin-bottom:60px; }
.av-sh__label {
    display:inline-flex; align-items:center; gap:8px;
    font-size:12px; font-weight:600; text-transform:uppercase;
    letter-spacing:.12em; color:var(--blue);
    padding:6px 18px; background:var(--blue-50);
    border-radius:var(--r-full); margin-bottom:16px;
}
.av-sh__title {
    font-size: clamp(28px, 3.5vw, 46px);
    letter-spacing: -.025em;
    margin-bottom: 16px;
}
.av-sh__desc {
    font-size: 17px; color:var(--gray-500);
    max-width: 640px; margin:0 auto;
    line-height: 1.75;
}
.av-section--dark .av-sh__label { background:rgba(255,255,255,.08); color:var(--gold); }

/* ---------- ABOUT BLOCK ---------- */
.av-about { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.av-about__img {
    position:relative; border-radius:var(--r-lg); overflow:hidden;
}
.av-about__img img { width:100%; height:420px; object-fit:cover; }
.av-about__img::after {
    content:''; position:absolute; bottom:-10px; right:-10px;
    width:140px; height:140px; border-radius:var(--r-lg);
    background:var(--gold); z-index:-1;
}
.av-about__label {
    display:inline-flex; align-items:center; gap:8px;
    font-size:12px; font-weight:600; text-transform:uppercase;
    letter-spacing:.12em; color:var(--blue);
    padding:6px 18px; background:var(--blue-50);
    border-radius:var(--r-full); margin-bottom:14px;
}
.av-about__title {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 20px; letter-spacing:-.02em;
}
.av-about__highlight {
    font-size:17px; font-weight:500; color:var(--gray-800);
    margin-bottom:14px; line-height:1.65;
}
.av-about__text { color:var(--gray-500); margin-bottom:28px; line-height:1.8; }
.av-about__feature {
    display:flex; gap:16px; align-items:flex-start;
    padding:18px 0; border-top:1px solid var(--gray-100);
}
.av-about__icon {
    flex-shrink:0; width:50px; height:50px;
    display:flex; align-items:center; justify-content:center;
    background: var(--blue-50); color:var(--blue);
    border-radius:var(--r); font-size:20px;
}
.av-about__feature strong { display:block; font-size:15px; color:var(--gray-800); margin-bottom:4px; }
.av-about__feature p { font-size:14px; color:var(--gray-500); margin:0; line-height:1.6; }

/* ---------- STATS ---------- */
.av-stats {
    display:grid; grid-template-columns:repeat(4, 1fr); gap:32px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    border-radius: var(--r-lg); padding:52px 44px;
    text-align:center;
}
.av-stat__number {
    font-family:var(--font-display);
    font-size:44px; font-weight:700; color:var(--white);
    line-height:1;
}
.av-stat__label { font-size:14px; color:rgba(255,255,255,.65); margin-top:10px; }

/* ---------- VALUES ---------- */
.av-values { display:grid; grid-template-columns:repeat(4, 1fr); gap:24px; }
.av-value {
    text-align:center; padding:44px 24px;
    background:var(--white);
    border-radius:var(--r-lg);
    border:1px solid var(--gray-100);
    transition: all .4s var(--ease);
}
.av-value:hover {
    transform:translateY(-8px);
    box-shadow: 0 20px 50px rgba(42,98,166,.12);
    border-color:var(--blue-50);
}
.av-value__icon {
    width:68px; height:68px; margin:0 auto 22px;
    display:flex; align-items:center; justify-content:center;
    background:var(--blue-50); color:var(--blue);
    border-radius:var(--r); font-size:28px;
    transition: all .35s var(--ease);
}
.av-value:hover .av-value__icon { background:var(--blue); color:var(--white); }
.av-value__title { font-size:18px; font-weight:600; color:var(--gray-800); }

/* ---------- PARALLAX QUOTE ---------- */
.av-parallax {
    position:relative; padding:120px 0;
    background-size:cover; background-position:center;
    background-attachment:fixed;
}
.av-parallax::before {
    content:''; position:absolute; inset:0;
    background: linear-gradient(135deg, rgba(15,23,42,.82), rgba(42,98,166,.6));
}
.av-parallax__inner {
    position:relative; z-index:2; text-align:center;
    max-width:820px; margin:0 auto;
}
.av-parallax__label {
    display:inline-flex; align-items:center; gap:8px;
    font-size:12px; font-weight:600; text-transform:uppercase;
    letter-spacing:.12em; color:var(--gold);
    margin-bottom:20px;
}
.av-parallax__text {
    font-family:var(--font-display);
    font-size: clamp(22px, 3vw, 36px);
    color:var(--white); line-height:1.45;
    letter-spacing:-.015em;
}

/* ---------- SERVICE CARDS ---------- */
.av-services { display:grid; grid-template-columns:repeat(3, 1fr); gap:28px; }
.av-card {
    background:var(--white);
    border-radius:var(--r-lg);
    overflow:hidden;
    border:1px solid var(--gray-100);
    transition: all .4s var(--ease);
}
.av-card:hover {
    transform:translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,.1);
    border-color: transparent;
}
.av-card__img {
    position:relative; height:220px; overflow:hidden;
}
.av-card__img img { width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.av-card:hover .av-card__img img { transform:scale(1.08); }
.av-card__tag {
    position:absolute; top:16px; left:16px;
    font-size:11px; font-weight:600; text-transform:uppercase;
    letter-spacing:.08em; padding:5px 14px;
    background:var(--blue); color:var(--white);
    border-radius:var(--r-full);
}
.av-card__body { padding:28px; }
.av-card__title {
    font-size:20px; font-weight:600; color:var(--gray-800);
    margin-bottom:10px;
}
.av-card__title a { color:inherit; }
.av-card__title a:hover { color:var(--blue); }
.av-card__text {
    font-size:15px; color:var(--gray-500);
    line-height:1.7; margin-bottom:20px;
    display:-webkit-box; -webkit-line-clamp:3; line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.av-card__link {
    display:inline-flex; align-items:center; gap:6px;
    font-size:14px; font-weight:600; color:var(--blue);
    transition: gap .25s var(--ease);
}
.av-card__link i { transition:transform .25s var(--ease); font-size:12px; }
.av-card__link:hover i { transform:translateX(4px); }

/* ---------- CONTACT SECTION ---------- */
.av-contact { display:grid; grid-template-columns:1.5fr 1fr; gap:60px; align-items:start; }
.av-contact__form .form-control {
    width:100%; padding:14px 18px;
    font-family:var(--font); font-size:15px;
    border:1.5px solid var(--gray-200);
    border-radius:var(--r);
    background:var(--gray-50);
    color:var(--gray-800);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
    outline:none;
}
.av-contact__form .form-control:focus {
    border-color:var(--blue);
    box-shadow: 0 0 0 4px var(--blue-50);
    background:var(--white);
}
.av-contact__form textarea.form-control { resize:vertical; min-height:130px; }
.av-contact__form .form-group { margin-bottom:20px; }
.av-contact__form .btn,
.av-contact__form input[type="submit"] {
    padding:14px 36px; font-size:15px; font-weight:600;
    background:var(--blue); color:var(--white);
    border:none; border-radius:var(--r-full); cursor:pointer;
    font-family:var(--font);
    transition: all .3s var(--ease);
}
.av-contact__form .btn:hover,
.av-contact__form input[type="submit"]:hover {
    background:var(--blue-dark); transform:translateY(-2px);
    box-shadow: 0 8px 25px rgba(42,98,166,.3);
}
.av-contact__info { display:flex; flex-direction:column; gap:20px; }
.av-info-card {
    display:flex; gap:18px; align-items:flex-start;
    padding:24px; background:var(--gray-50);
    border-radius:var(--r-lg);
    border:1px solid var(--gray-100);
    transition: all .3s var(--ease);
}
.av-info-card:hover { background:var(--white); box-shadow:0 8px 30px rgba(0,0,0,.06); }
.av-info-card__icon {
    flex-shrink:0; width:52px; height:52px;
    display:flex; align-items:center; justify-content:center;
    background:var(--blue); color:var(--white);
    border-radius:var(--r); font-size:20px;
}
.av-info-card__title {
    font-size:12px; font-weight:600; text-transform:uppercase;
    letter-spacing:.1em; color:var(--gray-400); margin-bottom:4px;
}
.av-info-card__text { font-size:15px; color:var(--gray-700); font-weight:500; }

/* ---------- MAP ---------- */
.av-map iframe {
    width:100%; height:400px; border:0;
    border-radius:var(--r-lg);
}

/* ---------- FAQ / SERVICE DETAIL ---------- */
.av-faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.av-faq-img { border-radius:var(--r-lg); overflow:hidden; }
.av-faq-img img { width:100%; object-fit:cover; min-height:400px; }
.av-faq-list { display:flex; flex-direction:column; }
.av-faq {
    border-bottom:1px solid var(--gray-100);
    overflow:hidden;
}
.av-faq__q {
    display:flex; align-items:center; justify-content:space-between;
    padding:20px 0; cursor:pointer; gap:16px;
    font-size:16px; font-weight:600; color:var(--gray-800);
    transition: color .25s var(--ease);
}
.av-faq__q:hover { color:var(--blue); }
.av-faq__q-icon {
    flex-shrink:0; width:34px; height:34px;
    display:inline-flex; align-items:center; justify-content:center;
    background:var(--blue); color:var(--white);
    border-radius:50%; font-size:12px;
    margin-right:14px;
}
.av-faq__toggle {
    flex-shrink:0; transition:transform .3s var(--ease);
    color:var(--gray-400); font-size:14px;
}
.av-faq.open .av-faq__toggle { transform:rotate(180deg); color:var(--blue); }
.av-faq__a {
    max-height:0; overflow:hidden; padding:0 0 0 48px;
    font-size:15px; color:var(--gray-500); line-height:1.75;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.av-faq.open .av-faq__a { max-height:300px; padding-bottom:20px; }
.av-faq-intro { font-size:17px; color:var(--gray-500); line-height:1.8; max-width:750px; margin:0 auto; }

/* ---------- EVENTS ---------- */
.av-acc-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.av-acc-list { display:flex; flex-direction:column; gap:10px; }
.av-acc {
    border:1px solid var(--gray-100);
    border-radius:var(--r); overflow:hidden;
    background:var(--white);
    transition: all .3s var(--ease);
}
.av-acc.open { border-color:var(--blue-50); box-shadow:0 4px 20px rgba(42,98,166,.08); }
.av-acc__head {
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 24px; cursor:pointer;
    font-size:16px; font-weight:600; color:var(--gray-800);
}
.av-acc__head i { color:var(--gray-400); transition:transform .3s var(--ease), color .3s var(--ease); }
.av-acc.open .av-acc__head i { transform:rotate(180deg); color:var(--blue); }
.av-acc__body {
    max-height:0; overflow:hidden; padding:0 24px;
    font-size:15px; color:var(--gray-500); line-height:1.7;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.av-acc.open .av-acc__body { max-height:200px; padding:0 24px 20px; }
.av-acc-img { border-radius:var(--r-lg); overflow:hidden; }
.av-acc-img img { width:100%; height:100%; object-fit:cover; min-height:400px; }

/* Event Blocks */
.av-event-blocks { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.av-eblock {
    padding:32px; border-radius:var(--r-lg);
    border:1px solid var(--gray-100);
    background:var(--white);
    transition: all .35s var(--ease);
}
.av-eblock:hover {
    border-color:transparent;
    box-shadow: 0 14px 44px rgba(0,0,0,.08);
    transform:translateY(-4px);
}
.av-eblock:nth-child(even) { margin-top:24px; }
.av-eblock__title { font-size:18px; font-weight:600; color:var(--gray-800); margin-bottom:10px; }
.av-eblock__text { font-size:14px; color:var(--gray-500); line-height:1.7; }

/* Why Choose Block */
.av-why { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.av-why__features { display:flex; flex-direction:column; gap:18px; }
.av-why__feat {
    display:flex; gap:16px; align-items:flex-start;
    padding:22px; border-radius:var(--r);
    background:var(--gray-50); border:1px solid var(--gray-100);
    transition: all .3s var(--ease);
}
.av-why__feat:hover { background:var(--white); box-shadow:0 8px 30px rgba(0,0,0,.06); }
.av-why__icon {
    flex-shrink:0; width:48px; height:48px;
    display:flex; align-items:center; justify-content:center;
    background:var(--blue); color:var(--white);
    border-radius:var(--r); font-size:18px;
}
.av-why__feat h4 { font-size:16px; color:var(--gray-800); margin-bottom:6px; }
.av-why__feat p { font-size:14px; color:var(--gray-500); margin:0; line-height:1.65; }
.av-why__img { border-radius:var(--r-lg); overflow:hidden; }
.av-why__img img { width:100%; height:100%; object-fit:cover; min-height:420px; }

/* ---------- PR CARDS (about page) ---------- */
.av-pr-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.av-pr-card {
    display:flex; gap:16px; align-items:flex-start;
    padding:24px; border-radius:var(--r);
    background:var(--white); border:1px solid var(--gray-100);
    transition: all .35s var(--ease);
}
.av-pr-card:hover { border-color:transparent; box-shadow:0 14px 44px rgba(0,0,0,.08); transform:translateY(-4px); }
.av-pr-card__icon {
    flex-shrink:0; width:48px; height:48px;
    display:flex; align-items:center; justify-content:center;
    background:var(--blue); color:var(--white);
    border-radius:var(--r); font-size:18px;
}
.av-pr-card h3 { font-size:16px; color:var(--gray-800); margin-bottom:6px; }
.av-pr-card p { font-size:14px; color:var(--gray-500); margin:0; line-height:1.65; }

/* ---------- FOOTER ---------- */
.av-footer {
    background:var(--gray-900); color:var(--gray-400);
    padding:80px 0 0;
}
.av-footer__grid {
    display:grid; grid-template-columns:2fr 1fr 1.5fr; gap:48px;
    padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.08);
}
.av-footer__logo img { height:56px; margin-bottom:18px; }
p.av-footer__about, .av-footer__about p { font-size:15px; line-height:1.8; color:var(--gray-400); }
.av-footer__socials { display:flex; gap:10px; margin-top:24px; }
.av-footer__socials a {
    width:40px; height:40px;
    display:flex; align-items:center; justify-content:center;
    background:rgba(255,255,255,.06); color:var(--gray-400);
    border-radius:50%; font-size:15px;
    transition: all .3s var(--ease);
}
.av-footer__socials a:hover { background:var(--blue); color:var(--white); }
.av-footer__heading {
    font-family:var(--font-display);
    font-size:16px; font-weight:600; color:var(--white);
    margin-bottom:22px;
}
.av-footer__links li { margin-bottom:12px; }
.av-footer__links a {
    font-size:15px; color:var(--gray-400);
    display:inline-flex; align-items:center; gap:6px;
    transition: color .25s, transform .25s;
}
.av-footer__links a::before { content:'→'; font-size:12px; opacity:.5; }
.av-footer__links a:hover { color:var(--white); transform:translateX(4px); }
.av-footer__c-item {
    display:flex; gap:14px; align-items:flex-start; margin-bottom:18px;
}
.av-footer__c-icon {
    flex-shrink:0; width:38px; height:38px;
    display:flex; align-items:center; justify-content:center;
    background:rgba(255,255,255,.06); color:var(--blue-light);
    border-radius:10px; font-size:15px;
}
.av-footer__c-item strong {
    display:block; font-size:11px; text-transform:uppercase;
    letter-spacing:.08em; color:var(--gray-500); margin-bottom:3px;
}
.av-footer__c-item span { font-size:15px; color:var(--gray-300); }
.av-footer__bottom {
    padding:24px 0;
    display:flex; justify-content:space-between; align-items:center;
    font-size:14px; color:var(--gray-500);
}

/* ---------- SCROLL TO TOP ---------- */
#av-top {
    position:fixed; bottom:32px; right:32px;
    width:48px; height:48px;
    display:flex; align-items:center; justify-content:center;
    background:var(--blue); color:var(--white);
    border:none; border-radius:50%;
    font-size:18px; cursor:pointer;
    opacity:0; visibility:hidden;
    transition: all .35s var(--ease);
    box-shadow:0 6px 20px rgba(42,98,166,.3);
    z-index:9990;
}
#av-top.show { opacity:1; visibility:visible; }
#av-top:hover { background:var(--red); transform:translateY(-4px); box-shadow:0 8px 25px rgba(215,59,57,.3); }

/* ---------- ALERTS ---------- */
.alert-success {
    padding:16px 20px; border-radius:var(--r);
    background:#ECFDF5; border:1px solid #A7F3D0;
    color:#065F46; font-size:15px; font-family:var(--font);
}

/* Centered button wrapper */
.av-center { text-align:center; margin-top:48px; }

/* ---------- SCROLL ANIMATIONS ---------- */
@keyframes avFadeUp {
    from { opacity:0; transform:translateY(40px); }
    to { opacity:1; transform:translateY(0); }
}
@keyframes avFadeIn {
    from { opacity:0; }
    to { opacity:1; }
}
@keyframes avFadeLeft {
    from { opacity:0; transform:translateX(-40px); }
    to { opacity:1; transform:translateX(0); }
}
@keyframes avFadeRight {
    from { opacity:0; transform:translateX(40px); }
    to { opacity:1; transform:translateX(0); }
}
@keyframes avScaleIn {
    from { opacity:0; transform:scale(.92); }
    to { opacity:1; transform:scale(1); }
}
[data-av] {
    opacity: 0;
}
[data-av].av-visible {
    animation-duration: .7s;
    animation-fill-mode: both;
    animation-timing-function: var(--ease);
}
[data-av="fade-up"].av-visible { animation-name: avFadeUp; }
[data-av="fade-in"].av-visible { animation-name: avFadeIn; }
[data-av="fade-left"].av-visible { animation-name: avFadeLeft; }
[data-av="fade-right"].av-visible { animation-name: avFadeRight; }
[data-av="scale-in"].av-visible { animation-name: avScaleIn; }
[data-av].av-visible[data-av-delay="1"] { animation-delay: .1s; }
[data-av].av-visible[data-av-delay="2"] { animation-delay: .2s; }
[data-av].av-visible[data-av-delay="3"] { animation-delay: .3s; }
[data-av].av-visible[data-av-delay="4"] { animation-delay: .4s; }
[data-av].av-visible[data-av-delay="5"] { animation-delay: .5s; }
[data-av].av-visible[data-av-delay="6"] { animation-delay: .6s; }

/* Card & value hover transitions already exist - add subtle entrance stagger for cards */
.av-card, .av-value, .av-pr-card, .av-eblock, .av-info-card, .av-why__feat, .av-faq, .av-acc {
    transition: all .4s var(--ease);
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px) {
    .av-about { grid-template-columns:1fr; gap:40px; }
    .av-services { grid-template-columns:repeat(2, 1fr); }
    .av-stats { grid-template-columns:repeat(2, 1fr); }
    .av-values { grid-template-columns:repeat(2, 1fr); }
    .av-contact { grid-template-columns:1fr; }
    .av-faq-grid { grid-template-columns:1fr; }
    .av-acc-grid { grid-template-columns:1fr; }
    .av-why { grid-template-columns:1fr; }
    .av-event-blocks { grid-template-columns:1fr; }
    .av-eblock:nth-child(even) { margin-top:0; }
    .av-pr-grid { grid-template-columns:1fr; }
    .av-footer__grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
    .av-nav { display:none; }
    .av-mobile-toggle { display:block; }
    .av-btn--header { display:none; }
    .av-hero { height:85vh; min-height:500px; }
    .av-services { grid-template-columns:1fr; }
    .av-stats { grid-template-columns:1fr 1fr; padding:32px 24px; }
    .av-values { grid-template-columns:1fr 1fr; }
    .av-section { padding:64px 0; }
    .av-page-banner { padding:120px 0 40px; }
    .av-footer__grid { grid-template-columns:1fr; gap:32px; }
    .av-footer__bottom { flex-direction:column; gap:8px; text-align:center; }
    .av-hero__dots { display:none; }
}
@media(max-width:480px) {
    .av-wrap { padding:0 16px; }
    .av-hero { height:75vh; min-height:420px; }
    .av-stats { grid-template-columns:1fr; }
    .av-values { grid-template-columns:1fr; }
    .av-sh__title { font-size:26px; }
    .av-page-banner__title { font-size:28px; }
}
