/* ============================================================
   ACCORD BUILDERS LIMITED — custom.css
   Shared stylesheet for all pages
   ============================================================ */

:root {
  --abl-purple:      #6B2FA0;
  --abl-purple-dark: #4A1D73;
  --abl-gold:        #C9A84C;
  --abl-dark:        #1A1A2E;
  --abl-dark-mid:    #2D1B4E;
  --abl-cream:       #FAF9F7;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fff; -webkit-font-smoothing: antialiased; }

/* ---------- Typography ---------- */
.abl-section-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.15; color: #111; }
.abl-label-gold { color: var(--abl-gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.abl-gold-gradient { background: linear-gradient(135deg, #C9A84C, #E8D5A0, #C9A84C); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.abl-body-text { color: #6b7280; font-size: 0.975rem; line-height: 1.75; margin: 0; }
.abl-heading-divider { width: 56px; height: 3px; background: linear-gradient(90deg, var(--abl-purple), var(--abl-gold)); border-radius: 2px; }
.abl-section-heading { margin-bottom: 3.5rem; }
.abl-section { padding: 6rem 0; }
.abl-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.abl-bg-gradient-cream { background: linear-gradient(to bottom, #FAF9F7, #ffffff); }
.abl-why-bg { background: linear-gradient(135deg, #F5F0FA 0%, #ffffff 50%, #FAF8F0 100%); }

/* ---------- Buttons ---------- */
.abl-btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.9rem; padding: 0.65rem 1.5rem; border: none; cursor: pointer; text-decoration: none; transition: all 0.25s; }
.abl-btn-rounded { border-radius: 50px; }
.abl-btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.abl-btn-purple { background: var(--abl-purple); color: #fff; }
.abl-btn-purple:hover { background: var(--abl-purple-dark); color: #fff; transform: translateY(-2px); }
.abl-btn-white { background: #fff; color: var(--abl-purple); }
.abl-btn-white:hover { background: #f3f3f3; color: var(--abl-purple); }
.abl-btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.abl-btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; }
.abl-btn-outline-purple { background: transparent; color: var(--abl-purple); border: 1.5px solid var(--abl-purple); }
.abl-btn-outline-purple:hover { background: var(--abl-purple); color: #fff; }

/* ==================== NAVBAR ==================== */
.abl-navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(26,26,46,0.72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.4s, box-shadow 0.4s; }
.abl-navbar.scrolled { background: rgba(255,255,255,0.97) !important; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.abl-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.abl-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.abl-brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.abl-brand-text { display: flex; flex-direction: column; }
.abl-brand-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.2; transition: color 0.3s; }
.abl-brand-sub { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.abl-navbar.scrolled .abl-brand-name { color: #111; }
.abl-nav-links { display: flex; align-items: center; gap: 0.25rem; }
.abl-nav-link { padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.9); text-decoration: none; transition: all 0.2s; }
.abl-nav-link:hover, .abl-nav-link.active { color: var(--abl-gold); background: rgba(255,255,255,0.1); }
.abl-navbar.scrolled .abl-nav-link { color: #555; }
.abl-navbar.scrolled .abl-nav-link:hover, .abl-navbar.scrolled .abl-nav-link.active { color: var(--abl-purple); background: rgba(107,47,160,0.07); }
.abl-nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.abl-hamburger { background: transparent; border: none; cursor: pointer; font-size: 1.6rem; color: #fff; padding: 0.25rem; display: flex; align-items: center; }
.abl-navbar.scrolled .abl-hamburger { color: #333; }
.abl-mobile-menu { display: none; flex-direction: column; gap: 0.5rem; padding: 1.5rem; position: fixed; inset: 0; top: 80px; z-index: 999; background: #fff; overflow-y: auto; }
.abl-mobile-menu.open { display: flex; }
.abl-mobile-link { display: block; padding: 0.85rem 1rem; border-radius: 12px; font-size: 1rem; font-weight: 500; color: #444; text-decoration: none; transition: all 0.2s; }
.abl-mobile-link:hover { color: var(--abl-purple); background: rgba(107,47,160,0.07); }
@media (min-width:992px) { .abl-hamburger { display: none !important; } .abl-mobile-menu { display: none !important; } }
@media (max-width:991px) { .abl-nav-links { display: none; } }

/* ==================== PAGE HERO ==================== */
.abl-page-hero { position: relative; height: clamp(240px, 30vw, 320px); overflow: hidden; }
.abl-page-hero img { width: 100%; height: 100%; object-fit: cover; }
.abl-page-hero-overlay { position: absolute; inset: 0; background: rgba(26,26,46,0.8); }
.abl-page-hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.abl-page-hero-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; margin-bottom: 0.5rem; }
.abl-page-hero-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin: 0; }

/* ==================== HERO (Home) ==================== */
.abl-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.abl-hero-bg { position: absolute; inset: 0; }
.abl-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.abl-hero-overlay-lr { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.7) 55%, transparent 100%); }
.abl-hero-overlay-tb { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,0.5) 0%, transparent 50%); }
.abl-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.abl-orb-purple { width: 320px; height: 320px; background: rgba(107,47,160,0.2); top: 33%; right: 4rem; }
.abl-orb-gold { width: 208px; height: 208px; background: rgba(201,168,76,0.1); bottom: 25%; right: 10rem; filter: blur(48px); }
.abl-hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 5rem 1.5rem 0; width: 100%; }
.abl-label-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.abl-label-line { width: 48px; height: 1px; background: var(--abl-gold); }
.abl-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.abl-hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 480px; margin-bottom: 2.5rem; }
.abl-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.abl-stats-glass { display: inline-flex; flex-wrap: wrap; margin-top: 4rem; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.abl-stat { padding: 1.25rem 1.75rem; border-right: 1px solid rgba(255,255,255,0.1); }
.abl-stat-last { border-right: none; }
.abl-stat-val { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: #fff; }
.abl-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); white-space: nowrap; margin-top: 4px; }
.abl-scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2; animation: ablBounce 2s ease-in-out infinite; }
.abl-scroll-text { font-size: 0.7rem; color: rgba(255,255,255,0.5); letter-spacing: 0.15em; text-transform: uppercase; }
.abl-scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); }
@keyframes ablBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.abl-animate { animation: ablFadeUp 0.8s ease-out forwards; }
@keyframes ablFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
.abl-animate-scroll { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.abl-animate-scroll.abl-visible { opacity: 1; transform: none; }

/* ==================== ABOUT ==================== */
.abl-about-img-wrap { position: relative; }
.abl-about-img-inner { border-radius: 16px; overflow: hidden; }
.abl-about-img { width: 100%; height: 500px; object-fit: cover; display: block; }
.abl-years-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: linear-gradient(135deg, var(--abl-purple), var(--abl-purple-dark)); color: #fff; border-radius: 16px; padding: 1.5rem; box-shadow: 0 8px 32px rgba(107,47,160,0.3); }
.abl-years-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.abl-years-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.abl-corner-accent { position: absolute; top: -1rem; left: -1rem; width: 6rem; height: 6rem; border: 2px solid rgba(201,168,76,0.3); border-radius: 16px; pointer-events: none; }
.abl-highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.abl-highlight-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: #374151; }
.abl-check-icon { color: var(--abl-purple); font-size: 1.1rem; flex-shrink: 0; }

/* ==================== PROJECT CARDS ==================== */
.abl-project-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #f0f0f0; transition: transform 0.3s, box-shadow 0.3s; }
.abl-project-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,0.12); }
.abl-project-img-wrap { position: relative; height: 220px; overflow: hidden; }
.abl-project-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.abl-project-card:hover .abl-project-img-wrap img { transform: scale(1.07); }
.abl-phase-badge { position: absolute; top: 12px; left: 12px; padding: 0.3rem 0.9rem; border-radius: 20px; font-size: 0.7rem; font-weight: 700; }
.abl-phase-ongoing { background: rgba(201,168,76,0.9); color: #fff; }
.abl-phase-upcoming { background: rgba(107,47,160,0.9); color: #fff; }
.abl-phase-completed { background: rgba(16,185,129,0.9); color: #fff; }
.abl-project-body { padding: 1.5rem; }
.abl-project-type { font-size: 0.7rem; font-weight: 700; color: var(--abl-purple); letter-spacing: 0.1em; text-transform: uppercase; }
.abl-project-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: #111; margin: 0.4rem 0; }
.abl-project-loc, .abl-project-size { font-size: 0.82rem; color: #9ca3af; margin-bottom: 0.25rem; }
.abl-project-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.83rem; font-weight: 600; color: var(--abl-purple); text-decoration: none; margin-top: 0.75rem; transition: gap 0.2s; }
.abl-project-link:hover { color: var(--abl-purple-dark); gap: 0.7rem; }

/* ==================== WHY CHOOSE US ==================== */
.abl-why-orb { position: absolute; border-radius: 50%; filter: blur(72px); pointer-events: none; }
.abl-why-orb-tl { width: 384px; height: 384px; background: rgba(107,47,160,0.05); top: -100px; left: -100px; }
.abl-why-orb-br { width: 320px; height: 320px; background: rgba(201,168,76,0.06); bottom: -80px; right: -80px; }
.abl-why-card { padding: 2rem; border-radius: 16px; height: 100%; border: 1px solid rgba(255,255,255,0.6); background: rgba(255,255,255,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: all 0.3s; }
.abl-why-card:hover { background: #fff; box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: rgba(107,47,160,0.2); }
.abl-why-icon { width: 56px; height: 56px; border-radius: 14px; margin-bottom: 1.25rem; background: linear-gradient(135deg, rgba(107,47,160,0.1), rgba(201,168,76,0.1)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--abl-purple); transition: all 0.3s; }
.abl-why-card:hover .abl-why-icon { background: linear-gradient(135deg, var(--abl-purple), var(--abl-purple-dark)); color: #fff; }
.abl-why-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.abl-why-desc { font-size: 0.875rem; color: #9ca3af; line-height: 1.6; margin: 0; }

/* ==================== SISTER CONCERNS ==================== */
.abl-sister-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #f3f4f6; transition: all 0.3s; }
.abl-sister-card:hover { box-shadow: 0 20px 48px rgba(0,0,0,0.12); transform: translateY(-4px); }
.abl-sister-img-wrap { position: relative; height: 128px; overflow: hidden; }
.abl-sister-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.abl-sister-card:hover .abl-sister-img-wrap img { transform: scale(1.05); }
.abl-sister-overlay { position: absolute; inset: 0; }
.abl-sister-tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 20px; }
.abl-sister-icon { position: absolute; bottom: 12px; left: 16px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.9rem; }
.abl-sister-body { padding: 1.25rem; }
.abl-sister-name { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 0.4rem; line-height: 1.3; }
.abl-sister-desc { font-size: 0.83rem; color: #9ca3af; line-height: 1.55; margin: 0; }

/* ==================== TESTIMONIALS ==================== */
.abl-testimonials-bg { background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 50%, #1A1A2E 100%); }
.abl-testimonials-orb { position: absolute; border-radius: 50%; opacity: 0.05; pointer-events: none; }
.abl-test-orb-1 { width: 384px; height: 384px; background: var(--abl-purple); top: 5rem; left: 5rem; }
.abl-test-orb-2 { width: 256px; height: 256px; background: var(--abl-gold); bottom: 5rem; right: 5rem; }
.abl-testimonial-wrap { position: relative; min-height: 280px; }
.abl-testimonial-slide { display: none; animation: ablFadeSlide 0.4s ease; }
.abl-testimonial-slide.active { display: block; }
@keyframes ablFadeSlide { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.abl-quote-icon { font-size: 2.5rem; color: rgba(201,168,76,0.4); display: block; margin-bottom: 1.5rem; }
.abl-testimonial-text { font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: rgba(255,255,255,0.9); font-style: italic; font-weight: 400; line-height: 1.7; margin-bottom: 1.5rem; }
.abl-stars { color: var(--abl-gold); font-size: 1.1rem; letter-spacing: 4px; margin-bottom: 1.5rem; }
.abl-testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.abl-testimonial-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(201,168,76,0.5); }
.abl-testimonial-meta { text-align: left; }
.abl-testimonial-name { color: #fff; font-weight: 600; font-size: 1rem; margin-bottom: 0.15rem; }
.abl-testimonial-role { color: #9ca3af; font-size: 0.82rem; margin-bottom: 0.15rem; }
.abl-testimonial-project { color: var(--abl-gold); font-size: 0.75rem; margin: 0; }
.abl-test-controls { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 2.5rem; }
.abl-test-nav { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.abl-test-nav:hover { background: rgba(255,255,255,0.2); }
.abl-test-dots { display: flex; align-items: center; gap: 0.5rem; }
.abl-test-dot { width: 10px; height: 10px; border-radius: 10px; border: none; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; }
.abl-test-dot.active { width: 32px; background: var(--abl-gold); }

/* ==================== MEDIA CARDS ==================== */
.abl-media-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #f3f4f6; box-shadow: 0 1px 4px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; }
.abl-media-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
.abl-media-img-wrap { position: relative; height: 208px; overflow: hidden; }
.abl-media-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.abl-media-card:hover .abl-media-img-wrap img { transform: scale(1.1); }
.abl-media-cat { position: absolute; top: 1rem; left: 1rem; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 6px; }
.abl-cat-blog { background: #dbeafe; color: #1d4ed8; }
.abl-cat-news { background: #d1fae5; color: #065f46; }
.abl-cat-events { background: #ede9fe; color: #6d28d9; }
.abl-media-body { padding: 1.5rem; }
.abl-media-date { font-size: 0.75rem; color: #9ca3af; margin-bottom: 0.75rem; }
.abl-media-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #111; margin-bottom: 1rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.2s; }
.abl-media-card:hover .abl-media-title { color: var(--abl-purple); }
.abl-media-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.83rem; font-weight: 600; color: var(--abl-purple); text-decoration: none; transition: gap 0.2s; }
.abl-media-link:hover { color: var(--abl-purple-dark); gap: 0.7rem; }

/* ==================== CTA ==================== */
.abl-cta-section { position: relative; overflow: hidden; }
.abl-cta-bg { position: absolute; inset: 0; }
.abl-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.abl-cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(107,47,160,0.9), rgba(74,29,115,0.85), rgba(26,26,46,0.9)); }

/* ==================== TEAM ==================== */
.abl-team-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #f3f4f6; transition: all 0.3s; }
.abl-team-card:hover { box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
.abl-team-img-wrap { position: relative; height: 256px; overflow: hidden; }
.abl-team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.abl-team-card:hover .abl-team-img-wrap img { transform: scale(1.05); }
.abl-team-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,0.6), transparent); }
.abl-team-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; }
.abl-team-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0; }
.abl-team-role { color: var(--abl-gold); font-size: 0.82rem; font-weight: 500; margin: 0.2rem 0 0; }
.abl-team-bio { padding: 1.25rem; font-size: 0.85rem; color: #9ca3af; line-height: 1.6; }
.abl-team-bio p { margin: 0; }

/* ==================== FILTER BAR ==================== */
.abl-filter-bar { background: #fff; border-bottom: 1px solid #f0f0f0; box-shadow: 0 2px 8px rgba(0,0,0,0.04); position: sticky; top: 80px; z-index: 30; padding: 1rem 0; }
.abl-filter-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.abl-filter-group { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.abl-filter-label { font-size: 0.7rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }
.abl-filter-btns { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.abl-filter-btn { background: transparent; border: none; padding: 0.35rem 0.85rem; border-radius: 8px; font-size: 0.75rem; font-weight: 600; color: #6b7280; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.abl-filter-btn:hover { background: #f3f4f6; }
.abl-filter-btn.active { background: var(--abl-purple); color: #fff; }
.abl-filter-divider { width: 1px; height: 24px; background: #e5e7eb; }
.abl-clear-filters { background: transparent; border: none; cursor: pointer; font-size: 0.75rem; font-weight: 600; color: #ef4444; display: flex; align-items: center; margin-left: auto; }

/* ==================== MEDIA TABS ==================== */
.abl-tab-btn { background: transparent; border: none; padding: 0.5rem 1.5rem; border-radius: 50px; font-size: 0.875rem; font-weight: 500; cursor: pointer; color: #6b7280; transition: all 0.2s; }
.abl-tab-btn:hover { background: #f3f4f6; }
.abl-tab-btn.active { background: var(--abl-purple); color: #fff; }

/* ==================== FORMS ==================== */
.abl-form-input { width: 100%; border: 1.5px solid #e5e7eb; border-radius: 12px; padding: 0.75rem 1rem; font-size: 0.9rem; font-family: 'Inter', sans-serif; transition: border-color 0.2s; outline: none; background: #fff; }
.abl-form-input:focus { border-color: var(--abl-purple); box-shadow: 0 0 0 3px rgba(107,47,160,0.1); }

/* ==================== ACCORDION ==================== */
.abl-accordion-btn { background: #fff; font-weight: 600; color: #111; font-size: 0.95rem; padding: 1.25rem; }
.abl-accordion-btn:focus { box-shadow: none; }
.abl-accordion-btn:not(.collapsed) { background: #fff; color: var(--abl-purple); box-shadow: none; }
.abl-accordion-body { background: #fff; color: #6b7280; font-size: 0.9rem; line-height: 1.75; padding-top: 0; }

/* ==================== FOOTER ==================== */
.abl-footer { background: var(--abl-dark); color: #9ca3af; }
.abl-footer-logo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; }
.abl-footer-brand { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.abl-footer-text { font-size: 0.85rem; color: #9ca3af; line-height: 1.65; }
.abl-footer-heading { color: #fff; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.abl-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.abl-footer-link { font-size: 0.85rem; color: #9ca3af; text-decoration: none; transition: color 0.2s; }
.abl-footer-link:hover { color: var(--abl-gold); }
.abl-footer-contact-item { display: flex; gap: 0.75rem; font-size: 0.85rem; align-items: flex-start; }
.abl-footer-contact-item i { margin-top: 2px; flex-shrink: 0; }
.abl-social-row { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.abl-social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #9ca3af; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.abl-social-btn:hover { background: var(--abl-purple); color: #fff; }
.abl-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.abl-footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 1.25rem 0; }
.abl-footer-copy { font-size: 0.75rem; color: #6b7280; margin: 0; }
.abl-footer-bottom-links { display: flex; gap: 1.5rem; }

/* ==================== RESPONSIVE ==================== */
@media (max-width:767px) {
  .abl-section { padding: 4rem 0; }
  .abl-stats-glass { flex-direction: column; }
  .abl-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .abl-stat-last { border-bottom: none; }
  .abl-about-img { height: 300px; }
  .abl-highlights-grid { grid-template-columns: 1fr; }
}
/* ==================== SEARCH WIDGET ==================== */
.abl-search-widget { position: relative; z-index: 2; margin-top: 2.5rem;}
.abl-search-inner { background: #fff; border-radius: 20px; padding: 1.75rem 2rem; box-shadow: 0 24px 64px rgba(0,0,0,0.18); }
.abl-search-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: #111; margin-bottom: 1.25rem; display: flex; align-items: center; }
.abl-search-fields { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.abl-search-select { flex: 1; min-width: 160px; border: 1.5px solid #e5e7eb; border-radius: 50px; padding: .65rem 1.25rem; font-size: .875rem; color: #374151; background: #fff; outline: none; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; cursor: pointer; transition: border-color .2s; }
.abl-search-select:focus { border-color: var(--abl-purple); }
@media (max-width:767px) { .abl-search-fields { flex-direction: column; } .abl-search-select { width: 100%; } .abl-search-inner { padding: 1.25rem; } }