/* ============================================================
   PhD PAINTING — Design System (mirrors live site)
   Brand Navy   #121749
   Brand Teal   #127194
   Hero Teal    #1a6b7c  (gradient mid)
   Dark Footer  #0d2535
   White        #ffffff
   Light Gray   #f4f4f4
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --navy:    #121749;
  --teal:    #127194;
  --teal-mid:#1a6b7c;
  --gold:    #C8A96E;
  --white:   #ffffff;
  --offwhite:#f8f9fa;
  --gray:    #e8e8e8;
  --muted:   #6b7280;
  --dark:    #1f2937;
  --footer:  #0d2535;
  --font-head: 'Raleway', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --max-w: 1200px;
  --trans: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.7; font-size: 15px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ── ANNOUNCEMENT BAR ─────────────────────────────── */
.announcement-bar {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 10px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
}
.announcement-bar a { color: var(--white); font-weight: 600; }
.announcement-bar__close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--white); font-size: 18px;
  cursor: pointer; line-height: 1; padding: 4px;
}

/* ── NAV ──────────────────────────────────────────── */
.nav {
  background: linear-gradient(180deg, var(--navy) 0%, var(--teal-mid) 100%);
  position: sticky; top: 0; z-index: 100;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 92px; gap: 16px;
}
.nav__logo img {
  height: 68px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links > a {
  color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; padding: 6px 10px; border-radius: 4px; transition: var(--trans);
}
.nav__links > a:hover, .nav__links > a.active { color: var(--white); background: rgba(255,255,255,0.12); }

.nav__dropdown { position: relative; }
.nav__dropdown-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500;
  font-family: var(--font-body); letter-spacing: 0.04em;
  padding: 6px 10px; border-radius: 4px; display: flex; align-items: center; gap: 4px; transition: var(--trans);
}
.nav__dropdown-btn:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.nav__dropdown-btn svg { width: 11px; opacity: 0.7; }
.nav__dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: 6px; min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15); overflow: hidden;
  border: 1px solid var(--gray);
}
.nav__dropdown-menu.open { display: block; }
.nav__dropdown-menu a {
  display: block; padding: 11px 18px; font-size: 13px; color: var(--dark);
  border-bottom: 1px solid var(--gray); transition: var(--trans);
}
.nav__dropdown-menu a:last-child { border-bottom: none; }
.nav__dropdown-menu a:hover { background: var(--offwhite); color: var(--teal); padding-left: 22px; }

.nav__cta {
  background: var(--white); color: var(--navy);
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 4px; white-space: nowrap;
  transition: var(--trans); flex-shrink: 0; border: 2px solid var(--white);
}
.nav__cta:hover { background: transparent; color: var(--white); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.nav__mobile { display: none; background: var(--navy); padding: 16px 24px 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.nav__mobile a { display: block; color: rgba(255,255,255,0.85); padding: 12px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav__mobile a:last-of-type { border: none; }
.nav__mobile .nav__cta { display: inline-block; margin-top: 16px; }

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.open { display: block; }
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(170deg, var(--navy) 0%, var(--teal) 55%, var(--teal-mid) 100%);
  min-height: 90vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('https://images.squarespace-cdn.com/content/v1/629e76d3f7728d43f6be40eb/021ec115-b514-43a4-9dea-f8ac59cf2595/DSC_0013.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.hero__content {
  position: relative; z-index: 1; text-align: center;
  padding: 80px 24px; max-width: 860px; margin: 0 auto;
}
.hero__content h1 {
  font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero__content h1 strong { font-weight: 700; display: block; }
.hero__content p {
  font-size: clamp(0.95rem, 2vw, 1.1rem); color: rgba(255,255,255,0.82);
  max-width: 620px; margin: 0 auto 40px; font-weight: 300; line-height: 1.8;
}
.hero__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 4px; border: 2px solid transparent;
  cursor: pointer; transition: var(--trans);
}
.btn--primary { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--primary:hover { background: transparent; color: var(--white); }
.btn--teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn--teal:hover { background: transparent; color: var(--teal); }
.btn--outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-white:hover { background: var(--white); color: var(--navy); }
.btn--outline-teal { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--outline-teal:hover { background: var(--teal); color: var(--white); }

/* ── SERVICES SECTION ─────────────────────────────── */
.services { padding: 80px 0; background: var(--white); }
.services h2 {
  text-align: center; font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600;
  color: var(--teal); margin-bottom: 48px;
}
.services__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.service-card { position: relative; border-radius: 6px; overflow: hidden; cursor: pointer; }
.service-card img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s ease; display: block; }
.service-card:hover img { transform: scale(1.05); }
.service-card__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(18,23,73,0.88) 0%, transparent 100%);
  padding: 24px 16px 16px;
}
.service-card__title {
  color: var(--white); font-family: var(--font-head); font-size: 1rem;
  font-weight: 600; margin-bottom: 10px; line-height: 1.3;
}
.service-card__btn {
  display: inline-block; background: var(--teal); color: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 3px; transition: var(--trans);
}
.service-card:hover .service-card__btn { background: var(--white); color: var(--navy); }

@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr 1fr; } }

/* ── YOUR VISION / OUR EXPERTISE ────────────────── */
.vision {
  background: linear-gradient(180deg, var(--teal) 0%, var(--navy) 100%);
  padding: 0;
}
.vision__inner {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
}
.vision__image { position: relative; overflow: hidden; }
.vision__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vision__text {
  padding: 72px 64px; display: flex; flex-direction: column; justify-content: center;
  color: var(--white);
}
.vision__text h2 {
  font-family: var(--font-head); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 28px; color: var(--white);
}
.vision__text h2 strong { font-weight: 700; display: block; }
.vision__text p {
  color: rgba(255,255,255,0.82); font-size: 14.5px; line-height: 1.85;
  margin-bottom: 16px; font-weight: 300;
}
@media (max-width: 768px) {
  .vision__inner { grid-template-columns: 1fr; }
  .vision__image { height: 300px; }
  .vision__text { padding: 48px 32px; }
}

/* ── REVIEWS ──────────────────────────────────────── */
.reviews {
  background: linear-gradient(180deg, var(--navy) 0%, var(--teal-mid) 100%);
  padding: 80px 0;
}
.reviews__widget-wrap {
  background: var(--white); border-radius: 12px; padding: 32px;
  max-width: 1060px; margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.reviews__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 16px;
}
.reviews__rating { display: flex; align-items: center; gap: 12px; }
.reviews__score { font-size: 2rem; font-weight: 700; color: var(--dark); }
.reviews__stars { color: #f59e0b; font-size: 1.3rem; letter-spacing: 2px; }
.reviews__count { font-size: 14px; color: var(--muted); }
.reviews__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.review-card { background: var(--offwhite); border-radius: 8px; padding: 20px; }
.review-card__author { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.review-card__avatar {
  width: 38px; height: 38px; border-radius: 50%; object-fit: cover;
  background: var(--teal); display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.review-card__name { font-weight: 600; font-size: 13px; color: var(--dark); }
.review-card__date { font-size: 11px; color: var(--muted); }
.review-card__stars { color: #f59e0b; font-size: 13px; margin-bottom: 8px; }
.review-card__text { font-size: 13px; color: var(--dark); line-height: 1.65; }
.reviews__cta { text-align: center; margin-top: 24px; }
@media (max-width: 800px) { .reviews__cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .reviews__cards { grid-template-columns: 1fr; } }

/* ── RECENT WORK / GALLERY ────────────────────────── */
/* ── GALLERY ──────────────────────────────────────── */
.gallery { padding: 80px 0; background: var(--offwhite); }
.gallery h2 {
  text-align: center; font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600; color: var(--teal); margin-bottom: 12px;
}
.gallery__subtitle { text-align: center; color: var(--muted); margin-bottom: 40px; font-size: 14px; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}
/* Portrait shots (items 1-3) span 2 rows for a masonry effect */
.gallery__item:nth-child(1),
.gallery__item:nth-child(2),
.gallery__item:nth-child(3) { grid-row: span 2; }
.gallery__item { border-radius: 6px; overflow: hidden; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease; display: block;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__social-note {
  text-align: center; margin-top: 24px; padding: 16px 20px;
  background: var(--white); border-radius: 8px; border: 1px solid var(--gray);
}
.gallery__social-note p { font-size: 13.5px; color: var(--muted); }
.gallery__social-note a { color: var(--teal); font-weight: 600; }
[class^="elfsight-app-"] { min-height: 80px; }
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 500px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
}

/* ── CONTACT SECTION ──────────────────────────────── */
.contact-section {
  background: linear-gradient(180deg, var(--teal-mid) 0%, var(--footer) 100%);
  padding: 80px 0;
}
.contact-section__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info h2 {
  font-family: var(--font-head); font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600; color: var(--white); margin-bottom: 8px;
}
.contact-info > p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 14px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.contact-detail__icon {
  width: 36px; height: 36px; background: rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white);
}
.contact-detail__label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-detail__val { font-size: 14px; color: var(--white); font-weight: 500; }
.contact-detail__val a { color: rgba(255,255,255,0.85); transition: var(--trans); }
.contact-detail__val a:hover { color: var(--white); }

/* Zoho CRM Web Form */
.zoho-form-wrap {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 36px;
}
.zoho-form-wrap h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--white); margin-bottom: 24px; font-weight: 600; }
.zoho-form-wrap .zf-templateWidth { width: 100% !important; }
.zoho-form-wrap .form-group label { color: rgba(255,255,255,0.85); }
.zoho-form-wrap .form-group input,
.zoho-form-wrap .form-group select,
.zoho-form-wrap .form-group textarea {
  background: rgba(255,255,255,0.9);
}
.zoho-form-wrap .form-check label { color: rgba(255,255,255,0.7); }
.zoho-form-wrap .form-captcha label { color: rgba(255,255,255,0.85); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--dark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group label .req { color: #e53e3e; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--gray); border-radius: 5px;
  font-family: var(--font-body); font-size: 14px; color: var(--dark);
  background: var(--white); transition: var(--trans);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(18,113,148,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.form-check input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-check label { font-size: 12px; color: var(--muted); text-transform: none; letter-spacing: 0; font-weight: 400; }
.form-check label a { color: var(--teal); font-weight: 600; }
.form-captcha { margin-bottom: 18px; }
.form-captcha label { font-size: 12px; font-weight: 600; color: var(--dark); display: block; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-captcha input { max-width: 180px; }
.form-captcha img { margin: 8px 0 4px; border: 1px solid var(--gray); border-radius: 4px; }
.form-captcha a { font-size: 12px; color: var(--teal); }
.form-actions { display: flex; gap: 12px; }
.form-actions input[type=submit] {
  background: var(--teal); color: var(--white); border: none;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 12px 28px;
  border-radius: 4px; cursor: pointer; transition: var(--trans);
}
.form-actions input[type=submit]:hover { background: var(--navy); }
.form-actions input[type=reset] {
  background: var(--gray); color: var(--dark); border: none;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  padding: 12px 20px; border-radius: 4px; cursor: pointer; transition: var(--trans);
}

@media (max-width: 760px) {
  .contact-section__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── PAGE HERO ────────────────────────────────────── */
.page-hero {
  background: linear-gradient(170deg, var(--navy) 0%, var(--teal) 100%);
  padding: 72px 0 56px; position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}
.page-hero h1 { font-family: var(--font-head); color: var(--white); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 560px; }

/* ── FAQ ──────────────────────────────────────────── */
.faq-section { padding: 80px 0; background: var(--white); }
.faq-section h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.4rem); color: var(--teal); text-align: center; margin-bottom: 48px; font-weight: 600; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 15px; gap: 16px;
  user-select: none; color: var(--dark); transition: color var(--trans);
}
.faq-question:hover { color: var(--teal); }
.faq-question svg { flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--teal); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 4px 0 20px; font-size: 14.5px; color: var(--muted); line-height: 1.75; }

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: var(--footer); color: var(--white); padding: 56px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__logo img {
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.footer__brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer__brand address { font-style: normal; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.9; margin-top: 14px; }
.footer__brand address a { color: rgba(255,255,255,0.5); transition: var(--trans); }
.footer__brand address a:hover { color: var(--white); }
.footer__col h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer__col p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.9; }
.footer__social { display: flex; gap: 10px; margin-top: 8px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--trans);
}
.footer__social a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.footer__bottom {
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer__bottom a { color: rgba(255,255,255,0.35); transition: var(--trans); }
.footer__bottom a:hover { color: var(--white); }
.license-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px;
  color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px; border-radius: 20px; margin-top: 12px;
}

@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer__bottom { flex-direction: column; text-align: center; } }

/* ── UTILITIES ────────────────────────────────────── */
.section { padding: 80px 0; }
.section--gray { background: var(--offwhite); }
.text-center { text-align: center; }
.section-title { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 600; color: var(--teal); margin-bottom: 12px; }
.section-sub { color: var(--muted); font-size: 14px; max-width: 560px; margin: 0 auto 40px; }

/* ── ABOUT ────────────────────────────────────────── */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-strip img { width: 100%; height: 400px; object-fit: cover; border-radius: 8px; }
.about-strip__text h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 600; color: var(--teal); margin-bottom: 20px; }
.about-strip__text p { font-size: 14.5px; color: var(--muted); margin-bottom: 14px; line-height: 1.8; }
@media (max-width: 700px) { .about-strip { grid-template-columns: 1fr; } }

/* ── REDUCED MOTION ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}


/* ── LIGHTBOX ─────────────────────────────────────── */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }
.lightbox-inner {
  position: relative; max-width: 92vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-inner img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  cursor: default;
}
.lightbox-close {
  position: fixed; top: 18px; right: 24px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 26px; line-height: 1; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 10000;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 22px; width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 10000;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.28); }
.lightbox-caption {
  position: fixed; bottom: 16px; left: 0; right: 0; text-align: center;
  color: rgba(255,255,255,0.65); font-size: 13px; padding: 0 80px;
}
.lightbox-counter {
  position: fixed; top: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 13px;
}
/* Clickable cursor on all gallery/service images */
.gallery__item img, .service-card img, .svc-gallery img,
.gallery-grid img, .about-strip img { cursor: zoom-in; }
