:root {
  --ink: #0b1012;
  --ink-2: #12191c;
  --ink-3: #1b2427;
  --paper: #f7f8f6;
  --white: #ffffff;
  --muted: #697377;
  --line: #dfe4e1;
  --green: #9fbd57;
  --green-deep: #76943c;
  --gold: #e0ad38;
  --gold-light: #f3ce73;
  --radius: 18px;
  --shadow: 0 20px 55px rgba(10, 15, 17, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -80px; padding: 10px 14px; background: var(--gold); color: #111; border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(9, 14, 16, .92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 205px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: #dfe4e2; font-size: .94rem; font-weight: 700; position: relative; padding: 26px 0; }
.main-nav a::after { content: ""; position: absolute; left: 50%; bottom: 16px; width: 0; height: 2px; background: var(--green); transform: translateX(-50%); transition: width .25s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-phone { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-light); border: 1px solid rgba(224,173,56,.72); border-radius: 11px; padding: 10px 16px; font-weight: 800; white-space: nowrap; }
.header-phone:hover { background: var(--gold); color: #111; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 21px; height: 2px; background: white; border-radius: 2px; transition: .25s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: 720px; display: grid; align-items: center; position: relative; isolation: isolate; background: var(--ink); overflow: hidden; padding-top: 78px; }
.hero-media { position: absolute; inset: 0 0 0 35%; z-index: -3; background: url('../img/hero-fotoselli.webp') center/cover no-repeat; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.28)); }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, #0a1012 0%, rgba(10,16,18,.98) 31%, rgba(10,16,18,.78) 48%, rgba(10,16,18,.12) 72%, rgba(10,16,18,.05) 100%); }
.hero::before { content: ""; position: absolute; z-index: -1; left: -15%; top: -30%; width: 680px; height: 680px; border-radius: 50%; background: radial-gradient(circle, rgba(159,189,87,.12), transparent 68%); }
.hero-content { padding-block: 92px 76px; }
.hero-copy { max-width: 660px; color: var(--white); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 800; color: #e8ecea; }
.eyebrow span { padding: 6px 10px; border: 1px solid var(--green); border-radius: 7px; color: var(--green); letter-spacing: 0; }
.hero h1 { margin: 0; font-size: clamp(2.6rem, 5vw, 5rem); line-height: 1.03; letter-spacing: -.05em; max-width: 680px; }
.hero h1 strong { display: block; color: var(--green); font-weight: 800; margin-top: 10px; }
.hero p { max-width: 620px; margin: 24px 0 22px; font-size: clamp(1rem, 1.5vw, 1.14rem); color: #d8dedd; }
.hero-number { display: inline-flex; align-items: center; gap: 12px; font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 850; letter-spacing: -.02em; }
.hero-number svg { color: var(--gold); }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border-radius: 11px; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #15130d; background: linear-gradient(135deg, var(--gold), var(--gold-light)); box-shadow: 0 12px 28px rgba(224,173,56,.24); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(224,173,56,.34); }
.btn-outline { color: #f5f7f6; border: 1px solid rgba(159,189,87,.8); background: rgba(8,13,15,.64); }
.btn-outline:hover { background: rgba(159,189,87,.16); }

.trust-strip { margin-top: -42px; position: relative; z-index: 4; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(224,173,56,.55); background: linear-gradient(135deg, #101719, #0b1012); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.trust-item { min-height: 118px; padding: 24px; display: flex; align-items: center; gap: 16px; color: white; position: relative; }
.trust-item + .trust-item::before { content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 1px; background: rgba(255,255,255,.12); }
.trust-item > svg { flex: 0 0 auto; width: 32px; height: 32px; color: var(--gold); }
.trust-item strong { display: block; font-size: 1rem; }
.trust-item span { display: block; color: #aeb7b5; font-size: .79rem; line-height: 1.35; margin-top: 4px; }

.section { padding: 100px 0; }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--green-deep); text-transform: uppercase; font-size: .78rem; font-weight: 900; letter-spacing: .15em; }
.kicker::before, .kicker::after { content: ""; width: 30px; height: 1px; background: currentColor; opacity: .45; }
.section-heading h2, .why-copy h2, .final-cta h2 { margin: 10px 0 12px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; letter-spacing: -.04em; }
.section-heading p { margin: 0; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { background: var(--white); border: 1px solid rgba(10,16,18,.08); border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 34px rgba(13,19,21,.08); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 24px 50px rgba(13,19,21,.14); border-color: rgba(159,189,87,.42); }
.card-media { aspect-ratio: 4 / 2.55; overflow: hidden; background: #dfe4e1; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .card-media img { transform: scale(1.045); }
.card-body { padding: 24px; position: relative; }
.service-icon { width: 46px; height: 46px; display: grid; place-items: center; background: var(--ink); color: var(--gold); border-radius: 12px; position: absolute; right: 22px; top: -24px; border: 4px solid white; }
.card-body h3 { margin: 0 0 10px; font-size: 1.18rem; }
.card-body p { margin: 0; color: var(--muted); font-size: .92rem; }
.service-card:nth-child(7) { grid-column: 2 / 4; }

.why-us { padding: 85px 0; color: white; background: radial-gradient(circle at 10% 10%, rgba(159,189,87,.1), transparent 33%), linear-gradient(135deg, #11191b, #080c0e); }
.why-layout { display: grid; grid-template-columns: .9fr 1.5fr; align-items: center; gap: 60px; }
.why-media { border-radius: 24px; overflow: hidden; position: relative; box-shadow: 0 30px 70px rgba(0,0,0,.35); border: 1px solid rgba(224,173,56,.35); }
.why-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-badge { position: absolute; left: 16px; bottom: 16px; padding: 9px 12px; border-radius: 9px; background: rgba(9,14,16,.82); color: var(--gold-light); font-weight: 800; font-size: .79rem; backdrop-filter: blur(10px); }
.why-copy .kicker { color: var(--gold); }
.why-copy > p { color: #c4ccca; margin: 0 0 30px; max-width: 700px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat { min-height: 150px; border: 1px solid rgba(224,173,56,.3); border-radius: 15px; padding: 20px 15px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: rgba(255,255,255,.025); }
.stat svg { width: 30px; height: 30px; color: var(--gold); margin-bottom: 10px; }
.stat strong { font-size: 1.03rem; }
.stat span { color: #9aa5a2; font-size: .76rem; margin-top: 4px; }

.gallery-section { background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 235px; gap: 16px; }
.gallery-item { appearance: none; border: 0; padding: 0; border-radius: 15px; overflow: hidden; position: relative; cursor: zoom-in; background: #dce2df; box-shadow: 0 12px 30px rgba(9,14,16,.10); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5,9,10,.88)); }
.gallery-item span { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 14px; color: white; font-weight: 850; text-align: left; }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.05); }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }

.reviews { background: #f1f4f1; }
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.review-card { display: flex; flex-direction: column; min-height: 285px; padding: 26px; background: white; border: 1px solid rgba(10,16,18,.08); border-radius: 17px; box-shadow: 0 12px 30px rgba(10,16,18,.06); }
.stars { color: var(--gold); letter-spacing: .15em; font-size: 1.05rem; }
.review-card blockquote { margin: 18px 0 24px; color: #394245; font-size: .96rem; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer > span { width: 43px; height: 43px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--green); font-weight: 900; }
.reviewer strong, .reviewer small { display: block; }
.reviewer small { color: var(--green-deep); }

.final-cta { padding: 72px 0; color: white; background: radial-gradient(circle at 15% 50%, rgba(159,189,87,.22), transparent 31%), linear-gradient(135deg, #101819, #080c0e); border-top: 1px solid rgba(224,173,56,.25); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 38px; }
.final-cta .kicker { color: var(--green); }
.final-cta h2 { margin-bottom: 6px; }
.cta-phone { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 900; color: var(--gold-light); letter-spacing: -.03em; }
.cta-actions { margin-top: 0; flex: 0 0 auto; }

.site-footer { color: #cbd2d0; background: #070a0b; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 54px; padding: 65px 0 48px; }
.footer-brand img { width: 190px; }
.footer-brand p { max-width: 350px; color: #909a97; font-size: .9rem; }
.footer-grid h3 { margin: 4px 0 16px; color: white; font-size: .97rem; }
.footer-grid a, .footer-grid span, .footer-grid strong { display: block; margin: 7px 0; font-size: .87rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid strong { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 17px 0; text-align: center; color: #7f8986; font-size: .8rem; }

.mobile-contact { display: none; position: fixed; z-index: 900; left: 12px; right: 12px; bottom: 12px; border-radius: 13px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,.35); background: var(--ink); }
.mobile-contact a { flex: 1; min-height: 55px; display: flex; align-items: center; justify-content: center; gap: 8px; color: white; font-weight: 850; }
.mobile-contact a:first-child { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #13110b; }
.mobile-contact a + a { border-left: 1px solid rgba(255,255,255,.12); color: #d8edaa; }

.lightbox { position: fixed; z-index: 3000; inset: 0; display: grid; place-items: center; padding: 70px 24px 30px; background: rgba(3,6,7,.93); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: min(1100px, 96vw); max-height: 86vh; margin: 0; display: grid; gap: 12px; }
.lightbox img { max-width: 100%; max-height: 78vh; margin: auto; border-radius: 12px; object-fit: contain; box-shadow: 0 25px 80px rgba(0,0,0,.5); }
.lightbox figcaption { color: white; text-align: center; font-weight: 800; }
.lightbox-close { position: absolute; top: 18px; right: 24px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: white; font-size: 2rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .header-phone { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(7) { grid-column: auto; }
  .why-layout { grid-template-columns: 1fr; }
  .why-media { max-width: 650px; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  body { padding-bottom: 76px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { backdrop-filter: blur(12px); }
  .header-inner { min-height: 70px; }
  .brand img { width: 176px; }
  .menu-toggle { display: flex; }
  .main-nav { position: absolute; left: 14px; right: 14px; top: calc(100% + 8px); display: grid; gap: 0; padding: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(9,14,16,.98); box-shadow: 0 18px 45px rgba(0,0,0,.35); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 12px 14px; border-radius: 8px; }
  .main-nav a::after { display: none; }
  .main-nav a:hover, .main-nav a.active { background: rgba(159,189,87,.12); }
  .hero { min-height: 760px; padding-top: 70px; align-items: end; }
  .hero-media { inset: 70px 0 0; background-position: 58% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(8,13,15,.22) 0%, rgba(8,13,15,.72) 34%, #080d0f 77%); }
  .hero-content { padding: 260px 0 70px; }
  .hero-copy { max-width: 100%; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero p { font-size: 1rem; }
  .trust-strip { margin-top: 0; background: var(--ink); padding: 0 0 28px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); border-radius: 14px; }
  .trust-item + .trust-item::before { display: none; }
  .trust-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,.1); }
  .trust-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
  .section { padding: 76px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: auto; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { display: grid; }
  .mobile-contact { display: flex; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .brand img { width: 158px; }
  .hero { min-height: 740px; }
  .hero-content { padding-top: 235px; }
  .eyebrow { font-size: .7rem; }
  .hero h1 { font-size: 2.55rem; }
  .hero-actions .btn { flex: 1 1 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 92px; padding: 18px; }
  .trust-item:nth-child(even) { border-left: 0; }
  .trust-item + .trust-item { border-top: 1px solid rgba(255,255,255,.1); }
  .section-heading { margin-bottom: 34px; }
  .service-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card:nth-child(7) { grid-column: auto; }
  .why-us { padding: 70px 0; }
  .why-layout { gap: 34px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { min-height: 130px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery-wide { grid-column: auto; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 240px; }
  .cta-phone { font-size: 2rem; }
  .cta-actions .btn { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Çınar Kepenk custom updates */
.brand img{width:78px;height:auto}
.footer-brand img{width:78px;height:auto}
.hero-region-actions,.cta-region-actions{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:26px}
.region-btn{justify-content:flex-start;padding:14px 16px;min-height:74px}
.region-btn svg{flex:0 0 auto}
.region-btn span{display:flex;flex-direction:column;align-items:flex-start;line-height:1.15}
.region-btn small{font-size:.72rem;font-weight:800;opacity:.9;text-transform:uppercase;letter-spacing:.06em}
.region-btn strong{font-size:1rem}
.region-alt{background:linear-gradient(135deg,#11191b,#1b2427);color:#fff;border:1px solid rgba(224,173,56,.35)}
.whatsapp-btn{border-color:rgba(159,189,87,.55)!important;color:#e6f8bb}
.cta-phones{display:flex;flex-wrap:wrap;gap:14px;margin-top:6px}
.cta-phones .cta-phone{display:flex;flex-direction:column;gap:2px;font-size:1.7rem;line-height:1.05}
.cta-phones .cta-phone small{font-size:.8rem;color:#d9e9b3;letter-spacing:.02em}
.parts-section{background:#fff}
.parts-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.part-card{background:#fff;border:1px solid rgba(10,16,18,.08);border-radius:18px;overflow:hidden;box-shadow:0 12px 30px rgba(10,16,18,.06)}
.part-card img{width:100%;aspect-ratio:1/1;object-fit:cover;background:#eef2ef}
.part-card h3{margin:0;padding:14px 16px 16px;font-size:1rem}
.mobile-contact{display:none;position:fixed;z-index:950;left:12px;right:12px;bottom:12px;background:#071014;border:1px solid rgba(224,173,56,.22);border-radius:18px;padding:8px;box-shadow:0 16px 40px rgba(0,0,0,.35);gap:8px;align-items:stretch}
.mobile-contact-left{flex:1;display:flex;flex-direction:column;gap:8px;min-width:0}
.mobile-contact a{color:#fff;text-decoration:none}
.mobile-call{display:flex;flex-direction:column;justify-content:center;min-height:54px;padding:10px 12px;border-radius:12px;line-height:1.08;font-weight:800;background:linear-gradient(135deg,var(--gold),var(--gold-light));color:#12100b}
.mobile-avrupa{background:#11191b;color:#dff0b0;border:1px solid rgba(159,189,87,.28)}
.mobile-label{display:block;font-size:.82rem;font-weight:800;margin-bottom:4px}
.mobile-call strong{font-size:1.02rem;letter-spacing:.01em}
.mobile-whatsapp{flex:0 0 34%;display:flex;align-items:center;justify-content:center;gap:8px;border-radius:14px;background:#071014;border:1px solid rgba(159,189,87,.48);color:#dff0b0;padding:10px 12px;font-weight:900;min-width:108px}
.mobile-whatsapp svg{width:1.35em;height:1.35em}
@media (max-width:1060px){.parts-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:820px){.brand img{width:68px}.hero-region-actions,.cta-region-actions{grid-template-columns:1fr}.hero-region-actions .region-btn,.cta-region-actions .region-btn{min-height:68px}.mobile-contact{display:flex}body{padding-bottom:102px}.parts-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.brand img{width:62px}.hero-region-actions{gap:10px}.region-btn{padding:12px 14px;min-height:64px}.region-btn strong{font-size:.96rem}.parts-grid{grid-template-columns:repeat(2,1fr);gap:14px}.part-card h3{font-size:.94rem;padding:12px 12px 14px}.mobile-contact{left:10px;right:10px;bottom:10px;padding:7px;gap:7px}.mobile-contact-left{gap:7px}.mobile-call{min-height:46px;padding:8px 10px}.mobile-label{font-size:.74rem;margin-bottom:2px}.mobile-call strong{font-size:.94rem}.mobile-whatsapp{flex-basis:32%;padding:8px 10px;border-radius:12px;min-width:96px}.mobile-whatsapp span{font-size:.96rem}.footer-grid{padding-bottom:70px}}


/* whatsapp mobile dock and logo refinements */
.brand{gap:12px}
.brand img{width:172px!important;height:auto}
.footer-brand img{width:172px!important;height:auto}
@media (max-width:820px){.brand img{width:156px!important}}
@media (max-width:560px){.brand img{width:146px!important}}
.mobile-contact{border-radius:24px!important;padding:8px!important;gap:8px!important;overflow:hidden}
.mobile-contact-left{gap:8px!important}
.mobile-call{border-radius:16px!important;box-shadow:none}
.mobile-whatsapp{background:linear-gradient(135deg,#25d366,#128c7e)!important;color:#fff!important;border:none!important;border-radius:22px!important;box-shadow:0 10px 24px rgba(37,211,102,.25);min-width:118px!important}
.mobile-whatsapp span{font-weight:900;color:#fff}
.mobile-whatsapp svg{color:#fff}
@media (max-width:560px){.mobile-whatsapp{border-radius:20px!important;min-width:110px!important}.mobile-call{border-radius:14px!important}}

/* v3 cache-busted logo file in use */


/* v5 photo logo */
.brand img{width:218px!important;height:auto!important;max-height:62px;object-fit:contain}
.footer-brand img{width:230px!important;height:auto!important;max-height:none}
@media(max-width:820px){.brand img{width:198px!important;max-height:58px}}
@media(max-width:560px){.brand img{width:184px!important;max-height:54px}.header-inner{min-height:76px}}

/* v6 compact photo logo */
.brand img{width:210px!important;height:auto!important;max-height:62px!important;object-fit:contain!important}
.footer-brand img{width:220px!important;height:auto!important;max-height:none!important}
@media(max-width:820px){.brand img{width:195px!important;max-height:58px!important}}
@media(max-width:560px){.brand img{width:184px!important;max-height:54px!important}}
