/* ===========================
   EAZA ELEVATOR — Main Styles
   =========================== */
:root {
    --gold: #c9a227;
    --gold-light: #e8c84a;
    --dark: #0d1117;
    --dark2: #161d27;
    --text: #3a3a3a;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f5ef;
    --border: #e5e0d5;
    --red: #e74c3c;
    --green: #27ae60;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
    --radius: 6px;
    --font-head: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); font-size: 15px; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn-primary {
    display: inline-block; background: var(--gold); color: var(--dark);
    padding: 13px 32px; border-radius: var(--radius); font-weight: 600;
    font-family: var(--font-body); font-size: 15px; border: none; cursor: pointer;
    transition: all .3s; letter-spacing: .5px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,39,.35); color: var(--dark); }
.btn-outline {
    display: inline-block; border: 2px solid var(--gold); color: var(--gold);
    padding: 11px 30px; border-radius: var(--radius); font-weight: 600; font-size: 15px;
    transition: all .3s; cursor: pointer; background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-white {
    display: inline-block; background: var(--white); color: var(--dark);
    padding: 13px 32px; border-radius: var(--radius); font-weight: 700; font-size: 15px;
    transition: all .3s;
}
.btn-white:hover { background: var(--gold); color: var(--dark); }

/* Section Heads */
.section-tag { display: inline-block; color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: var(--font-head); font-size: clamp(26px,4vw,42px); color: var(--dark); line-height: 1.25; margin-bottom: 16px; }
.section-title span { color: var(--gold); }
.section-sub { color: var(--text-light); max-width: 580px; }
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin: 0 auto; }
.divider { width: 60px; height: 3px; background: var(--gold); margin: 16px 0 28px; border-radius: 2px; }
.divider-center { margin: 16px auto 28px; }
section { padding: 80px 0; }

/* ---- TOP BAR ---- */
.topbar { background: var(--dark); color: #bbb; font-size: 13px; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left a, .topbar-right a { color: #bbb; margin-right: 20px; transition: color .2s; }
.topbar-left a:hover, .topbar-right a:hover { color: var(--gold); }
.topbar-left a i, .topbar-right a i { margin-right: 6px; color: var(--gold); }
.topbar-right a { margin-right: 0; margin-left: 14px; }

/* ---- HEADER ---- */
.header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; gap: 20px; }
.logo img { height: 55px; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: block; padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--dark); border-radius: 4px; transition: all .2s; white-space: nowrap; }
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--gold); }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--white); min-width: 230px; box-shadow: var(--shadow-lg); border-top: 3px solid var(--gold); border-radius: 0 0 var(--radius) var(--radius); z-index: 999; }
.dropdown li a { display: block; padding: 10px 18px; font-size: 13.5px; color: var(--text); border-bottom: 1px solid var(--border); transition: all .2s; }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--light-bg); color: var(--gold); padding-left: 24px; }
.has-dropdown:hover .dropdown { display: block; }
.btn-enquiry { background: var(--gold); color: var(--dark); padding: 10px 22px; border-radius: var(--radius); font-weight: 700; font-size: 14px; white-space: nowrap; transition: all .3s; }
.btn-enquiry:hover { background: var(--gold-light); color: var(--dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all .3s; border-radius: 2px; }

/* ---- HERO SLIDER ---- */
.hero { position: relative; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s; }
.hero-slide.active { opacity: 1; position: relative; }
.hero-slide img { width: 100%; height: 560px; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,17,23,.75) 40%, rgba(13,17,23,.2)); display: flex; align-items: center; }
.hero-content { padding: 40px; max-width: 600px; }
.hero-content .tag { color: var(--gold); font-size: 13px; letter-spacing: 3px; font-weight: 600; text-transform: uppercase; margin-bottom: 16px; }
.hero-content h1 { font-family: var(--font-head); font-size: clamp(32px,5vw,56px); color: var(--white); line-height: 1.15; margin-bottom: 18px; }
.hero-content h1 span { color: var(--gold); }
.hero-content p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 28px; max-width: 460px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-nav { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.hero-dot { width: 10px; height: 10px; background: rgba(255,255,255,.4); border-radius: 50%; cursor: pointer; transition: all .3s; border: none; }
.hero-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }
.hero-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 16px; z-index: 10; pointer-events: none; }
.hero-arrows button { pointer-events: all; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 16px; transition: all .3s; backdrop-filter: blur(4px); }
.hero-arrows button:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--dark); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 32px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 40px; color: var(--gold); font-weight: 700; line-height: 1; }
.stat-label { color: #aaa; font-size: 13px; margin-top: 6px; letter-spacing: 1px; }

/* ---- ABOUT SECTION ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 440px; object-fit: cover; border-radius: 8px; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--dark); padding: 24px 28px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-lg); }
.about-badge .num { font-family: var(--font-head); font-size: 40px; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-text .features { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.feat-row { display: flex; align-items: flex-start; gap: 14px; }
.feat-icon { width: 42px; height: 42px; background: var(--light-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px; flex-shrink: 0; }
.feat-text strong { display: block; font-size: 14px; color: var(--dark); }
.feat-text span { font-size: 13.5px; color: var(--text-light); }

/* ---- SERVICES ---- */
.services-section { background: var(--light-bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.service-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); transition: all .35s; border-bottom: 3px solid transparent; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }
.service-card-img { overflow: hidden; }
.service-card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-body { padding: 22px; }
.service-num { font-family: var(--font-head); font-size: 36px; color: var(--border); font-weight: 700; line-height: 1; }
.service-card-body h3 { font-size: 16px; font-weight: 600; color: var(--dark); margin: 6px 0 10px; }
.service-card-body p { font-size: 13.5px; color: var(--text-light); margin-bottom: 16px; }
.service-link { color: var(--gold); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.service-link i { transition: transform .2s; }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ---- WHY CHOOSE US ---- */
.why-section { background: var(--dark); color: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-img img { width: 100%; height: 400px; object-fit: cover; border-radius: 8px; }
.why-text .section-title { color: var(--white); }
.why-items { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.why-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); padding: 22px; border-radius: var(--radius); transition: all .3s; }
.why-item:hover { background: rgba(201,162,39,.1); border-color: rgba(201,162,39,.3); }
.why-item i { font-size: 26px; color: var(--gold); margin-bottom: 10px; display: block; }
.why-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--white); }
.why-item p { font-size: 13px; color: #aaa; }

/* ---- CTA BANNER ---- */
.cta-banner { background: var(--gold); padding: 56px 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.cta-inner h2 { font-family: var(--font-head); font-size: 30px; color: var(--dark); }
.cta-inner p { color: rgba(13,17,23,.7); margin-top: 6px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-dark { display: inline-block; background: var(--dark); color: var(--white); padding: 13px 30px; border-radius: var(--radius); font-weight: 600; font-size: 15px; transition: all .3s; }
.btn-dark:hover { background: #1a2330; color: var(--white); transform: translateY(-2px); }

/* ---- PROJECTS ---- */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.project-card { position: relative; overflow: hidden; border-radius: 8px; }
.project-card img { width: 100%; height: 260px; object-fit: cover; transition: transform .5s; }
.project-card:hover img { transform: scale(1.08); }
.project-overlay { position: absolute; inset: 0; background: rgba(13,17,23,.5); opacity: 0; transition: opacity .35s; display: flex; align-items: center; justify-content: center; }
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay a { width: 50px; height: 50px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dark); font-size: 20px; transition: transform .3s; }
.project-overlay a:hover { transform: scale(1.15); }

/* ---- ENQUIRY SECTION ---- */
.enquiry-section { background: var(--light-bg); }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.enquiry-info h3 { font-family: var(--font-head); font-size: 28px; color: var(--dark); margin-bottom: 16px; }
.enquiry-info p { color: var(--text-light); margin-bottom: 24px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 46px; height: 46px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dark); font-size: 16px; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 14px; color: var(--dark); }
.contact-detail span, .contact-detail a { font-size: 13.5px; color: var(--text-light); }
.enquiry-form { background: var(--white); padding: 36px; border-radius: 8px; box-shadow: var(--shadow); }
.enquiry-form h3 { font-family: var(--font-head); font-size: 22px; color: var(--dark); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
    border-radius: var(--radius); font-family: var(--font-body); font-size: 14px;
    color: var(--text); background: var(--white); transition: border-color .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.alert { padding: 12px 18px; border-radius: var(--radius); margin-bottom: 16px; font-size: 14px; font-weight: 500; }
.alert-success { background: #eafaf1; color: var(--green); border: 1px solid #a9dfbf; }
.alert-error { background: #fdedec; color: var(--red); border: 1px solid #f1948a; }

/* ---- PAGE BANNER ---- */
.page-banner { background: var(--dark2); padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.page-banner::before { content:''; position:absolute; inset:0; background: url('https://eazaelevator.co.in/default/1720432734.jpg') center/cover; opacity:.15; }
.page-banner .container { position: relative; }
.page-banner h1 { font-family: var(--font-head); color: var(--white); font-size: clamp(28px,4vw,44px); }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 10px; font-size: 13px; color: #aaa; }
.breadcrumb a { color: var(--gold); }

/* ---- GALLERY ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; cursor: pointer; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(201,162,39,.6); opacity: 0; transition: .3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 28px; }

/* ---- SERVICE DETAIL ---- */
.service-detail { padding: 80px 0; }
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.service-content img { width: 100%; height: 360px; object-fit: cover; border-radius: 8px; margin-bottom: 28px; }
.service-content h2 { font-family: var(--font-head); font-size: 32px; color: var(--dark); margin-bottom: 16px; }
.service-content p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.service-content ul { margin: 16px 0 24px 0; padding-left: 0; }
.service-content ul li { padding: 8px 0; padding-left: 24px; position: relative; color: var(--text); font-size: 14.5px; border-bottom: 1px dashed var(--border); }
.service-content ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--gold); font-size: 12px; top: 10px; }
.service-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--light-bg); border-radius: 8px; padding: 24px; }
.sidebar-card h4 { font-family: var(--font-head); font-size: 18px; color: var(--dark); margin-bottom: 14px; border-bottom: 2px solid var(--gold); padding-bottom: 10px; }
.sidebar-service-list li a { display: block; padding: 10px 14px; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--border); transition: all .2s; border-radius: 4px; }
.sidebar-service-list li a:hover, .sidebar-service-list li a.active { background: var(--gold); color: var(--dark); font-weight: 600; padding-left: 20px; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.map-wrap { margin-top: 60px; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 380px; border: none; }

/* ---- ABOUT PAGE ---- */
.about-full { padding: 80px 0; }
.about-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-full-grid img { width: 100%; height: 420px; object-fit: cover; border-radius: 8px; }
.exp-banner { background: var(--gold); padding: 48px 0; }
.exp-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.exp-stat { text-align: center; color: var(--dark); }
.exp-stat .num { font-family: var(--font-head); font-size: 48px; font-weight: 700; line-height: 1; }
.exp-stat .lbl { font-size: 14px; font-weight: 600; margin-top: 4px; }

/* ---- FOOTER ---- */
.footer { background: var(--dark2); color: #aaa; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { margin-bottom: 16px; filter: brightness(0) invert(1) opacity(.9); }
.footer-about p { font-size: 13.5px; color: #888; line-height: 1.8; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 14px; transition: all .3s; }
.footer-socials a:hover { background: var(--gold); color: var(--dark); }
.footer-col h4 { color: var(--white); font-size: 16px; font-weight: 600; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid rgba(201,162,39,.3); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #888; font-size: 13.5px; transition: all .2s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a i { color: var(--gold); font-size: 12px; }
.contact-list li { display: flex; gap: 12px; font-size: 13.5px; color: #888; margin-bottom: 12px; line-height: 1.6; }
.contact-list li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.contact-list a { color: #888; }
.contact-list a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: #666; }

/* ---- FLOATING BUTTONS ---- */
.float-btn { position: fixed; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; z-index: 999; box-shadow: 0 4px 16px rgba(0,0,0,.25); transition: all .3s; }
.float-call { bottom: 160px; right: 18px; background: #0ea5e9; color: var(--white); }
.float-wa { bottom: 105px; right: 18px; background: #25d366; color: var(--white); }
.float-top { bottom: 50px; right: 18px; background: var(--gold); color: var(--dark); opacity: 0; pointer-events: none; }
.float-top.visible { opacity: 1; pointer-events: all; }
.float-btn:hover { transform: scale(1.12); color: var(--white); }
.float-call:hover { color: var(--white); }

/* ---- MODAL ---- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(3px); }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--white); border-radius: 10px; padding: 36px; max-width: 460px; width: 90%; position: relative; transform: scale(.92); transition: transform .3s; box-shadow: var(--shadow-lg); }
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 24px; cursor: pointer; color: #999; line-height: 1; }
.modal-close:hover { color: var(--red); }
.modal-box h3 { font-family: var(--font-head); font-size: 22px; color: var(--dark); margin-bottom: 6px; }
.modal-box p { color: var(--text-light); font-size: 13.5px; margin-bottom: 20px; }
.modal-form input, .modal-form select, .modal-form textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 14px; margin-bottom: 12px; outline: none; transition: border-color .2s; }
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus { border-color: var(--gold); }
.modal-form button { width: 100%; }

/* ---- ADMIN ---- */
.admin-login { min-height: 100vh; background: var(--dark); display: flex; align-items: center; justify-content: center; }
.login-card { background: var(--white); border-radius: 10px; padding: 44px; width: 380px; max-width: 95vw; box-shadow: var(--shadow-lg); }
.login-card h2 { font-family: var(--font-head); font-size: 26px; color: var(--dark); margin-bottom: 6px; }
.login-card p { color: var(--text-light); font-size: 13.5px; margin-bottom: 24px; }
.admin-wrap { display: flex; min-height: 100vh; background: #f2f4f7; font-family: var(--font-body); }
.admin-sidebar { width: 240px; background: var(--dark); min-height: 100vh; flex-shrink: 0; padding-top: 20px; }
.admin-logo { padding: 16px 24px 24px; border-bottom: 1px solid rgba(255,255,255,.06); }
.admin-logo img { filter: brightness(0) invert(1) opacity(.9); height: 40px; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 13px 24px; color: #aaa; font-size: 14px; transition: all .2s; border-left: 3px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { color: var(--white); background: rgba(255,255,255,.05); border-left-color: var(--gold); }
.admin-nav a i { width: 18px; text-align: center; }
.admin-main { flex: 1; overflow: auto; }
.admin-topbar { background: var(--white); padding: 14px 28px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 1px 6px rgba(0,0,0,.06); }
.admin-topbar h1 { font-size: 18px; color: var(--dark); font-family: var(--font-head); }
.admin-content { padding: 28px; }
.stats-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.stat-card { background: var(--white); border-radius: 8px; padding: 22px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px; }
.stat-card-icon { width: 50px; height: 50px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.stat-card-icon.gold { background: rgba(201,162,39,.15); color: var(--gold); }
.stat-card-icon.blue { background: rgba(14,165,233,.15); color: #0ea5e9; }
.stat-card-icon.green { background: rgba(39,174,96,.15); color: var(--green); }
.stat-card-icon.red { background: rgba(231,76,60,.15); color: var(--red); }
.stat-card h3 { font-size: 28px; font-weight: 700; color: var(--dark); line-height: 1; }
.stat-card p { font-size: 12px; color: var(--text-light); margin-top: 3px; }
.data-table-wrap { background: var(--white); border-radius: 8px; box-shadow: var(--shadow); padding: 24px; }
.data-table-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }
.data-table-header h3 { font-family: var(--font-head); font-size: 18px; color: var(--dark); }
.data-table-header .filters { display: flex; gap: 10px; flex-wrap: wrap; }
.data-table-header select, .data-table-header input { padding: 7px 12px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 13px; outline: none; }
table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
th { background: var(--light-bg); padding: 11px 14px; text-align: left; font-weight: 600; color: var(--dark); font-size: 12.5px; text-transform: uppercase; letter-spacing: .5px; }
td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:hover td { background: #fafafa; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11.5px; font-weight: 600; }
.badge-new { background: #e3f2fd; color: #1565c0; }
.badge-contacted { background: #fff3e0; color: #e65100; }
.badge-closed { background: #e8f5e9; color: #2e7d32; }
.action-btn { padding: 5px 12px; border-radius: 4px; font-size: 12px; border: none; cursor: pointer; font-family: var(--font-body); font-weight: 600; }
.btn-view { background: var(--gold); color: var(--dark); }
.btn-delete { background: var(--red); color: var(--white); margin-left: 4px; }
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 20px; }
.pagination a { padding: 6px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 13px; color: var(--text); }
.pagination a.active, .pagination a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* Responsive */
@media(max-width: 992px) {
    .about-grid, .why-grid, .enquiry-grid, .contact-grid, .about-full-grid, .service-detail-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-cards { grid-template-columns: repeat(2, 1fr); }
    .admin-sidebar { display: none; }
    .about-badge { right: 10px; }
}
@media(max-width: 768px) {
    .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow); padding: 16px; }
    .nav.open { display: block; }
    .nav-list { flex-direction: column; gap: 0; }
    .nav-list > li > a { padding: 12px 0; border-bottom: 1px solid var(--border); }
    .dropdown { display: none; position: static; box-shadow: none; border: none; padding-left: 16px; }
    .has-dropdown.open .dropdown { display: block; }
    .hamburger { display: flex; }
    .btn-enquiry { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-slide img { height: 380px; }
    .hero-content h1 { font-size: 28px; }
    .services-grid, .projects-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .why-items { grid-template-columns: 1fr; }
    .cta-inner { text-align: center; justify-content: center; }
}
@media(max-width: 480px) {
    .services-grid, .projects-grid, .gallery-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
