/* ============================================
   Affordable HVAC Pros — Main Stylesheet
   ============================================ */
:root {
  --navy: #0B1D3A;
  --navy-light: #132B52;
  --blue: #1A6FB5;
  --blue-bright: #2196F3;
  --sky: #E8F4FD;
  --orange: #E8632B;
  --orange-light: #F47D47;
  --white: #FFFFFF;
  --gray-50: #F8FAFB;
  --gray-100: #EEF2F5;
  --gray-200: #D9E0E7;
  --gray-400: #8D9BAA;
  --gray-600: #5A6A7A;
  --gray-800: #2D3A47;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(11,29,58,0.08);
  --shadow-md: 0 4px 16px rgba(11,29,58,0.1);
  --shadow-lg: 0 8px 32px rgba(11,29,58,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-800); line-height: 1.6; overflow-x: hidden; background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }
img { max-width: 100%; }

/* ===== TOP BAR ===== */
.topbar { background: var(--navy); color: var(--white); font-size: 0.85rem; padding: 10px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--orange-light); }
.topbar-left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.precision-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); padding: 4px 12px;
  border-radius: 100px; font-size: 0.78rem; letter-spacing: 0.02em;
}
.precision-badge a { color: var(--orange-light); font-weight: 500; }

/* ===== NAV ===== */
.navbar { background: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--gray-100); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo-group { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.navbar-logo { height: 72px; width: auto; display: block; object-fit: contain; transition: transform 0.25s ease; }
.logo-group:hover .navbar-logo { transform: scale(1.05); }
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 2px 8px rgba(26,111,181,0.3);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand { font-family: var(--font-display); font-size: 1.45rem; color: var(--navy); letter-spacing: -0.01em; }
.logo-text .tagline { font-size: 0.7rem; color: var(--gray-400); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; margin-top: 2px; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--gray-600); font-size: 0.9rem; font-weight: 500; padding: 8px 16px; border-radius: 8px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--gray-50); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange) !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 100px !important;
  font-weight: 600 !important; font-size: 0.88rem !important;
  box-shadow: 0 2px 12px rgba(232,99,43,0.3); transition: all 0.25s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 6px 0; border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 580px; display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue) 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; padding: 80px 0; animation: fadeInUp 0.8s ease-out; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15); padding: 8px 18px;
  border-radius: 100px; font-size: 0.82rem; color: rgba(255,255,255,0.9); margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem,5vw,4rem); color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--orange-light); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.7; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px;
  border-radius: 100px; font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: all 0.25s;
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 16px rgba(232,99,43,0.35); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.hero-stats { display: flex; gap: 48px; margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat .number { font-family: var(--font-display); font-size: 2.2rem; color: var(--white); line-height: 1; }
.hero-stat .label { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== EMERGENCY BAR ===== */
.emergency-bar { background: var(--blue); color: var(--white); padding: 18px 0; }
.emergency-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; text-align: center; }
.emergency-inner span { font-weight: 600; font-size: 1rem; }
.emergency-inner a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--navy); padding: 8px 24px;
  border-radius: 100px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: all 0.2s;
}
.emergency-inner a:hover { transform: scale(1.03); }
.emergency-inner .hours { font-size: 0.85rem; opacity: 0.8; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-100); padding: 20px 0; }
.trust-items { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 500; color: var(--gray-600); }
.trust-item svg { flex-shrink: 0; color: var(--blue); }

/* ===== SECTION STYLES ===== */
.section { padding: 96px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; color: var(--blue); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem,3.5vw,2.8rem); color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 36px 28px; transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before { content:''; position: absolute; top:0;left:0;right:0; height:3px; background: linear-gradient(90deg,var(--blue),var(--orange)); opacity:0; transition: opacity 0.3s; }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; background: var(--sky); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--blue); transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--blue); color: var(--white); }
.service-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* ===== WHY US ===== */
.why-section { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.why-section::before { content:''; position:absolute;top:-200px;right:-200px;width:600px;height:600px;background:radial-gradient(circle,rgba(26,111,181,0.25),transparent 70%); }
.why-section .section-label { color: var(--orange-light); }
.why-section .section-title { color: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px;
  background: rgba(255,255,255,0.05); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06); transition: all 0.25s;
}
.why-item:hover { background: rgba(255,255,255,0.08); transform: translateX(4px); }
.why-check {
  width: 32px; height: 32px; min-width: 32px;
  background: rgba(232,99,43,0.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--orange-light);
}
.why-item-text h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.why-item-text p { font-size: 0.84rem; color: rgba(255,255,255,0.55); }
.why-copy h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 20px; line-height: 1.2; }
.why-copy p { color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 16px; }
.why-copy a { color: var(--orange-light); }

/* ===== ABOUT ===== */
.about-section { background: var(--gray-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-content h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); margin-bottom: 16px; margin-top: 32px; }
.about-content h3:first-child { margin-top: 0; }
.about-content p { color: var(--gray-600); line-height: 1.75; margin-bottom: 12px; }
.about-content a { color: var(--blue); font-weight: 500; }
.about-sidebar { position: sticky; top: 100px; }
.about-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); }
.about-card .precision-link {
  display: flex; align-items: center; gap: 12px;
  background: var(--sky); padding: 16px 20px; border-radius: var(--radius);
  text-decoration: none; transition: all 0.25s; margin-top: 24px;
}
.about-card .precision-link:hover { background: #d4ebfa; transform: translateY(-2px); }
.about-card .pl-icon { width:40px;height:40px;min-width:40px;background:var(--blue);border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--white); }
.about-card .pl-text { font-size: 0.88rem; color: var(--navy); }
.about-card .pl-text strong { display: block; font-weight: 600; }
.about-card .pl-text span { font-size: 0.8rem; color: var(--gray-400); }
.guarantee-box { background: linear-gradient(135deg,var(--navy),var(--navy-light)); color:var(--white); border-radius:var(--radius-lg); padding:36px; margin-top:24px; }
.guarantee-box h4 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; }
.guarantee-box p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.65; }
.guarantee-box a { color: var(--orange-light); font-weight: 600; }

/* ===== SERVICE AREA ===== */
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }
.area-tag { background:var(--sky);color:var(--navy);padding:10px 24px;border-radius:100px;font-size:0.92rem;font-weight:500;border:1px solid transparent;transition:all 0.2s; }
.area-tag:hover { border-color: var(--blue); background: var(--white); }
.area-tag.primary { background: var(--blue); color: var(--white); }

/* ===== CONTACT FORM ===== */
.contact-section { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 16px; }
.contact-info > p { color: var(--gray-600); line-height: 1.75; margin-bottom: 28px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail-icon { width:48px;height:48px;min-width:48px;background:var(--sky);border-radius:12px;display:flex;align-items:center;justify-content:center;color:var(--blue); }
.contact-detail-text { font-size: 0.92rem; }
.contact-detail-text .label { font-size:0.78rem;text-transform:uppercase;letter-spacing:0.08em;font-weight:600;color:var(--gray-400);margin-bottom:2px; }
.contact-detail-text a { color: var(--navy); text-decoration: none; font-weight: 500; }
.contact-detail-text a:hover { color: var(--blue); }
.contact-detail-text p { margin: 0; color: var(--navy); font-weight: 500; }
.contact-hours { margin-top:28px;padding:24px;background:linear-gradient(135deg,var(--navy),var(--navy-light));border-radius:var(--radius);color:var(--white); }
.contact-hours h4 { font-size:0.95rem;margin-bottom:8px;display:flex;align-items:center;gap:8px; }
.contact-hours p { font-size:0.85rem;color:rgba(255,255,255,0.7);margin:0; }
.contact-precision-link {
  display:flex;align-items:center;gap:12px;background:var(--sky);padding:16px 20px;
  border-radius:var(--radius);text-decoration:none;transition:all 0.25s;margin-top:24px;
}
.contact-precision-link:hover { background:#d4ebfa;transform:translateY(-2px); }
.contact-precision-link .pl-icon { width:40px;height:40px;min-width:40px;background:var(--blue);border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--white); }
.contact-precision-link .pl-text { font-size:0.88rem;color:var(--navy); }
.contact-precision-link .pl-text strong { display:block;font-weight:600; }
.contact-precision-link .pl-text span { font-size:0.8rem;color:var(--gray-400); }
.contact-form-card { background:var(--white);border-radius:var(--radius-lg);padding:44px;box-shadow:var(--shadow-md);border:1px solid var(--gray-100); }
.contact-form-card h3 { font-family:var(--font-display);font-size:1.5rem;color:var(--navy);margin-bottom:8px; }
.contact-form-card > p { color:var(--gray-600);font-size:0.9rem;margin-bottom:28px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group textarea {
  width:100%;padding:14px 18px;border:1.5px solid var(--gray-200);border-radius:10px;
  font-family:var(--font-body);font-size:0.92rem;color:var(--gray-800);background:var(--white);transition:all 0.2s;outline:none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus, .form-group textarea:focus { border-color:var(--blue);box-shadow:0 0 0 3px rgba(26,111,181,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.captcha-container { display:flex;align-items:center;gap:12px;margin-bottom:20px;flex-wrap:wrap; }
.captcha-container label { font-size:0.85rem;color:var(--gray-600);width:100%;margin-bottom:4px; }
.captcha-img { height:48px;border-radius:8px;border:1.5px solid var(--gray-200);cursor:pointer;transition:opacity 0.2s; }
.captcha-img:hover { opacity: 0.8; }
.captcha-input {
  padding:12px 16px;border:1.5px solid var(--gray-200);border-radius:10px;font-family:var(--font-body);
  font-size:0.92rem;color:var(--gray-800);outline:none;width:180px;transition:all 0.2s;
}
.captcha-input:focus { border-color:var(--blue);box-shadow:0 0 0 3px rgba(26,111,181,0.1); }
.submit-btn {
  display:inline-flex;align-items:center;gap:8px;padding:16px 40px;background:var(--orange);
  color:var(--white);border:none;border-radius:100px;font-family:var(--font-body);
  font-size:0.95rem;font-weight:600;cursor:pointer;box-shadow:0 4px 16px rgba(232,99,43,0.3);
  transition:all 0.25s;text-transform:uppercase;letter-spacing:0.04em;
}
.submit-btn:hover { background:var(--orange-light);transform:translateY(-2px);box-shadow:0 6px 24px rgba(232,99,43,0.4); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue) 100%);
  padding: 64px 0; position: relative; overflow: hidden;
}
.page-hero::before { content:'';position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,0.04)1px,transparent 1px);background-size:32px 32px; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero-content { text-align: center; }
.page-hero h1 { font-family:var(--font-display);font-size:clamp(2.2rem,4vw,3rem);color:var(--white);margin-bottom:12px; }
.page-hero p { font-size:1.1rem;color:rgba(255,255,255,0.7);max-width:540px;margin:0 auto; }
.breadcrumb { display:flex;justify-content:center;gap:8px;margin-bottom:20px;font-size:0.85rem; }
.breadcrumb a { color:rgba(255,255,255,0.5);text-decoration:none; }
.breadcrumb a:hover { color:rgba(255,255,255,0.8); }
.breadcrumb span { color:rgba(255,255,255,0.3); }
.breadcrumb .current { color:rgba(255,255,255,0.8); }

/* ===== CTA BANNER ===== */
.cta-banner { background:linear-gradient(135deg,var(--orange),#D14E18);padding:72px 0;text-align:center;position:relative;overflow:hidden; }
.cta-banner::before { content:'';position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,0.08)1px,transparent 1px);background-size:24px 24px; }
.cta-banner h2 { font-family:var(--font-display);font-size:clamp(2rem,4vw,2.8rem);color:var(--white);margin-bottom:12px; }
.cta-banner p { font-size:1.1rem;color:rgba(255,255,255,0.85);margin-bottom:32px; }
.cta-phone {
  display:inline-flex;align-items:center;gap:12px;background:var(--white);color:var(--navy);
  padding:16px 36px;border-radius:100px;font-size:1.35rem;font-weight:700;text-decoration:none;
  box-shadow:0 4px 24px rgba(0,0,0,0.15);transition:all 0.25s;font-family:var(--font-body);
}
.cta-phone:hover { transform:translateY(-3px);box-shadow:0 8px 32px rgba(0,0,0,0.2); }
.cta-sub { font-size:0.85rem;color:rgba(255,255,255,0.7);margin-top:16px; }

/* ===== FOOTER ===== */
.footer { background:var(--navy);color:rgba(255,255,255,0.7);padding:72px 0 0; }
.footer-grid { display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:48px; }
.footer-brand .logo-group { margin-bottom:16px; }
.footer-brand .logo-text .brand { color:var(--white); }
.footer-brand .logo-text .tagline { color:rgba(255,255,255,0.4); }
.footer-brand p { font-size:0.88rem;line-height:1.7;margin-bottom:20px; }
.footer-brand .precision-parent {
  display:inline-flex;align-items:center;gap:8px;padding:10px 18px;
  background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.08);
  border-radius:10px;font-size:0.82rem;color:rgba(255,255,255,0.7);text-decoration:none;transition:all 0.2s;
}
.footer-brand .precision-parent:hover { background:rgba(255,255,255,0.1);color:var(--white); }
.footer-col h4 { color:var(--white);font-size:0.85rem;text-transform:uppercase;letter-spacing:0.08em;margin-bottom:20px;font-weight:600; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:10px; }
.footer-col a { color:rgba(255,255,255,0.6);text-decoration:none;font-size:0.9rem;transition:color 0.2s; }
.footer-col a:hover { color:var(--orange-light); }
.footer-col .contact-line { display:flex;align-items:center;gap:8px;margin-bottom:12px;font-size:0.9rem; }
.footer-col .contact-line svg { flex-shrink:0;color:var(--blue-bright); }
.footer-bottom {
  margin-top:48px;padding:24px 0;border-top:1px solid rgba(255,255,255,0.08);
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;
  font-size:0.82rem;color:rgba(255,255,255,0.4);
}
.footer-bottom a { color:rgba(255,255,255,0.6);text-decoration:none; }
.footer-bottom .cards { display:flex;gap:8px;align-items:center; }
.footer-bottom .card-badge { background:rgba(255,255,255,0.08);padding:4px 10px;border-radius:4px;font-size:0.72rem;font-weight:600;letter-spacing:0.04em;color:rgba(255,255,255,0.5); }

/* ===== SERVICES PAGE ===== */
.service-detail { margin-bottom: 32px; }
.service-detail h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.service-detail p { color: var(--gray-600); line-height: 1.75; }
.services-page-content ul { padding-left: 20px; margin: 16px 0; }
.services-page-content li { margin-bottom: 8px; color: var(--gray-600); }

/* ===== ABOUT PAGE ===== */
.about-page-content h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin: 28px 0 12px; }
.about-page-content p { color: var(--gray-600); line-height: 1.75; margin-bottom: 12px; }
.about-page-content a { color: var(--blue); }
.about-page-content ul { list-style: none; padding: 0; margin: 16px 0; }
.about-page-content li {
  padding: 12px 16px; margin-bottom: 8px; background: var(--sky);
  border-radius: 8px; font-weight: 500; color: var(--navy); font-size: 0.92rem;
  display: flex; align-items: center; gap: 10px;
}
.about-page-content li::before { content: '✓'; color: var(--blue); font-weight: 700; }
.about-page-content li a { color: var(--blue); text-decoration: none; }

/* ===== ADMIN STYLES ===== */
.admin-section { padding: 40px 0 80px; background: var(--gray-50); min-height: 80vh; }
.admin-card { background:var(--white);border-radius:var(--radius-lg);padding:32px;box-shadow:var(--shadow-md);border:1px solid var(--gray-100);margin-bottom:24px; }
.admin-card h3 { font-family:var(--font-display);font-size:1.4rem;color:var(--navy);margin-bottom:20px; }
.admin-table { width:100%;border-collapse:collapse;font-size:0.88rem; }
.admin-table th { background:var(--navy);color:var(--white);padding:12px 16px;text-align:left;font-weight:600;font-size:0.8rem;text-transform:uppercase;letter-spacing:0.04em; }
.admin-table td { padding:12px 16px;border-bottom:1px solid var(--gray-100); }
.admin-table tr:hover td { background:var(--gray-50); }
.admin-table a { color:var(--blue);text-decoration:none; }
.admin-table .btn-sm {
  padding:6px 14px;border-radius:6px;font-size:0.78rem;font-weight:600;border:none;cursor:pointer;transition:all 0.2s;
}
.btn-view { background:var(--sky);color:var(--blue); }
.btn-view:hover { background:var(--blue);color:var(--white); }
.btn-delete { background:#FEE2E2;color:#DC2626; }
.btn-delete:hover { background:#DC2626;color:var(--white); }
.status-dot { width:10px;height:10px;border-radius:50%;display:inline-block;margin-right:8px; }
.status-dot.green { background:#22C55E; }
.status-dot.red { background:#EF4444; }

/* Admin form */
.admin-select {
  width:100%;padding:12px 16px;border:1.5px solid var(--gray-200);border-radius:10px;
  font-family:var(--font-body);font-size:0.92rem;background:var(--white);color:var(--gray-800);outline:none;
}
.admin-select:focus { border-color:var(--blue); }
.admin-btn { padding:12px 28px;background:var(--blue);color:var(--white);border:none;border-radius:100px;font-family:var(--font-body);font-size:0.9rem;font-weight:600;cursor:pointer;transition:all 0.2s; }
.admin-btn:hover { background:var(--navy); }

/* Modal */
.modal-overlay { display:none;position:fixed;inset:0;background:rgba(0,0,0,0.5);z-index:1000;align-items:center;justify-content:center; }
.modal-overlay.active { display:flex; }
.modal-box { background:var(--white);border-radius:var(--radius-lg);padding:32px;max-width:600px;width:90%;max-height:80vh;overflow-y:auto;box-shadow:var(--shadow-lg); }
.modal-box h4 { font-family:var(--font-display);font-size:1.3rem;margin-bottom:16px;color:var(--navy); }
.modal-box p { color:var(--gray-600);line-height:1.7; }
.modal-close { background:var(--gray-200);color:var(--gray-800);border:none;padding:8px 20px;border-radius:8px;cursor:pointer;margin-top:16px;font-weight:500; }

/* Login page */
.login-section { min-height:100vh;display:flex;align-items:center;justify-content:center;background:var(--gray-50); }
.login-card { background:var(--white);padding:48px;border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);width:100%;max-width:420px; }
.login-card h2 { font-family:var(--font-display);font-size:1.8rem;color:var(--navy);text-align:center;margin-bottom:8px; }
.login-card .login-sub { text-align:center;color:var(--gray-400);font-size:0.88rem;margin-bottom:32px; }
.login-card .form-group input { margin-bottom:0; }

/* ===== ALERT ===== */
.alert { padding:16px 20px;border-radius:10px;margin:20px auto;max-width:1200px;font-size:0.9rem;font-weight:500; }
.alert-success { background:#DCFCE7;color:#166534;border:1px solid #BBF7D0; }
.alert-error { background:#FEE2E2;color:#991B1B;border:1px solid #FECACA; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity:0;transform:translateY(24px);transition:opacity 0.6s ease-out,transform 0.6s ease-out; }
.fade-in.visible { opacity:1;transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:768px) {
  .topbar-inner { justify-content:center;text-align:center; }
  .nav-links { display:none; }
  .mobile-toggle { display:block; }
  .nav-links.open {
    display:flex;flex-direction:column;position:absolute;top:68px;left:0;right:0;
    background:var(--white);padding:20px;box-shadow:var(--shadow-lg);border-top:1px solid var(--gray-100);z-index:99;
  }
  .navbar-logo { height: 52px; }
  .services-grid { grid-template-columns:1fr; }
  .hero-stats { gap:24px;flex-wrap:wrap; }
  .hero-content { padding:48px 0; }
  .section { padding:64px 0; }
  .footer-grid { grid-template-columns:1fr;gap:32px; }
  .form-row { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
}