/* =====================================================================
   Laptop Repair Gurugram — main.css
   Colours come from CSS variables set inline by functions.php, based on
   Customizer > Theme Colours. Change them there, not here.
   ===================================================================== */

:root {
	--primary: #0d6e5f;
	--primary-dark: #094b41;
	--accent: #f59e0b;
	--ink: #14231f;
	--ink-muted: #5b6b67;
	--bg: #faf9f6;
	--surface: #ffffff;
	--border: #e6e3db;
	--radius: 14px;
	--shadow: 0 12px 28px rgba(13, 45, 38, 0.08);
	--font-head: "Space Grotesk", "Segoe UI", sans-serif;
	--font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--bg);
	line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.lrg-container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Buttons */
.lrg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	border: 2px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease;
}
.lrg-btn--primary { background: var(--accent); color: #241505; }
.lrg-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(245, 158, 11, .35); }
.lrg-btn--ghost { border-color: currentColor; }
.lrg-btn--block { width: 100%; }

/* Top bar */
.lrg-topbar { background: var(--primary-dark); color: #eaf3f0; font-size: .82rem; }
.lrg-topbar__row { display: flex; justify-content: space-between; gap: 16px; padding: 8px 24px; flex-wrap: wrap; }
.lrg-topbar__item { opacity: .95; }
a.lrg-topbar__item:hover { text-decoration: underline; }

/* Header */
.lrg-header { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 40; }
.lrg-header__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 24px; }
.lrg-brand { display: flex; align-items: center; gap: 12px; }
.lrg-brand__mark {
	width: 44px; height: 44px; border-radius: 12px;
	background: var(--primary); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-head); font-weight: 700; font-size: .95rem;
}
.lrg-brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.lrg-brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.lrg-brand__tag { font-size: .75rem; color: var(--ink-muted); }

.lrg-nav__list { display: flex; gap: 28px; }
.lrg-nav__list a { font-weight: 500; font-size: .95rem; color: var(--ink); }
.lrg-nav__list a:hover { color: var(--primary); }

.lrg-header__cta { display: flex; gap: 10px; }
.lrg-header__cta .lrg-btn { padding: 10px 18px; font-size: .88rem; }

.lrg-menu-toggle {
	display: none; flex-direction: column; gap: 5px;
	background: none; border: none; padding: 6px;
}
.lrg-menu-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Hero */
.lrg-hero { padding: 72px 0 56px; overflow: hidden; }
.lrg-hero__row { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.lrg-eyebrow {
	display: inline-block; font-size: .85rem; font-weight: 600;
	color: var(--primary); background: rgba(13, 110, 95, .08);
	padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.lrg-hero__copy h1 { font-size: clamp(2rem, 3.4vw, 3rem); color: var(--ink); max-width: 14ch; }
.lrg-hero__copy p { color: var(--ink-muted); font-size: 1.05rem; max-width: 46ch; }
.lrg-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 36px; }
.lrg-hero__stats { display: flex; gap: 32px; flex-wrap: wrap; }
.lrg-hero__stats strong { display: block; font-family: var(--font-head); font-size: 1.4rem; color: var(--primary); }
.lrg-hero__stats span { font-size: .82rem; color: var(--ink-muted); }

.lrg-hero__art { position: relative; height: 340px; }
.lrg-hero__card {
	position: absolute; display: flex; flex-direction: column; align-items: center; gap: 8px;
	width: 150px; padding: 22px 16px; background: var(--surface);
	border-radius: var(--radius); box-shadow: var(--shadow);
	font-size: 1.8rem; text-align: center;
}
.lrg-hero__card span { font-family: var(--font-head); font-size: .78rem; font-weight: 600; color: var(--ink); }
.lrg-hero__card--1 { top: 0; left: 10%; background: var(--primary); color: #fff; }
.lrg-hero__card--1 span { color: #fff; }
.lrg-hero__card--2 { top: 130px; left: 50%; }
.lrg-hero__card--3 { top: 30px; left: 68%; background: var(--accent); }
.lrg-hero__card--3 span { color: #241505; }

/* Feature strip */
.lrg-features { background: var(--primary); color: #fff; padding: 36px 0; }
.lrg-features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lrg-feature { display: flex; flex-direction: column; gap: 6px; }
.lrg-feature__icon { font-size: 1.6rem; }
.lrg-feature h3 { font-size: 1rem; margin-bottom: 2px; }
.lrg-feature p { font-size: .85rem; color: rgba(255,255,255,.82); margin: 0; }

/* Section head */
.lrg-section-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.lrg-section-head--left { text-align: left; margin: 0 0 20px; }
.lrg-section-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.lrg-section-head p { color: var(--ink-muted); margin: 0; }

/* Services */
.lrg-services { padding: 80px 0; }
.lrg-services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lrg-service-card {
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
	padding: 26px 22px; transition: box-shadow .2s ease, transform .2s ease;
}
.lrg-service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.lrg-service-card__icon { font-size: 1.7rem; display: block; margin-bottom: 10px; }
.lrg-service-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.lrg-service-card p { font-size: .88rem; color: var(--ink-muted); margin: 0; }

/* Testimonials */
.lrg-testimonials { padding: 70px 0; background: var(--surface); }
.lrg-testimonials__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lrg-testimonial-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.lrg-testimonial-card__stars { color: var(--accent); letter-spacing: 2px; font-size: .9rem; }
.lrg-testimonial-card p { font-size: .92rem; color: var(--ink); margin: 10px 0 16px; }
.lrg-testimonial-card__author { display: flex; align-items: center; gap: 10px; }
.lrg-testimonial-card__avatar {
	width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff;
	display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem;
}
.lrg-testimonial-card__author strong { display: block; font-size: .88rem; }
.lrg-testimonial-card__author small { color: var(--ink-muted); font-size: .78rem; }

/* Gallery */
.lrg-gallery { padding: 70px 0; }
.lrg-gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lrg-gallery__item { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--border); }
.lrg-gallery__item img { width: 100%; height: 180px; object-fit: cover; }
.lrg-gallery__placeholder {
	height: 180px; display: flex; align-items: center; justify-content: center;
	font-size: 2rem; background: linear-gradient(135deg, rgba(13,110,95,.12), rgba(245,158,11,.12));
}
.lrg-gallery__item figcaption { padding: 10px 14px; font-size: .85rem; font-weight: 500; }

/* About */
.lrg-about { padding: 70px 0; background: var(--surface); }
.lrg-about__row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.lrg-about__art { position: relative; height: 260px; border-radius: var(--radius); background: linear-gradient(160deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; }
.lrg-about__badge { background: #fff; padding: 22px 28px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.lrg-about__badge strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--primary); }
.lrg-about__badge span { font-size: .8rem; color: var(--ink-muted); }
.lrg-about__copy p { color: var(--ink-muted); }

/* Contact */
.lrg-contact { padding: 70px 0; }
.lrg-contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.lrg-contact__list li { margin-bottom: 14px; font-size: .95rem; }
.lrg-contact__list a:hover { color: var(--primary); }
.lrg-contact__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 10px; }
.lrg-contact__map iframe { width: 100%; height: 220px; border: 0; }

.lrg-contact__form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.lrg-contact__form-note { font-size: .82rem; color: var(--ink-muted); margin-bottom: 18px; }
.lrg-contact__form { display: flex; flex-direction: column; gap: 14px; }
.lrg-contact__form label { display: flex; flex-direction: column; gap: 6px; font-size: .85rem; font-weight: 600; }
.lrg-contact__form input, .lrg-contact__form select, .lrg-contact__form textarea {
	padding: 11px 12px; border-radius: 10px; border: 1px solid var(--border);
	font-family: inherit; font-size: .95rem; background: var(--bg);
}
.lrg-contact__form input:focus, .lrg-contact__form select:focus, .lrg-contact__form textarea:focus {
	outline: 2px solid var(--primary); outline-offset: 1px;
}
.lrg-contact__form-response { font-size: .88rem; font-weight: 600; min-height: 1.2em; }
.lrg-contact__form-response.is-success { color: var(--primary); }
.lrg-contact__form-response.is-error { color: #b3261e; }

/* FAQ */
.lrg-faq { padding: 70px 0 90px; }
.lrg-faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lrg-faq__item { border: 1px solid var(--border); border-radius: 12px; background: var(--surface); overflow: hidden; }
.lrg-faq__question {
	width: 100%; display: flex; justify-content: space-between; align-items: center;
	padding: 16px 20px; background: none; border: none; font-size: .98rem; font-weight: 600; text-align: left;
}
.lrg-faq__icon { font-size: 1.2rem; color: var(--primary); transition: transform .2s ease; }
.lrg-faq__item.is-open .lrg-faq__icon { transform: rotate(45deg); }
.lrg-faq__answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.lrg-faq__answer p { padding: 0 20px 18px; color: var(--ink-muted); margin: 0; }

/* Footer */
.lrg-footer { background: var(--ink); color: #d8e2df; padding: 56px 0 0; }
.lrg-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 40px; }
.lrg-footer__brand { color: #fff; font-size: 1.2rem; }
.lrg-footer__col h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.lrg-footer__col ul li { margin-bottom: 10px; font-size: .88rem; }
.lrg-footer__col a:hover { color: var(--accent); }
.lrg-footer__social { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.lrg-footer__social a { font-size: .82rem; border: 1px solid rgba(255,255,255,.25); padding: 6px 12px; border-radius: 999px; }
.lrg-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; }
.lrg-footer__bottom-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; }
.lrg-footer__bottom-row a { color: var(--accent); font-weight: 600; }

/* Floating WhatsApp button */
.lrg-fab {
	position: fixed; bottom: 22px; right: 22px; width: 56px; height: 56px; border-radius: 50%;
	background: #25d366; display: flex; align-items: center; justify-content: center;
	font-size: 1.5rem; box-shadow: 0 10px 24px rgba(0,0,0,.25); z-index: 50;
}

/* Generic fallback page content (index.php) */
.lrg-generic-content { padding: 60px 0; }
.lrg-generic-content article { margin-bottom: 32px; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 960px) {
	.lrg-hero__row, .lrg-about__row, .lrg-contact__row { grid-template-columns: 1fr; }
	.lrg-features__grid, .lrg-services__grid, .lrg-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
	.lrg-gallery__grid { grid-template-columns: repeat(2, 1fr); }
	.lrg-hero__art { height: 220px; margin-top: 20px; }
	.lrg-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 720px) {
	.lrg-topbar__row { justify-content: center; text-align: center; }
	.lrg-menu-toggle { display: flex; }
	.lrg-nav {
		position: absolute; top: 100%; left: 0; right: 0; background: var(--surface);
		border-bottom: 1px solid var(--border); max-height: 0; overflow: hidden; transition: max-height .25s ease;
	}
	.lrg-nav.is-open { max-height: 400px; }
	.lrg-nav__list { flex-direction: column; gap: 0; padding: 10px 24px 18px; }
	.lrg-nav__list li { border-top: 1px solid var(--border); }
	.lrg-nav__list a { display: block; padding: 12px 0; }
	.lrg-header__cta .lrg-btn--ghost { display: none; }
	.lrg-features__grid, .lrg-services__grid, .lrg-testimonials__grid, .lrg-gallery__grid { grid-template-columns: 1fr; }
	.lrg-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
	.lrg-footer__grid { grid-template-columns: 1fr; }
	.lrg-hero__art { display: none; }
}

/* =====================================================================
   Inner pages (services / locations / coming-soon)
   ===================================================================== */
.lrg-page-hero { padding: 60px 0 40px; text-align: center; }
.lrg-page-hero h1 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); max-width: 18ch; margin: 0 auto .4em; }
.lrg-page-hero p { color: var(--ink-muted); max-width: 56ch; margin: 0 auto; }
.lrg-page-hero .lrg-hero__cta { justify-content: center; margin-top: 22px; }
.lrg-page-hero__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }
.lrg-chip {
	font-size: .82rem; font-weight: 600; padding: 7px 16px; border-radius: 999px;
	background: rgba(13, 110, 95, .08); color: var(--primary);
}

.lrg-why { background: var(--primary); }
.lrg-why__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; padding: 18px 24px; }
.lrg-why__item { color: #fff; font-size: .9rem; font-weight: 500; }

.lrg-services--tight { padding-top: 50px; }
.lrg-service-card { position: relative; }
.lrg-service-card__tag {
	display: inline-block; margin-top: 10px; font-size: .72rem; font-weight: 700;
	color: var(--primary); background: rgba(13,110,95,.08); padding: 3px 10px; border-radius: 999px;
}

.lrg-who__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lrg-who__card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.lrg-who__card h3 { font-size: 1rem; margin-bottom: 8px; }
.lrg-who__card p { font-size: .9rem; color: var(--ink-muted); margin: 0; }

.lrg-process { padding: 70px 0; background: var(--surface); }
.lrg-process__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.lrg-process__step { text-align: center; padding: 0 10px; }
.lrg-process__num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: #fff;
	font-family: var(--font-head); font-weight: 700; margin-bottom: 12px;
}
.lrg-process__step h3 { font-size: 1rem; margin-bottom: 6px; }
.lrg-process__step p { font-size: .88rem; color: var(--ink-muted); margin: 0; }

.lrg-page-body { padding: 60px 0; }
.lrg-page-body__inner { max-width: 820px; }
.lrg-page-body h2 { font-size: 1.35rem; margin-top: 1.4em; }
.lrg-page-body p { color: var(--ink-muted); }
.lrg-page-body__list { padding-left: 20px; color: var(--ink-muted); }
.lrg-page-body__list li { list-style: disc; margin-bottom: 6px; }

.lrg-quickinfo { background: var(--primary-dark); color: #fff; padding: 40px 0; }
.lrg-quickinfo__row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.lrg-quickinfo h3 { margin-bottom: 10px; }
.lrg-quickinfo p { margin: 0 0 4px; font-size: .92rem; color: rgba(255,255,255,.9); }
.lrg-quickinfo a { color: #fff; text-decoration: underline; }
.lrg-quickinfo__cta { display: flex; gap: 12px; }

.lrg-coming-soon { padding: 100px 0; text-align: center; }
.lrg-coming-soon h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: .3em 0; }
.lrg-coming-soon p { max-width: 50ch; margin: 0 auto; color: var(--ink-muted); }
.lrg-coming-soon .lrg-hero__cta { justify-content: center; margin-top: 24px; }

@media (max-width: 900px) {
	.lrg-who__grid, .lrg-process__row { grid-template-columns: 1fr; }
	.lrg-quickinfo__row { flex-direction: column; align-items: flex-start; }
}

/* Popular service areas strip (homepage) */
.lrg-areas { padding: 20px 0 80px; }
.lrg-areas__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.lrg-areas__list a {
	font-size: .88rem; font-weight: 600; padding: 9px 18px; border-radius: 999px;
	border: 1px solid var(--border); color: var(--ink);
}
.lrg-areas__list a:hover { border-color: var(--primary); color: var(--primary); }
