*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Areas section */
.areas-section { padding: 60px 0; background: var(--light); }
.areas-section h2 { font-family: 'Josefin Sans', sans-serif; font-size: 26px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--dark); margin-bottom: 12px; }
.areas-section p { color: #555; margin-bottom: 28px; max-width: 650px; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.area-link { display: block; padding: 10px 14px; background: #fff; border: 1px solid #dde0f0; border-bottom: 3px solid var(--blue); font-family: 'Josefin Sans', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--dark); text-align: center; transition: background .15s, color .15s, transform .15s; }
.area-link:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; font-size: 16px; color: #1a1a2e; background: #fff; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --blue:   #3467aa;
  --yellow: #ffdd00;
  --dark:   #1a1a2e;
  --light:  #f2f3f8;
  --navy:   #162a52;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 30px; }

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.top-bar { background: var(--blue); padding: 9px 0; color: #fff; font-size: 13px; }
.top-bar .wrap { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.top-item { display: flex; align-items: center; gap: 8px; }
.top-item svg { color: var(--yellow); flex-shrink: 0; }
.top-item a { color: #fff; }
.top-item a:hover { opacity: .8; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 4px 0; }
.logo-area { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { width: 90px; height: 90px; flex-shrink: 0; object-fit: contain; }
.logo-text { font-family: 'Josefin Sans', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--dark); line-height: 1.2; }
nav ul { display: flex; align-items: center; }
nav ul li a { font-family: 'Josefin Sans', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 8px 11px; color: var(--dark); transition: color .2s; }
nav ul li a:hover { color: var(--blue); }
nav ul li a.active { color: var(--blue); border-bottom: 2px solid var(--blue); }
nav ul li a.btn-nav { background: var(--yellow); color: var(--dark); padding: 14px 22px; margin-left: 8px; }
nav ul li a.btn-nav:hover { background: #e6c700; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { width: 25px; height: 2px; background: var(--dark); border-radius: 2px; }
.mobile-nav { display: none; flex-direction: column; background: #fff; padding: 12px 0; border-top: 1px solid #eee; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Josefin Sans', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; padding: 12px 20px; border-bottom: 1px solid #f0f0f0; color: var(--dark); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero { background: #e8eaf2; position: relative; overflow: visible; padding: 80px 0 0; text-align: center; }
.hero::before { content: ''; position: absolute; right: -50px; top: -30px; width: 50%; height: 140%; background: #d4d6e2; transform: skewX(-10deg); z-index: 0; }
.hero::after  { content: ''; position: absolute; right: 90px;  top: -30px; width: 38%; height: 140%; background: #dcdee8; transform: skewX(-10deg); z-index: 0; }
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { font-family: 'Josefin Sans', sans-serif; font-size: 56px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--dark); line-height: 1.1; margin-bottom: 20px; }
.hero-line { width: 64px; height: 4px; background: var(--yellow); border: none; margin: 0 auto 30px; }
.hero p { font-size: 16px; line-height: 1.8; color: #333; max-width: 760px; margin: 0 auto 38px; }
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.btn-outline { display: inline-flex; align-items: center; gap: 9px; font-family: 'Josefin Sans', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 13px 26px; background: #fff; border: 2px solid var(--blue); color: var(--blue); box-shadow: 4px 4px 0 var(--yellow); transition: background .2s, color .2s; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.hero-car { position: relative; z-index: 10; display: flex; justify-content: center; margin-bottom: -100px; }
.hero-car img { width: 760px; max-width: 95%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25)); }

/* ══════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════ */
.features { background: var(--blue); position: relative; z-index: 1; padding: 120px 0 56px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feat { color: #fff; }
.feat-icon { width: 66px; height: 66px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feat h3 { font-family: 'Josefin Sans', sans-serif; font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.feat p { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.7; }

/* ══════════════════════════════════════
   ABOUT US
══════════════════════════════════════ */
.about { background: var(--light); overflow: hidden; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 460px; }
.about-text { padding: 70px 60px 70px calc(max(30px, (100vw - 1200px) / 2 + 30px)); display: flex; flex-direction: column; justify-content: center; }
.about-text h2 { font-family: 'Josefin Sans', sans-serif; font-size: 42px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--dark); margin-bottom: 24px; }
.about-text p { font-size: 17px; font-weight: 700; line-height: 1.8; color: var(--dark); }
.about-photo { position: relative; overflow: hidden; min-height: 400px; }
.about-photo img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.photo-placeholder { width: 100%; height: 100%; min-height: 380px; background: linear-gradient(160deg, #111 0%, #333 60%, #555 100%); display: flex; align-items: center; justify-content: center; }

/* ══════════════════════════════════════
   INSTAGRAM
══════════════════════════════════════ */
.instagram { overflow: hidden; }
.instagram-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.ig-left { background: var(--blue); padding: 60px 50px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.ig-left::after { content: ''; position: absolute; right: -30px; top: 0; width: 70px; height: 100%; background: var(--light); transform: skewX(-5deg); }
.ig-left h2 { font-family: 'Josefin Sans', sans-serif; font-size: 36px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: #fff; margin-bottom: 18px; line-height: 1.1; position: relative; z-index: 1; }
.ig-line { width: 50px; height: 4px; background: var(--yellow); border: none; margin-bottom: 22px; position: relative; z-index: 1; }
.ig-left p { font-size: 15px; color: rgba(255,255,255,.88); line-height: 1.75; margin-bottom: 28px; max-width: 440px; position: relative; z-index: 1; }
.ig-left .btn-outline { position: relative; z-index: 1; width: fit-content; border-color: #fff; color: var(--dark); background: #fff; }
.ig-left .btn-outline:hover { background: var(--yellow); border-color: var(--yellow); }
.ig-right { background: var(--light); display: flex; align-items: center; justify-content: center; padding: 30px 30px 30px 50px; }
.ig-card { background: #fff; border-radius: 10px; width: 100%; max-width: 500px; box-shadow: 0 6px 24px rgba(0,0,0,.1); overflow: hidden; font-family: -apple-system, sans-serif; }
.ig-card-head { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-bottom: 1px solid #efefef; }
.ig-avatar-wrap { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(45deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); padding: 2px; flex-shrink: 0; }
.ig-avatar-inner { width: 100%; height: 100%; border-radius: 50%; background: #3467aa; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 9px; font-weight: 700; text-align: center; line-height: 1.2; object-fit: cover; }
.ig-meta { flex: 1; }
.ig-name { font-size: 13px; font-weight: 700; color: #1a1a1a; }
.ig-bizname { font-size: 11px; color: #666; margin-bottom: 3px; }
.ig-stats { display: flex; gap: 16px; font-size: 11px; color: #333; }
.ig-stats span b { display: block; font-size: 13px; font-weight: 700; }
.ig-bio { padding: 8px 16px 10px; font-size: 11.5px; color: #444; line-height: 1.55; border-bottom: 1px solid #efefef; }
.ig-follow-btn { margin: 8px 16px 10px; background: #0095f6; color: #fff; text-align: center; padding: 7px; border-radius: 6px; font-size: 13px; font-weight: 700; }
.ig-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.ig-post { aspect-ratio: 1; overflow: hidden; }
.ig-post-1 { background: linear-gradient(135deg, #1a2e6a 0%, #3467aa 100%); display: flex; align-items: center; justify-content: center; }
.ig-post-2 { background: linear-gradient(135deg, #2a2a2a 0%, #555 100%); }
.ig-post-3 { background: linear-gradient(135deg, #1a3a5a 0%, #2a5a8a 100%); }
.ig-post-4 { background: linear-gradient(135deg, #3a3a3a 0%, #666 100%); }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services { background: var(--light); padding: 70px 0 60px; }
.svc-top { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 20px; margin-bottom: 50px; }
.svc-top h2 { font-family: 'Josefin Sans', sans-serif; font-size: 44px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--dark); margin-bottom: 14px; }
.yellow-line { width: 50px; height: 4px; background: var(--yellow); border: none; margin-bottom: 20px; }
.svc-top p { font-size: 16px; color: #444; line-height: 1.7; max-width: 700px; }
.mechanic-hero { width: 220px; flex-shrink: 0; margin-top: -20px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 50px; margin-bottom: 40px; }
.svc-item { display: block; text-decoration: none; padding: 24px 20px; border-radius: 4px; background: #fff; border: 1px solid #dde0f0; border-bottom: 3px solid var(--blue); transition: box-shadow .2s, transform .15s, border-color .2s; }
.svc-item:hover { box-shadow: 0 6px 24px rgba(52,103,170,.15); transform: translateY(-4px); border-bottom-color: var(--yellow); }
.svc-icon-wrap { width: 52px; height: 52px; margin-bottom: 14px; color: var(--blue); display: block; object-fit: contain; }
.svc-item h3 { font-family: 'Josefin Sans', sans-serif; font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--dark); margin-bottom: 8px; line-height: 1.25; }
.svc-item p { font-size: 15px; color: #555; line-height: 1.65; }
.svc-footer { display: flex; justify-content: flex-end; gap: 16px; align-items: center; }
.btn-enquire { display: inline-flex; align-items: center; gap: 10px; font-family: 'Josefin Sans', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 12px 26px; background: #fff; border: 2px solid var(--blue); color: var(--blue); box-shadow: 4px 4px 0 var(--yellow); transition: background .2s, color .2s; }
.btn-enquire:hover { background: var(--blue); color: #fff; }
.svc-all-link { font-family: 'Josefin Sans', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); }
.svc-all-link:hover { color: var(--navy); }

/* ══════════════════════════════════════
   NEED AUTO SERVICES (CTA)
══════════════════════════════════════ */
.cta { display: grid; grid-template-columns: 5fr 7fr; min-height: 400px; overflow: hidden; }
.cta-left { background: var(--blue); padding: 64px 60px; display: flex; flex-direction: column; justify-content: center; }
.cta-left h2 { font-family: 'Josefin Sans', sans-serif; font-size: 40px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: #fff; margin-bottom: 18px; line-height: 1.1; }
.cta-line { width: 50px; height: 4px; background: var(--yellow); border: none; margin-bottom: 22px; }
.cta-left p { font-size: 16px; color: rgba(255,255,255,.88); line-height: 1.75; margin-bottom: 32px; max-width: 440px; }
.cta-left .btn-outline { border-color: #fff; color: var(--dark); background: #fff; width: fit-content; }
.cta-left .btn-outline:hover { background: var(--yellow); border-color: var(--yellow); }
.cta-right { overflow: hidden; min-height: 400px; position: relative; }
.cta-right::after { content: none; }
.cta-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; position: absolute; top: 0; left: 0; }
.cta-wheel { opacity: .55; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq { background: linear-gradient(rgba(20,35,70,.82), rgba(20,35,70,.82)), url('') center/cover no-repeat; background-color: #1a2e55; padding: 70px 0; }
.faq h2 { font-family: 'Josefin Sans', sans-serif; font-size: 32px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #fff; text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { background: #fff; border-bottom: 1px solid #e0e0e0; }
.faq-item:first-child { border-radius: 4px 4px 0 0; }
.faq-item:last-child  { border-radius: 0 0 4px 4px; border-bottom: none; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; cursor: pointer; font-size: 16px; font-weight: 500; color: var(--dark); user-select: none; }
.faq-q:hover { background: #fafafa; }
.faq-toggle { font-size: 22px; font-weight: 300; color: var(--dark); flex-shrink: 0; line-height: 1; transition: transform .25s; }
.faq-a { display: none; padding: 0 24px 18px; font-size: 15px; color: #444; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact { padding: 70px 0 0; background: #fff; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form-col h2, .contact-form-col h3 { font-family: 'Josefin Sans', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--dark); margin-bottom: 6px; }
.contact-form-col .sub { font-size: 15px; color: #666; margin-bottom: 24px; }
.form-field { margin-bottom: 16px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #d0d4dc; border-radius: 0;
  font-family: 'Jost', sans-serif; font-size: 15px; color: var(--dark);
  background: #fff; outline: none; transition: border-color .2s;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--blue); }
.form-field textarea { height: 120px; resize: vertical; }
.btn-send { display: inline-flex; align-items: center; gap: 8px; font-family: 'Josefin Sans', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 13px 28px; background: #fff; border: 2px solid var(--navy); color: var(--navy); box-shadow: 4px 4px 0 var(--yellow); cursor: pointer; transition: background .2s, color .2s; }
.btn-send:hover { background: var(--navy); color: #fff; }
.form-yellow-bar { height: 4px; background: var(--yellow); margin-top: 20px; }
.contact-info-col h2 { font-family: 'Josefin Sans', sans-serif; font-size: 40px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--dark); margin-bottom: 14px; }
.contact-info-col hr { width: 50px; height: 4px; background: var(--yellow); border: none; margin-bottom: 28px; }
.contact-detail-block { margin-bottom: 24px; }
.contact-detail-block h4 { font-family: 'Josefin Sans', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.contact-detail-block p { font-size: 15px; color: #444; line-height: 1.6; }
.contact-detail-block a { color: var(--blue); }
.contact-map { margin-top: 0; line-height: 0; }
.contact-map iframe { width: 100%; height: 380px; border: none; display: block; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--blue); color: #fff; }
.footer-main { padding: 54px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.1fr 1fr 1fr; gap: 40px; }
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-svg { width: 80px; height: 80px; flex-shrink: 0; object-fit: contain; }
.footer-logo-text { font-family: 'Josefin Sans', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #fff; line-height: 1.25; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.75; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 18px; }
.footer-socials a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer-socials a:hover { color: var(--yellow); }
.footer-col h4 { font-family: 'Josefin Sans', sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #fff; margin-bottom: 20px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-ci { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.55; }
.footer-ci b { color: #fff; }
.footer-ci a { color: var(--yellow); }
.footer-svc-list { display: flex; flex-direction: column; gap: 9px; }
.footer-svc-list li { font-size: 14px; color: rgba(255,255,255,.85); }
.footer-inner { display: flex; gap: 40px; padding: 44px 0; flex-wrap: wrap; }
.footer-inner .footer-col { flex: 1; min-width: 160px; }
.footer-inner .footer-col h4 { font-family: 'Josefin Sans', sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #fff; margin-bottom: 16px; }
.footer-inner .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-inner .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.85); text-decoration: none; }
.footer-inner .footer-col ul li a:hover { color: var(--yellow); }
.footer-inner .footer-col p { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.7; margin: 0 0 8px; }
.footer-inner .footer-col p a { color: var(--yellow); }
.footer-bottom { background: #162a52; padding: 15px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); }
.footer-bottom-inner a { color: var(--yellow); }

/* Areas page grid */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.area-card { background: #fff; border: 1px solid #e4e6ea; border-radius: 8px; padding: 22px 20px; }
.area-card h3 { font-family: 'Josefin Sans', sans-serif; font-size: 16px; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 14px; }
.area-card h3 a { color: var(--blue); text-decoration: none; }
.area-card h3 a:hover { color: var(--yellow); }
.area-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.area-card ul li a { font-size: 13px; color: #555; text-decoration: none; }
.area-card ul li a:hover { color: var(--blue); }
.area-card--featured { border-color: var(--blue); border-width: 2px; }
.area-card--featured h3 a { color: var(--blue); }

/* ══════════════════════════════════════
   SCROLL TOP
══════════════════════════════════════ */
#scrollTop { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--blue); color: #fff; border: none; border-radius: 6px; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,.2); z-index: 999; }
#scrollTop.visible { display: flex; }
#scrollTop:hover { background: var(--navy); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .features-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-inner { grid-template-columns: 1fr; }
  .instagram-inner { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
  .cta-right { min-height: 240px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .svc-top { grid-template-columns: 1fr; }
  .mechanic-hero { display: none; }
}
@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 34px; }
  .hero::before, .hero::after { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .top-bar .wrap { gap: 12px; }
}

/* ══════════════════════════════════════
   PAGE BANNER (inner pages)
══════════════════════════════════════ */
.page-banner { background: var(--navy); padding: 70px 0; text-align: center; }
.page-banner h1 { font-family: 'Josefin Sans', sans-serif; font-size: 46px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: #fff; margin-bottom: 16px; }
.page-banner hr { width: 50px; height: 4px; background: var(--yellow); border: none; margin: 0 auto 20px; }
.page-banner p { font-size: 16px; color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* Breadcrumb */
.breadcrumb { background: var(--light); padding: 11px 0; font-size: 13px; color: #888; border-bottom: 1px solid #e5e5e8; }
.breadcrumb a { color: var(--blue); }
.breadcrumb span { margin: 0 6px; }

/* ══════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════ */
.blog-section { padding: 70px 0; background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: #fff; border: 1px solid #e5e8f0; overflow: hidden; transition: box-shadow .2s; }
.blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.blog-card-img { height: 190px; background: var(--light); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-img-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.blog-card-body { padding: 24px 22px; }
.blog-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); background: rgba(52,103,170,.1); padding: 3px 10px; border-radius: 2px; margin-bottom: 10px; }
.blog-card-body h3 { font-family: 'Josefin Sans', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.blog-card-body p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 16px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #aaa; padding-top: 14px; border-top: 1px solid #f0f0f2; }
.blog-read-more { font-family: 'Josefin Sans', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--blue); }
.blog-read-more:hover { color: var(--navy); }

/* ══════════════════════════════════════
   SERVICES FULL PAGE
══════════════════════════════════════ */
.services-full { padding: 70px 0; background: var(--light); }
.svc-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card { background: #fff; padding: 32px 26px 28px; border-bottom: 4px solid var(--yellow); display: flex; flex-direction: column; transition: box-shadow .2s, transform .15s; text-decoration: none; color: inherit; cursor: pointer; }
.svc-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
.svc-card-icon { width: 52px; height: 52px; margin-bottom: 16px; color: var(--blue); }
.svc-card h3 { font-family: 'Josefin Sans', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.svc-card p { font-size: 14px; color: #555; line-height: 1.7; flex: 1; }
.svc-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: 'Josefin Sans', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); text-decoration: none; }
.svc-card-link:hover { color: var(--dark); }

/* ══════════════════════════════════════
   ABOUT FULL PAGE
══════════════════════════════════════ */
.about-full { background: var(--light); overflow: hidden; }
.about-full-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 520px; }
.about-full-text { padding: 70px 60px 70px calc(max(30px, (100vw - 1200px) / 2 + 30px)); display: flex; flex-direction: column; justify-content: center; }
.about-full-text h2 { font-family: 'Josefin Sans', sans-serif; font-size: 42px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--dark); margin-bottom: 24px; }
.about-full-text p { font-size: 17px; font-weight: 700; line-height: 1.8; color: var(--dark); margin-bottom: 24px; }
.about-checklist { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
.about-checklist li { font-size: 16px; color: #444; display: flex; align-items: center; gap: 12px; }
.about-checklist li::before { content: ''; display: inline-flex; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--blue); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 16px; background-repeat: no-repeat; background-position: center; }
.about-full-photo { position: relative; overflow: hidden; min-height: 400px; }
.about-full-photo img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.value-item { background: #fff; padding: 22px 20px; border-left: 4px solid var(--yellow); }
.value-item h4 { font-family: 'Josefin Sans', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--dark); margin-bottom: 8px; }
.value-item p { font-size: 14px; color: #666; line-height: 1.6; }

/* ══════════════════════════════════════
   CONTACT FULL PAGE
══════════════════════════════════════ */
.contact-full { padding: 70px 0; background: #fff; }
.contact-full-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

/* Responsive - inner pages */
@media (max-width: 960px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .svc-full-grid { grid-template-columns: 1fr 1fr; }
  .about-full-inner { grid-template-columns: 1fr; }
  .contact-full-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; }
  .svc-full-grid { grid-template-columns: 1fr; }
  .page-banner h1 { font-size: 30px; }
}

/* SERVICE DETAIL PAGES */
.breadcrumb-bar { background: var(--light); border-bottom: 1px solid #dde0ea; padding: 10px 0; }
.breadcrumb-bar .breadcrumb { font-size: 13px; color: #666; }
.breadcrumb-bar .breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb-bar .breadcrumb a:hover { text-decoration: underline; }
.page-hero { background: var(--dark); padding: 50px 0 40px; }
.page-hero h1 { font-family: 'Josefin Sans', sans-serif; font-size: 44px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: #fff; margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.8); }
.svc-detail { padding: 70px 0; background: var(--light); }
.svc-detail-inner { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.svc-detail-text h2 { font-family: 'Josefin Sans', sans-serif; font-size: 28px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 20px; }
.svc-detail-text h3 { font-family: 'Josefin Sans', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin: 32px 0 16px; }
.svc-detail-text p { font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 16px; }
.svc-contact-box { background: #fff; border: 2px solid var(--blue); padding: 28px; position: sticky; top: 20px; }
.svc-contact-box h3 { font-family: 'Josefin Sans', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; }
.svc-contact-box p { font-size: 15px; color: #555; line-height: 1.6; margin-bottom: 16px; }
.faq-section { margin-top: 60px; padding-top: 40px; border-top: 2px solid #e0e0e0; }
.faq-section h2 { font-family: 'Josefin Sans', sans-serif; font-size: 28px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 32px; }
.faq-section .faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-section .faq-item { background: #fff; border-bottom: 1px solid #e8e8e8; border-left: 4px solid var(--yellow); border-radius: 0; }
.faq-section .faq-item:first-child { border-radius: 4px 4px 0 0; }
.faq-section .faq-item:last-child { border-radius: 0 0 4px 4px; border-bottom: none; }
.faq-section .faq-item h3 { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-family: 'Josefin Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .03em; user-select: none; margin: 0; }
.faq-section .faq-item h3:hover { background: #fafafa; }
.faq-section .faq-item h3::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--blue); flex-shrink: 0; line-height: 1; transition: transform .25s; }
.faq-section .faq-item.open h3::after { transform: rotate(45deg); }
.faq-section .faq-item p { display: none; padding: 0 24px 20px; font-size: 15px; color: #444; line-height: 1.7; margin: 0; }
.faq-section .faq-item.open p { display: block; }
.related-services { margin-top: 60px; padding-top: 40px; border-top: 2px solid #e0e0e0; }
.related-services h2 { font-family: 'Josefin Sans', sans-serif; font-size: 28px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { background: #fff; padding: 20px; border-top: 3px solid var(--blue); text-decoration: none; transition: box-shadow .2s; }
.related-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.related-card h4 { font-family: 'Josefin Sans', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.related-card p { font-size: 13px; color: #666; line-height: 1.5; margin: 0; }
@media (max-width: 900px) { .svc-detail-inner { grid-template-columns: 1fr; } .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } .page-hero h1 { font-size: 30px; } }

/* ══════════════════════════════════════
   FORM LABELS & SELECT
══════════════════════════════════════ */
.form-label { display: block; font-family: 'Josefin Sans', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--dark); margin-bottom: 6px; }
.form-req { color: var(--blue); }
.form-select { width: 100%; padding: 12px 14px; border: 1px solid #d0d4dc; border-radius: 0; font-family: 'Jost', sans-serif; font-size: 15px; color: var(--dark); background: #fff; outline: none; transition: border-color .2s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233467aa' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-select:focus { border-color: var(--blue); }

/* Blog card title */
.blog-card-title { font-family: 'Josefin Sans', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }

/* ══════════════════════════════════════
   ABOUT FULL - Mobile responsive fix
══════════════════════════════════════ */
@media (max-width: 768px) {
  .about-full-inner { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   SOCIAL PROOF / REVIEWS
══════════════════════════════════════ */
.reviews-section { background: var(--light); padding: 70px 0; }
.reviews-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 48px; }
.reviews-rating-block { display: flex; align-items: center; gap: 16px; }
.reviews-stars { font-size: 28px; color: #f5a623; letter-spacing: 2px; line-height: 1; }
.reviews-meta { font-size: 15px; color: #555; margin-top: 4px; }
.reviews-meta strong { color: var(--dark); font-size: 18px; }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.review-card { background: #fff; padding: 28px 24px; border-radius: 4px; border-top: 3px solid var(--yellow); box-shadow: 0 2px 12px rgba(0,0,0,.06); display: flex; flex-direction: column; gap: 16px; }
.review-stars { font-size: 18px; color: #f5a623; letter-spacing: 1px; }
.review-text { font-size: 15px; color: #444; line-height: 1.7; flex: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Josefin Sans', sans-serif; font-size: 16px; font-weight: 700; flex-shrink: 0; }
.review-author strong { display: block; font-size: 14px; color: var(--dark); }
.review-author span { font-size: 13px; color: #888; }
@media (max-width: 960px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .reviews-grid { grid-template-columns: 1fr; } .reviews-header { flex-direction: column; align-items: flex-start; } }
