:root {
  --primary: #0a192f;
  --secondary: #112240;
  --accent: #c9975e;
  --accent-light: #e0b87a;
  --text-light: #ccd6f6;
  --text-dark: #233554;
  --bg-light: #f5f2eb;
  --bg-dark: #0d1b2a;
  --white: #ffffff;
  --black: #000000;
  --font-sans: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --transition: all 0.3s ease;
}
* { box-sizing: border-box; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--primary); }
a { color: var(--accent); transition: var(--transition); }
a:hover { color: var(--accent-light); text-decoration: none; }

/* Header */
#inject-header .navbar {
  background: var(--primary) !important;
  padding: 0.8rem 1rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
#inject-header .navbar-brand img { height: 40px; }
#inject-header .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 0.3rem;
  position: relative;
}
#inject-header .nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
#inject-header .nav-link:hover:after,
#inject-header .nav-link.active:after { width: 100%; }
#inject-header .navbar-toggler { border: none; color: var(--text-light); font-size: 1.5rem; }
#inject-header .contact-info {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-left: 1.5rem;
}
#inject-header .contact-info i { color: var(--accent); margin-right: 0.3rem; }

/* Footer */
#inject-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
}
#inject-footer h5 { color: var(--accent); font-weight: 600; margin-bottom: 1.5rem; }
#inject-footer a { color: var(--text-light); }
#inject-footer a:hover { color: var(--accent); }
#inject-footer .list-unstyled li { margin-bottom: 0.5rem; }
#inject-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Hero section with fullscreen background */
.hero-section {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-section .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,25,47,0.85) 0%, rgba(17,34,64,0.75) 100%);
  z-index: 1;
}
.hero-section .container { position: relative; z-index: 2; }
.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-section p {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 1.5rem auto;
}
.hero-section .btn-accent {
  background: var(--accent);
  border: none;
  color: var(--white);
  padding: 0.9rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201,151,94,0.4);
}
.hero-section .btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(201,151,94,0.5);
}

/* Sections general */
section { padding: 5rem 0; }
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 0.8rem;
}
.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* Cards */
.card-premium {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: var(--transition);
  overflow: hidden;
  background: var(--white);
}
.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.card-premium .card-img-top { height: 220px; object-fit: cover; }
.card-premium .card-body { padding: 1.8rem; }
.card-premium .card-title { font-weight: 700; color: var(--primary); }
.card-premium .card-text { color: #555; }

/* About section */
.about-stats .stat-item {
  text-align: center;
  padding: 2rem;
}
.about-stats .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.about-stats .stat-label {
  color: var(--text-dark);
  font-weight: 500;
  margin-top: 0.5rem;
}
.team-card .team-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid var(--accent);
}

/* Price cards */
.price-card {
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  background: var(--white);
}
.price-card:hover { border-color: var(--accent); box-shadow: 0 10px 40px rgba(201,151,94,0.15); }
.price-card .price { font-size: 3rem; font-weight: 800; color: var(--primary); }
.price-card .price span { font-size: 1.2rem; font-weight: 400; color: #888; }
.price-card .btn-outline-accent {
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50px;
  padding: 0.6rem 2rem;
  font-weight: 600;
  transition: var(--transition);
}
.price-card .btn-outline-accent:hover {
  background: var(--accent);
  color: var(--white);
}

/* Process steps */
.process-step {
  position: relative;
  padding-left: 70px;
  margin-bottom: 2rem;
}
.process-step .step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
}

/* Gallery grid */
.gallery-grid .gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-grid .gallery-item:hover img { transform: scale(1.05); }

/* FAQ */
.accordion-faq .accordion-item {
  border: none;
  margin-bottom: 0.8rem;
  border-radius: 8px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.accordion-faq .accordion-button {
  background: var(--white);
  color: var(--text-dark);
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  box-shadow: none;
}
.accordion-faq .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
}
.accordion-faq .accordion-body { padding: 1.2rem 1.5rem; }

/* Contact form */
.contact-form .form-control {
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  border: 2px solid #e9ecef;
  transition: var(--transition);
}
.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(201,151,94,0.25);
}
.contact-form .btn-accent {
  background: var(--accent);
  border: none;
  color: var(--white);
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}
.contact-form .btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* Map section */
.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1rem 2rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.show { display: block; }
.cookie-banner .btn-accept {
  background: var(--accent);
  border: none;
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-left: 1rem;
  cursor: pointer;
}
.cookie-banner .btn-accept:hover { background: var(--accent-light); }

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 2rem;
  border-radius: 8px;
  color: var(--white);
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 10000;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}
.notification.show { opacity: 1; transform: translateY(0); }
.notification.success { background: #28a745; }
.notification.error { background: #dc3545; }

/* Cards for services */
.service-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  #inject-header .contact-info { margin-left: 0; margin-top: 0.5rem; }
}