:root { --green: #78be20; --blue: #003865; --white: #f5f5f5; --bg: #111a2c; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Montserrat', Inter, Arial, sans-serif; background: #f5f5f5; color: #111; }
section[id] { scroll-margin-top: 140px; }
/* Scroll fade-in */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.top-bar { background: #78be20; color: #fff; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 6px 12px; font-size: .8rem; position: sticky; top: 0; z-index: 1100; }
.top-item { margin: 0 4px; display: flex; align-items: center; gap: 4px; }
.top-phones { display: flex; align-items: center; gap: 8px; }
.top-item a { color: #fff; text-decoration: none; font-weight: 700; }
.top-item a:hover { text-decoration: underline; }
.icon { font-size: .95rem; }
 .site-header { position: sticky; top: 34px; z-index: 1090; background: #fff; display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; padding: 6px 10px; border-bottom: 1px solid #e8e8e8; min-height: 70px; }
.logo-row { display: flex; align-items: center; gap: 10px; font-weight: 800; color: #003865; }
.logo-img { width: auto; max-width: 180px; height: 80px; object-fit: contain; border-radius: 0; border: none; }
.site-header nav { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-left: 20px; justify-content: flex-end; }
.site-header nav a { color: #003865; text-decoration: none; font-size: .9rem; padding: 8px 16px; border-radius: 8px; transition: all .2s ease; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; border: 2px solid transparent; background: linear-gradient(135deg, #f0f4ff, #e8efff); box-shadow: 0 2px 8px rgba(0,56,101,.08); }
.site-header nav a:hover, .site-header nav a.active { background: linear-gradient(135deg, #78be20, #5fa318); color: #fff; border-color: #78be20; box-shadow: 0 4px 14px rgba(120,190,32,.25); transform: translateY(-2px); }
.menu-right { margin-left: auto; }
.hero { min-height: 78vh; display: flex; align-items: flex-end; justify-content: flex-end; background: linear-gradient(160deg, rgba(0,0,0,.15) 40%, rgba(0,0,0,.72) 100%), url('Hero1.png') center/cover no-repeat; color: #fff; padding: 40px 36px; position: relative; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .15s ease; pointer-events: none; z-index: 1; }
.hero-content { max-width: 620px; text-align: right; position: relative; z-index: 2; }
.eyebrow { color: #78be20; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; font-size: .78rem; margin-bottom: 8px; }
.hero h1 { margin: .2rem 0 .8rem; font-size: clamp(1.5rem, 5vw, 2.6rem); line-height: 1.2; text-shadow: 0 2px 16px rgba(0,0,0,.5); }
.hero p { margin: 0 0 18px; color: #dce8ff; font-size: .95rem; line-height: 1.6; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.hero-actions { display: flex; justify-content: flex-end; margin-top: 16px; gap: 10px; flex-wrap: wrap; }
.hero-btn { display: inline-block; border: none; border-radius: 8px; font-weight: 700; color: #fff; background: #78be20; padding: 12px 22px; cursor: pointer; text-decoration: none; font-size: .9rem; transition: all .2s; box-shadow: 0 4px 14px rgba(120,190,32,.3); }
.hero-btn:hover { background: #5fa318; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(120,190,32,.4); }
.hero-btn--outline { background: transparent; border: 2px solid #fff; color: #fff; box-shadow: none; }
.hero-btn--outline:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.section { padding: 45px 14px; max-width: 1100px; margin: auto; }
.section h2 { margin-bottom: 14px; font-size: clamp(1.4rem, 4vw, 2rem); color: #003865; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.about-text h2 { font-size: clamp(1.4rem, 4vw, 2rem); color: #003865; margin-bottom: 16px; }
.about-text p { color: #333; line-height: 1.75; margin-bottom: 14px; font-size: .95rem; }
.about-text strong { color: #003865; }
.about-text em { color: #78be20; font-style: normal; font-weight: 600; }
.about-slideshow { border-radius: 14px; overflow: hidden; position: relative; box-shadow: 0 8px 30px rgba(0,56,101,.15); }
.slide-container { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease-in-out; }
.slide.active { opacity: 1; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.card { border-radius: 14px; background: #fff; border: 1px solid #e9e9e9; padding: 20px 16px; box-shadow: 0 8px 24px rgba(0,0,0,.04); transition: all .25s ease; text-align: center; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,56,101,.12); border-color: #78be20; }
.card-icon { font-size: 2rem; margin-bottom: 10px; }
.card h3 { font-size: .95rem; color: #003865; margin: 0 0 8px; font-weight: 700; }
.card p { font-size: .85rem; color: #555; line-height: 1.6; margin: 0; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.acc-card { border-radius: 12px; background: #fff; border: 1px solid #e9e9e9; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.04); transition: all .25s ease; }
.acc-card:hover { box-shadow: 0 8px 24px rgba(0,56,101,.1); }
.acc-header { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 16px 18px; border: none; background: #fff; cursor: pointer; font-size: .9rem; font-weight: 700; color: #003865; font-family: inherit; text-align: left; transition: background .2s; }
.acc-header:hover { background: #f0f4ff; }
.acc-arrow { font-size: 1.2rem; color: #78be20; font-weight: 700; transition: transform .3s; }
.acc-card.open .acc-arrow { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; padding: 0 18px; }
.acc-card.open .acc-body { max-height: 500px; padding: 0 18px 16px; }
.acc-body p { font-size: .85rem; color: #555; line-height: 1.65; margin: 0; }
.acc-card.open { border-color: #78be20; }
/* Contact section - green bar */
.contact-section { background: linear-gradient(135deg, #1a1a1a 0%, #222 100%); color: #fff; padding: 60px 0 40px; }
.contact-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.contact-section h2 { text-align: center; font-size: 2rem; margin-bottom: 10px; color: #78be20; }
.contact-grid-new { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.contact-card { background: rgba(120,190,32,.1); border: 1px solid rgba(120,190,32,.25); border-radius: 16px; padding: 28px 22px 22px; text-align: center; transition: transform .25s, box-shadow .25s, border-color .25s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(120,190,32,.18); border-color: #78be20; }
.contact-card-icon { font-size: 2.2rem; margin-bottom: 10px; }
.contact-card h3 { font-size: 1.15rem; margin: 0 0 4px; color: #78be20; }
.contact-role { font-size: .88rem; color: #aaa; margin-bottom: 8px; font-style: italic; }
.contact-card p { margin: 4px 0; font-size: .95rem; }
.contact-card a { color: #fff; text-decoration: none; transition: color .2s; display: block; }
.contact-card a:hover { color: #78be20; }
.contact-hours { font-size: 1.2rem; font-weight: 700; color: #78be20; }
/* Back to top */
.back-to-top { position: fixed; bottom: 90px; right: 28px; z-index: 1400; width: 44px; height: 44px; border-radius: 50%; border: none; background: #003865; color: #fff; font-size: 1.3rem; cursor: pointer; box-shadow: 0 4px 16px rgba(0,56,101,.25); transition: all .25s; opacity: 0; pointer-events: none; transform: translateY(10px); }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: #78be20; transform: translateY(-2px); }
.contact-map-link { margin-top: 8px; font-size: .85rem; font-weight: 700; color: #78be20; opacity: .75; transition: opacity .2s; }
.contact-card a:hover .contact-map-link { opacity: 1; }
.contact-map { margin-top: 40px; text-align: center; }
.contact-map h3 { color: #78be20; margin-bottom: 16px; font-size: 1.15rem; }
/* Social buttons */
.contact-social { display: flex; justify-content: center; gap: 18px; margin-top: 36px; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: .95rem; text-decoration: none; transition: all .25s; }
.social-fb { background: #1877F2; color: #fff; box-shadow: 0 4px 16px rgba(24,119,242,.3); }
.social-fb:hover { background: #0d65d9; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(24,119,242,.4); }
.social-google { background: #fff; color: #333; border: 2px solid #fbbc04; box-shadow: 0 4px 16px rgba(251,188,4,.2); }
.social-google:hover { background: #fbbc04; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(251,188,4,.35); }

/* Booking modal */
.booking-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); display: none; place-items: center; z-index: 2000; overflow-y: auto; padding: 20px; }
.booking-overlay.open { display: grid; }
.booking-modal { background: #fff; border-radius: 16px; padding: 32px 28px; max-width: 680px; width: 100%; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.25); animation: modalIn .3s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.booking-close { position: absolute; top: 14px; right: 16px; border: none; background: none; font-size: 1.6rem; cursor: pointer; color: #999; transition: .15s; }
.booking-close:hover { color: #333; }
.booking-modal h2 { color: #003865; margin: 0 0 6px; font-size: 1.5rem; }
.booking-subtitle { color: #666; font-size: .88rem; margin: 0 0 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { margin-bottom: 14px; }
.form-group label { font-size: .8rem; font-weight: 600; color: #003865; margin-bottom: 4px; }
.form-group input, .form-group select, .form-group textarea { border: 1px solid #d0d5dd; border-radius: 8px; padding: 10px 12px; font-size: .88rem; font-family: inherit; transition: border .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #78be20; box-shadow: 0 0 0 3px rgba(120,190,32,.15); }
.booking-submit { display: block; width: 100%; padding: 14px; border: none; border-radius: 10px; background: #78be20; color: #fff; font-size: 1rem; font-weight: 700; font-family: inherit; cursor: pointer; transition: all .2s; margin-top: 8px; }
.booking-submit:hover { background: #5fa318; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(120,190,32,.3); }
.booking-success { text-align: center; padding: 20px 0; }
.success-icon { font-size: 3rem; margin-bottom: 10px; }
.booking-success h3 { color: #003865; font-size: 1.3rem; margin: 0 0 12px; }
.booking-success p { color: #555; line-height: 1.6; font-size: .92rem; margin: 0 0 14px; }
.booking-success a { color: #78be20; text-decoration: none; font-weight: 700; }

/* Floating booking button */
.floating-booking { position: fixed; bottom: 24px; right: 24px; z-index: 1500; display: inline-flex; align-items: center; gap: 6px; padding: 14px 24px; background: #78be20; color: #fff; font-size: .95rem; font-weight: 700; font-family: inherit; text-decoration: none; border-radius: 50px; box-shadow: 0 6px 24px rgba(120,190,32,.4); transition: all .25s ease; animation: floatPulse 2s infinite; }
.floating-booking:hover { background: #5fa318; transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 32px rgba(120,190,32,.5); }
@keyframes floatPulse { 0%,100% { box-shadow: 0 6px 24px rgba(120,190,32,.4); } 50% { box-shadow: 0 8px 32px rgba(120,190,32,.55); } }

@media(max-width:600px){
  .floating-booking { bottom: 16px; right: 16px; padding: 12px 18px; font-size: .85rem; }
}

@media(max-width:600px){
  .form-row { grid-template-columns: 1fr; gap: 10px; }
  .booking-modal { padding: 22px 18px; }
}

@media(max-width:900px){
  .site-header { padding: 6px 10px; min-height: auto; }
  .logo-img { width: 90px; height: auto; max-height: 90px; }
  .site-header { flex-wrap: wrap; justify-content: center; gap: 6px; }
  .site-header nav { width: 100%; justify-content: center; margin-left: 0; }
  .site-header nav a { font-size: .85rem; padding: 4px 8px; }
  .top-bar { padding: 4px 8px; font-size: .75rem; }
  .top-item { margin: 2px 2px; }
  .top-item:nth-child(n+6) { display: none; }
  .about-grid{grid-template-columns:1fr;}.contact-grid-new{grid-template-columns:repeat(2,1fr);}.service-grid{grid-template-columns:repeat(2,1fr);}.why-grid{grid-template-columns:repeat(2,1fr);}
  .about-slideshow { aspect-ratio: 16/10; min-height: 250px; }
  .hero { padding: 24px 16px; }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-actions { justify-content: center; }
}

@media(max-width:600px){
  .logo-img { width: 80px; height: auto; max-height: 80px; }
  .site-header { top: 34px; padding-top: 6px; padding-bottom: 6px; }
  .site-header nav { gap: 4px; }
  .site-header nav a { font-size: .8rem; padding: 3px 6px; }
  .hero { min-height: 65vh; }
  .about-slideshow { aspect-ratio: 16/9; min-height: 200px; }
  .service-grid { grid-template-columns: 1fr; }
  .card { cursor: pointer; padding: 14px 16px; display: flex; align-items: center; gap: 12px; text-align: left; }
  .card .card-icon { font-size: 1.5rem; margin-bottom: 0; flex-shrink: 0; }
  .card h3 { font-size: .9rem; margin: 0; flex: 1; }
  .card p { display: none; margin: 8px 0 0; width: 100%; font-size: .85rem; }
  .card { flex-wrap: wrap; }
  .card.open p { display: block; }
  .card::after { content: '+'; font-size: 1.2rem; font-weight: 700; color: #78be20; margin-left: auto; transition: transform .3s; }
  .card.open::after { content: '×'; transform: rotate(90deg); }
  .card.open { border-color: #78be20; background: #f8fff0; }
  .contact-grid-new { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer { background: #111; color: #999; text-align: center; padding: 24px 16px; font-size: .85rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-links { margin-top: 8px; display: flex; justify-content: center; gap: 18px; }
.footer-links a { color: #78be20; text-decoration: none; font-weight: 600; }
.footer-links a:hover { text-decoration: underline; }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 3000; background: #1a1a1a; border-top: 2px solid #78be20; padding: 16px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,.4); }
.cookie-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie-inner p { color: #ccc; font-size: .88rem; margin: 0; flex: 1; }
.cookie-inner a { color: #78be20; }
.cookie-btn { background: #78be20; color: #fff; border: none; padding: 10px 28px; border-radius: 8px; font-weight: 700; font-family: inherit; font-size: .9rem; cursor: pointer; transition: background .2s; white-space: nowrap; }
.cookie-btn:hover { background: #5fa318; }

/* GDPR checkbox */
.gdpr-check { display: flex; align-items: flex-start; gap: 8px; }
.gdpr-check label { font-size: .85rem; color: #444; cursor: pointer; display: flex; align-items: flex-start; gap: 8px; }
.gdpr-check input[type="checkbox"] { margin-top: 3px; accent-color: #78be20; }
.gdpr-check a { color: #78be20; font-weight: 600; }

/* Legal pages */
.legal-page { max-width: 800px; margin: 0 auto; padding: 40px 24px 60px; font-size: .95rem; line-height: 1.7; color: #222; }
.legal-page h1 { color: #003865; font-size: 1.8rem; margin-bottom: 8px; }
.legal-page h2 { color: #78be20; font-size: 1.2rem; margin-top: 32px; margin-bottom: 10px; }
.legal-page h3 { font-size: 1.05rem; margin-top: 20px; }
.legal-page ul { padding-left: 22px; }
.legal-page li { margin-bottom: 6px; }
.legal-back { display: inline-block; margin-bottom: 24px; color: #78be20; text-decoration: none; font-weight: 700; }
.legal-back:hover { text-decoration: underline; }
.legal-table { width: 100%; border-collapse: collapse; margin: 12px 0 20px; }
.legal-table td, .legal-table th { border: 1px solid #ddd; padding: 8px 12px; text-align: left; font-size: .9rem; }
.legal-table th { background: #f5f5f5; font-weight: 700; }
.legal-table a { color: #78be20; }
.legal-date { margin-top: 40px; font-style: italic; color: #888; }
