/* ============================================================
   The Brandistan — assets/css/style.css
   ============================================================ */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --brand:       #0052CC; /* Corporate Blue */
  --brand-dark:  #003E99;
  --brand-light: #4C9AFF;
  --dark:        #091E42; /* Deep Navy */
  --dark2:       #172B4D;
  --accent:      #00B8D9; /* Bright Teal Accent */
  --gold:        #FFAB00;
  --text:        #172B4D;
  --muted:       #6B778C;
  --light-bg:    #F4F5F7;
  --white:       #FFFFFF;
  --border:      #DFE1E6;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif:  'Montserrat', sans-serif; /* Using Montserrat for a modern portfolio feel */
  --shadow:      0 2px 12px rgba(9,30,66,.08);
  --shadow-lg:   0 8px 32px rgba(9,30,66,.12);
  --radius:      8px;
  --radius-lg:   16px;
}

/* ── Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--font); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; transition: .2s; }
img { max-width: 100%; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 10px; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; }
.section-label { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); display: inline-block; margin-bottom: 8px; }
.section-title { font-size: clamp(26px, 4vw, 38px); color: var(--dark); line-height: 1.25; margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 15px; max-width: 600px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-brand, .btn-primary { background: var(--brand) !important; color: #fff !important; border: 2px solid var(--brand) !important; border-radius: 50px; padding: 11px 28px; font-weight: 600; font-size: 14px; font-family: var(--font); transition: .3s; }
.btn-brand:hover, .btn-primary:hover { background: var(--brand-dark) !important; border-color: var(--brand-dark) !important; color: #fff !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,82,204,.3); }
.btn-brand-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); border-radius: 50px; padding: 11px 28px; font-weight: 600; font-size: 14px; font-family: var(--font); transition: .3s; }
.btn-brand-outline:hover { background: var(--brand); color: #fff; }
.btn-brand-sm { background: var(--brand); color: #fff; border-radius: 50px; padding: 8px 20px; font-size: 13px; font-weight: 600; display: inline-block; transition: .3s; }
.btn-brand-sm:hover { background: var(--brand-dark); color: #fff; }
.btn-whatsapp { background: var(--brand); color: #fff; border-radius: 50px; padding: 9px 20px; font-size: 13.5px; font-weight: 600; border: none; transition: .3s; font-family: var(--font); }
.btn-whatsapp:hover { background: var(--brand-dark); color: #fff; transform: translateY(-2px); }

/* ── Top Bar ─────────────────────────────────────────────── */
.topbar-strip { background: linear-gradient(90deg, var(--dark) 0%, var(--dark2) 100%); color: #fff; padding: 8px 0; font-size: 12.5px; border-bottom: 1px solid rgba(255,255,255,.05); }
.topbar-link { color: rgba(255,255,255,.75); font-weight: 500; transition: .2s; text-decoration: none; display: inline-flex; align-items: center; }
.topbar-link:hover { color: var(--brand-light); }
.topbar-link + .topbar-link { margin-left: 24px; }
.topbar-tag { color: var(--accent); font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }
.social-links a { color: rgba(255,255,255,.6); font-size: 14px; margin-left: 16px; transition: .3s; }
.social-links a:hover { color: #fff; transform: translateY(-2px); }

/* ── Navbar ──────────────────────────────────────────────── */
.main-navbar { background: rgba(255,255,255,.98); backdrop-filter: blur(10px); box-shadow: 0 4px 20px rgba(0,0,0,.04); padding: 14px 0; transition: all .4s cubic-bezier(0.4, 0, 0.2, 1); border-bottom: 1px solid var(--border); }
.main-navbar.scrolled { padding: 8px 0; background: #fff; box-shadow: 0 10px 30px rgba(9,30,66,.12); }
.brand-logo { display: flex; align-items: center; gap: 12px; }
.navbar-nav .nav-link { font-size: 14.5px; font-weight: 600; color: var(--dark); padding: 10px 18px; border-radius: 8px; transition: .3s; position: relative; }
.navbar-nav .nav-link::after { content: ''; position: absolute; bottom: 5px; left: 18px; right: 18px; height: 2px; background: var(--brand); transform: scaleX(0); transition: .3s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 2px; }
.navbar-nav .nav-link:hover { color: var(--brand); }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link.active { color: var(--brand); }

/* ── Mega Menu ───────────────────────────────────────────── */
.mega-dropdown { position: static; }
.mega-menu { width: 100%; border-radius: 0 0 var(--radius-lg) var(--radius-lg); border: 1px solid var(--border); border-top: 4px solid var(--brand); padding: 0; left: 0 !important; right: 0 !important; top: 100% !important; transform: none !important; box-shadow: var(--shadow-lg); margin-top: 0; }
.mega-intro { padding: 32px; background: linear-gradient(180deg, var(--light-bg) 0%, #fff 100%); border-radius: 0 0 0 var(--radius-lg); }
.mega-heading { font-family: var(--font-serif); color: var(--dark); font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.mega-text { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.mega-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--dark); padding: 12px 16px; border-radius: 10px; transition: .2s; text-decoration: none; }
.mega-item:hover { color: var(--brand); background: rgba(0,82,204,.05); transform: translateX(5px); }
.mega-item i { color: var(--brand); font-size: 16px; opacity: 0.7; }
.mega-item:hover i { opacity: 1; }

/* ── Hero Section ────────────────────────────────────────── */
.hero-section { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 40%, #0F3460 100%); min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-section::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="60" cy="30" r="1" fill="rgba(255,255,255,0.03)"/></svg>'); }
.hero-tag { background: rgba(0,82,204,.2); border: 1px solid rgba(0,82,204,.4); color: var(--brand-light); padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; display: inline-block; margin-bottom: 20px; }
.hero-title { font-size: clamp(32px, 5vw, 58px); color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero-title span { color: var(--brand-light); }
.hero-desc { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 32px; max-width: 520px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badge { background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.9); padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 500; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.hero-stat-num { font-size: 30px; font-weight: 800; color: var(--brand-light); line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }
.hero-image-wrap { position: relative; }
.hero-image-card { background: rgba(255,255,255,.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 24px; }
.hero-floating-badge { position: absolute; background: var(--brand); color: #fff; border-radius: 10px; padding: 10px 16px; font-size: 12px; font-weight: 600; box-shadow: 0 8px 24px rgba(0,82,204,.4); }
.hero-floating-badge.top-right { top: -15px; right: -15px; }
.hero-floating-badge.bottom-left { bottom: -15px; left: -15px; }
.hero-service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-service-item { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 16px; text-align: center; transition: .3s; }
.hero-service-item:hover { background: rgba(0,82,204,.2); border-color: rgba(0,82,204,.4); }
.hero-service-item i { font-size: 24px; color: var(--brand-light); margin-bottom: 8px; display: block; }
.hero-service-item span { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 500; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); text-align: center; }
.scroll-dot { width: 30px; height: 50px; border: 2px solid rgba(255,255,255,.4); border-radius: 15px; margin: 0 auto; position: relative; }
.scroll-dot::after { content: ''; width: 4px; height: 8px; background: #fff; border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollAnim 1.5s ease-in-out infinite; }
@keyframes scrollAnim { 0%,100%{top:6px;opacity:1} 100%{top:22px;opacity:0} }

/* ── Section Base ────────────────────────────────────────── */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── Services Section ────────────────────────────────────── */
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: .3s; height: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-light); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--light-bg); display: flex; align-items: center; justify-content: center; }
.service-card-img-placeholder { height: 200px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--light-bg) 0%, #E8EAFF 100%); }
.service-card-img-placeholder i { font-size: 56px; color: var(--brand) !important; }
.service-card-body { padding: 20px; }
.service-card-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-card-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.service-card-link { font-size: 13px; font-weight: 600; color: var(--brand); }
.service-card-link:hover { color: var(--brand-dark); }

/* ── Why Choose Us ───────────────────────────────────────── */
.choose-section { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); }
.choose-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); margin-bottom: 16px; transition: .3s; }
.choose-item:hover { background: rgba(0,82,204,.15); border-color: rgba(0,82,204,.3); }
.choose-icon { width: 50px; height: 50px; background: var(--brand); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; flex-shrink: 0; }
.choose-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.choose-desc { font-size: 13px; color: rgba(255,255,255,.6); margin: 0; line-height: 1.5; }

/* ── Stats Counter ───────────────────────────────────────── */
.stats-section { background: var(--brand); }
.stat-item { text-align: center; padding: 30px 20px; }
.stat-number { font-size: clamp(36px, 5vw, 54px); font-weight: 800; color: #fff; font-family: var(--font-serif); line-height: 1; }
.stat-suffix { color: rgba(255,255,255,.8); }
.stat-label { font-size: 14px; color: rgba(255,255,255,.8); margin-top: 8px; font-weight: 500; }
.stat-divider { width: 1px; background: rgba(255,255,255,.2); align-self: stretch; margin: 20px 0; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; height: 100%; position: relative; box-shadow: var(--shadow); transition: .3s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card::before { content: '\275D'; position: absolute; top: 16px; right: 20px; font-size: 60px; color: var(--brand); opacity: .1; font-family: serif; line-height: 1; }
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-name { font-weight: 700; color: var(--dark); font-size: 15px; }
.testimonial-company { font-size: 12px; color: var(--brand); font-weight: 600; margin-top: 2px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; color: #fff; flex-shrink: 0; }

/* ── Clients Ticker ─────────────────────────────────────── */
.clients-ticker { overflow: hidden; position: relative; padding: 20px 0; }
.clients-ticker::before, .clients-ticker::after { content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2; }
.clients-ticker::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.clients-ticker::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.ticker-track { display: flex; gap: 40px; animation: tickerScroll 25s linear infinite; width: max-content; align-items: center; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.client-logo { height: 50px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .6; transition: .3s; flex-shrink: 0; }
.client-logo:hover { filter: grayscale(0); opacity: 1; }
.client-logo-placeholder { height: 50px; width: 120px; background: var(--light-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: var(--muted); flex-shrink: 0; text-align: center; padding: 8px; }

/* ── Blog Cards ──────────────────────────────────────────── */
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: .3s; height: 100%; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 220px; object-fit: cover; width: 100%; background: var(--light-bg); display: flex; align-items: center; justify-content: center; }
.blog-card-body { padding: 22px; }
.blog-cat-badge { background: rgba(0,82,204,.1); color: var(--brand); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; display: inline-block; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
.blog-card-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--brand); }
.blog-card-meta { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.blog-card-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; background: rgba(255,255,255,.05); border-radius: 50%; }
.cta-section::after { content: ''; position: absolute; left: -50px; bottom: -50px; width: 200px; height: 200px; background: rgba(255,255,255,.05); border-radius: 50%; }

/* ── Contact Form ────────────────────────────────────────── */
.contact-card { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.form-control, .form-select { border: 2px solid var(--border); border-radius: var(--radius); padding: 12px 16px; font-size: 14px; font-family: var(--font); transition: .2s; }
.form-control:focus, .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,82,204,.1); }
.form-label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }

/* ── Page Header ─────────────────────────────────────────── */
.page-header { background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%); padding: 80px 0 60px; position: relative; overflow: hidden; }
.page-header::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 40%; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='80' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") center/cover; }
.page-header-title { font-size: clamp(30px, 5vw, 46px); color: #fff; margin-bottom: 12px; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,.7); font-size: 14px; }
.breadcrumb-item.active { color: var(--brand-light); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Team Cards ──────────────────────────────────────────── */
.team-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); text-align: center; padding-bottom: 24px; transition: .3s; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-avatar-wrap { width: 90px; height: 90px; border-radius: 50%; margin: 24px auto 16px; overflow: hidden; border: 3px solid var(--brand-light); }
.team-avatar-img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; color: #fff; }
.team-name { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--brand); font-weight: 600; }

/* ── Service Detail ──────────────────────────────────────── */
.service-detail-content h2, .service-detail-content h3 { font-family: var(--font-serif); color: var(--dark); margin-top: 24px; margin-bottom: 12px; }
.service-detail-content ul { padding-left: 20px; }
.service-detail-content ul li { margin-bottom: 8px; font-size: 15px; color: var(--muted); }
.service-detail-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

/* ── Enquiry Sidebar ─────────────────────────────────────── */
.enquiry-sidebar { background: var(--light-bg); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); position: sticky; top: 90px; }
.enquiry-sidebar .form-control, .enquiry-sidebar .form-select { background: #fff; }

/* ── Graphics Design Page ────────────────────────────────── */
.design-service-card { background: #fff; border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--border); text-align: center; transition: .3s; }
.design-service-card:hover { border-color: var(--brand-light); transform: translateY(-4px); box-shadow: var(--shadow); }
.design-icon { width: 64px; height: 64px; background: rgba(0,82,204,.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 28px; color: var(--brand); transition: .3s; }
.design-service-card:hover .design-icon { background: var(--brand); color: #fff; }

/* ── Admin ───────────────────────────────────────────────── */
.admin-sidebar { width: 240px; min-height: 100vh; background: var(--dark); position: fixed; top: 0; left: 0; z-index: 100; }
.admin-main { margin-left: 240px; min-height: 100vh; background: var(--light-bg); }
.admin-nav-link { display: flex; align-items: center; gap: 10px; padding: 10px 20px; color: rgba(255,255,255,.7); font-size: 14px; transition: .2s; }
.admin-nav-link:hover, .admin-nav-link.active { color: #fff; background: rgba(0,82,204,.2); }
.admin-stat-card { background: #fff; border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); }

/* ── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; background: var(--brand); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; box-shadow: 0 8px 24px rgba(0,82,204,.3); transition: .3s; }
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); color: #fff; background: var(--brand-dark); }
.wa-tooltip { position: absolute; right: 70px; background: var(--dark); color: #fff; padding: 6px 14px; border-radius: 50px; font-size: 11px; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: .3s; box-shadow: var(--shadow); }
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── Back to Top ─────────────────────────────────────────── */
.back-to-top { position: fixed; bottom: 95px; right: 28px; width: 44px; height: 44px; background: var(--white); color: var(--brand); border: 1px solid var(--border); border-radius: 50%; font-size: 18px; cursor: pointer; z-index: 998; opacity: 0; transform: translateY(10px); transition: .3s; box-shadow: var(--shadow); }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.6); }
.footer-top { padding: 80px 0 60px; }
.footer-heading { font-family: var(--font-serif); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: 24px; position: relative; }
.footer-heading::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 2px; background: var(--brand); }
.footer-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.55); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: 14px; transition: .3s; display: inline-block; text-decoration: none; }
.footer-links a:hover { color: var(--brand-light); transform: translateX(5px); }
.footer-contact-list li { margin-bottom: 16px; align-items: flex-start; gap: 14px; }
.footer-contact-list i { color: var(--brand-light); font-size: 16px; margin-top: 3px; }
.footer-contact-list a { color: rgba(255,255,255,.6); text-decoration: none; transition: .2s; }
.footer-contact-list a:hover { color: #fff; }
.footer-hours { font-size: 13.5px; color: rgba(255,255,255,.5); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 24px 0; background: rgba(0,0,0,.15); }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 13px; }

/* ── Misc Utilities ──────────────────────────────────────── */
.bg-light-brand { background: rgba(0,82,204,.05); }
.text-brand { color: var(--brand) !important; }
.border-brand { border-color: var(--brand) !important; }
.rounded-brand { border-radius: var(--radius); }
.icon-box { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }

/* ── Animations ──────────────────────────────────────────── */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: .6s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 80px 0 60px; }
  .mega-menu { position: static; transform: none; width: 100%; border-top: none; }
  .hero-image-wrap { margin-top: 40px; }
  .admin-sidebar { width: 100%; position: static; min-height: auto; }
  .admin-main { margin-left: 0; }
}
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .hero-service-grid { grid-template-columns: 1fr 1fr; }
}
