/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --yellow: #f5c518;
  --yellow-dark: #d4a810;
  --black: #111111;
  --gray: #555555;
  --light-gray: #f8f8f8;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--yellow-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Container */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn:hover { background: var(--yellow-dark); text-decoration: none; }
.btn-outline { background: transparent; border: 2px solid var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-block { display: block; width: 100%; }

/* Header */
.header { background: var(--white); border-bottom: 1px solid #e0e0e0; position: fixed; top: 0; left: 0; right: 0; z-index: 999; }

.header-top { background: var(--black); color: var(--white); padding: 8px 0; font-size: 13px; }
.header-top .container { display: flex; justify-content: space-between; }
.header-top a { color: var(--yellow); }
.header-top a:hover { text-decoration: underline; }

.header-main { padding: 18px 0; }
.header-main .container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 22px; font-weight: 900; color: var(--black); }
.logo span { color: var(--yellow-dark); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { color: var(--black); font-weight: 600; font-size: 14px; padding: 6px 0; }
.nav a:hover, .nav a.active { color: var(--yellow-dark); text-decoration: none; }
.nav-cta { background: var(--yellow); padding: 10px 20px !important; }
.nav-cta:hover { background: var(--yellow-dark); color: var(--black) !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--black); margin: 4px 0; }

/* Hero */
.hero { padding: 130px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }

.hero-content h1 { font-size: 40px; font-weight: 900; color: var(--black); margin-bottom: 18px; line-height: 1.2; }
.hero-content h1 span { color: var(--yellow-dark); }
.hero-content p { font-size: 16px; color: var(--gray); margin-bottom: 24px; line-height: 1.7; }

.hero-stats { display: flex; gap: 40px; margin-bottom: 28px; }
.stat { text-align: left; }
.stat-num { font-size: 32px; font-weight: 900; color: var(--yellow-dark); }
.stat-label { font-size: 13px; color: var(--gray); }

.hero-buttons { display: flex; gap: 12px; }

.hero-image img { width: 100%; height: 320px; object-fit: cover; }

/* Sections */
.section { padding: 70px 0; }
.section-gray { background: var(--light-gray); }
.section-black { background: var(--black); color: var(--white); }

.section-header { text-align: center; margin-bottom: 45px; }
.section-header h2 { font-size: 32px; font-weight: 900; color: var(--black); margin-bottom: 10px; }
.section-header p { font-size: 15px; color: var(--gray); }
.section-black .section-header h2 { color: var(--white); }
.section-black .section-header p { color: rgba(255,255,255,0.7); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-item { background: var(--white); overflow: hidden; }
.service-item img { width: 100%; height: 160px; object-fit: cover; }
.service-item-content { padding: 18px; }
.service-item h3 { font-size: 17px; color: var(--black); margin-bottom: 8px; font-weight: 800; }
.service-item p { font-size: 14px; color: var(--gray); }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-item { background: var(--white); padding: 22px; text-align: center; }
.feature-item svg { width: 36px; height: 36px; color: var(--yellow-dark); margin-bottom: 14px; }
.feature-item h4 { font-size: 15px; color: var(--black); margin-bottom: 8px; font-weight: 800; }
.feature-item p { font-size: 13px; color: var(--gray); }

/* Lead Form */
.lead-section { padding: 70px 0; background: var(--black); }
.lead-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; }

.lead-info h2 { font-size: 30px; color: var(--white); margin-bottom: 14px; font-weight: 900; }
.lead-info > p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.lead-contact-item { color: var(--white); margin-bottom: 14px; font-size: 14px; }

.lead-form { background: var(--white); padding: 30px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 700; color: var(--black); font-size: 13px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d0d0d0;
  font-size: 14px;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--yellow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; }
.form-check input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.form-check label { font-size: 12px; color: var(--gray); font-weight: 400; }

/* Service Blocks */
.service-section { padding: 50px 0; }
.service-section:nth-child(even) { background: var(--light-gray); }
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-image img { width: 100%; height: 280px; object-fit: cover; object-position: center; }
.service-content h2 { font-size: 26px; color: var(--black); margin-bottom: 12px; font-weight: 900; }
.service-content > p { color: var(--gray); margin-bottom: 18px; line-height: 1.7; }
.service-content ul { margin-bottom: 20px; }
.service-content ul li { font-size: 14px; color: var(--gray); margin-bottom: 8px; padding-left: 20px; position: relative; }
.service-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--yellow-dark); font-weight: bold; }

/* About Page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 50px; }
.about-image img { width: 100%; height: 300px; object-fit: cover; object-position: center; }
.about-content h2 { font-size: 28px; color: var(--black); margin-bottom: 15px; font-weight: 900; }
.about-content p { color: var(--gray); line-height: 1.8; margin-bottom: 15px; }
.mission-content { max-width: 800px; margin: 0 auto; text-align: center; }
.mission-content p { color: var(--gray); line-height: 1.8; margin-bottom: 18px; font-size: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.value-item { background: var(--white); padding: 25px 20px; text-align: center; }
.value-item svg { width: 40px; height: 40px; color: var(--yellow-dark); margin-bottom: 15px; }
.value-item h3 { font-size: 16px; color: var(--black); margin-bottom: 10px; font-weight: 800; }
.value-item p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* CTA Section */
.cta-section { background: var(--yellow); padding: 50px 0; }
.cta-content { text-align: center; }
.cta-content h2 { font-size: 30px; color: var(--black); margin-bottom: 10px; font-weight: 900; }
.cta-content p { color: var(--black); margin-bottom: 20px; font-size: 16px; }
.cta-content .btn { background: var(--black); color: var(--white); }
.cta-content .btn:hover { background: #333; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.gallery-item img { width: 100%; height: 180px; object-fit: cover; object-position: center; }

/* Page Header */
.page-header { padding: 120px 0 50px; background: var(--black); }
.page-header h1 { font-size: 36px; color: var(--white); font-weight: 900; margin-bottom: 8px; }
.page-header p { font-size: 16px; color: rgba(255,255,255,0.8); }

/* Contact */
.contact-section { padding: 120px 0 70px; background: var(--light-gray); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; }
.contact-info h2 { font-size: 28px; color: var(--black); margin-bottom: 10px; font-weight: 900; }
.contact-info > p { color: var(--gray); margin-bottom: 28px; }
.contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
.contact-item svg { width: 20px; height: 20px; color: var(--yellow-dark); flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { font-size: 14px; color: var(--black); margin-bottom: 2px; font-weight: 700; }
.contact-item p, .contact-item a { font-size: 13px; color: var(--gray); }

.hours-box { background: var(--white); padding: 20px; margin-top: 28px; }
.hours-box h4 { font-size: 15px; color: var(--black); margin-bottom: 14px; font-weight: 700; }
.hours-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid #e8e8e8; font-size: 13px; }
.hours-row:last-child { border-bottom: none; }

.contact-form { background: var(--white); padding: 30px; }
.map { margin-top: 45px; }
.map iframe { width: 100%; height: 320px; border: none; }

/* Legal Pages */
.legal { padding: 120px 0 70px; }
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h1 { font-size: 30px; color: var(--black); margin-bottom: 24px; font-weight: 900; }
.legal-content h2 { font-size: 20px; color: var(--black); margin: 28px 0 12px; font-weight: 800; }
.legal-content p { color: var(--gray); margin-bottom: 14px; line-height: 1.8; font-size: 15px; }
.legal-content ul { margin: 14px 0 20px; padding-left: 18px; }
.legal-content ul li { color: var(--gray); margin-bottom: 8px; }
.legal-content ul li::marker { color: var(--yellow-dark); }

/* Sitemap */
.sitemap { padding: 120px 0 70px; }
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.sitemap-card { background: var(--white); padding: 22px; border: 1px solid #e8e8e8; }
.sitemap-card h3 { font-size: 16px; color: var(--black); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--yellow); font-weight: 800; }
.sitemap-card a { display: block; color: var(--gray); padding: 5px 0; font-size: 14px; }
.sitemap-card a:hover { color: var(--yellow-dark); }

/* Footer */
.footer { background: var(--black); color: var(--white); padding: 55px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 35px; margin-bottom: 32px; }
.footer-brand h3 { font-size: 18px; margin-bottom: 10px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 13px; margin-bottom: 8px; line-height: 1.6; }
.footer-col h4 { font-size: 14px; margin-bottom: 16px; color: var(--yellow); font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); font-size: 13px; padding: 4px 0; }
.footer-col a:hover { color: var(--yellow); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; }
.footer-disclaimer { background: rgba(255,255,255,0.05); padding: 12px 14px; margin-bottom: 14px; }
.footer-disclaimer p { font-size: 12px; color: rgba(255,255,255,0.55); }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.45); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); padding: 16px 20px; box-shadow: 0 -3px 12px rgba(0,0,0,0.1); z-index: 9999; display: none; }
.cookie-banner.active { display: block; }
.cookie-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.cookie-text h4 { font-size: 14px; color: var(--black); margin-bottom: 2px; }
.cookie-text p { font-size: 12px; color: var(--gray); }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btns .btn { padding: 10px 18px; font-size: 13px; }

.cookie-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal.active { display: flex; }
.cookie-modal-body { background: var(--white); padding: 26px; max-width: 400px; width: 100%; }
.cookie-modal-body h3 { font-size: 18px; color: var(--black); margin-bottom: 10px; font-weight: 800; }
.cookie-modal-body > p { color: var(--gray); margin-bottom: 18px; font-size: 14px; }
.cookie-opt { padding: 10px 0; border-bottom: 1px solid #e8e8e8; }
.cookie-opt:last-child { border-bottom: none; }
.cookie-opt label { display: flex; justify-content: space-between; font-weight: 600; color: var(--black); font-size: 14px; }
.cookie-opt p { font-size: 12px; color: var(--gray); margin-top: 4px; }
.cookie-modal-btns { display: flex; gap: 10px; margin-top: 18px; }

.skip-link { position: absolute; top: -100px; left: 14px; background: var(--yellow); color: var(--black); padding: 10px 16px; z-index: 99999; font-weight: 700; font-size: 13px; }
.skip-link:focus { top: 14px; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .lead-grid, .contact-grid, .service-block, .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 18px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
  .nav.active { display: flex; }
  .nav a { padding: 10px 0; border-bottom: 1px solid #e8e8e8; }
  .mobile-toggle { display: block; }
  
  .hero { padding: 100px 0 45px; }
  .hero-content h1 { font-size: 30px; }
  .hero-stats { flex-direction: column; gap: 15px; }
  .hero-buttons { flex-direction: column; }
  .hero-image img { height: 240px; }
  
  .services-grid, .features-grid, .values-grid, .gallery-grid, .sitemap-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-btns { width: 100%; }
  .cookie-btns .btn { flex: 1; padding: 10px 12px; }
}
