/** 
 * Color Codes Used:
 * 
 * #007b9a - Primary color used for links, buttons, and top bar background
 * #005a73 - Hover and focus color for links
 * #007b9a66 - Outline color for focus-visible elements
 * #e0f7fa - Background color for hover and focus states on buttons and nav links
 * #fff - White color used for text, backgrounds, and button text
 * #333 - Default text color
 * #555 - Text color for service descriptions and testimonials
 * #777 - Text color for author location in testimonials
 * #e6e6e6 - Border color for header
 * #f0f4f8 - Background color for light sections
 * #f9f9f9 - Background color for the body
 * rgba(255,255,255,0.12) - Background color for language switcher
 * rgba(255,255,255,0.2) - Hover and focus background color for language buttons
 * rgba(255,255,255,0.28) - Active background color for language buttons
 * rgba(0,123,154,0.55) - Overlay color for hero section
 * rgba(0,123,154,0.1) - Border color for service cards and other elements
 * rgba(0,123,154,0.15) - Box shadow color for service cards on hover
 * rgba(0,0,0,0.05) - Box shadow color for cards and other elements
 * rgba(0,0,0,0.1) - Box shadow color for map container
 * rgba(0,0,0,0.12) - Box shadow color for nav container on mobile
 * rgba(0,0,0,0.45) - Background color for header overlay on mobile
 * rgba(255,255,255,0.1) - Border color for breadcrumb navigation
 * rgba(255,255,255,0.6) - Color for breadcrumb separator
 */


/* Base */
* { box-sizing: border-box; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: #007b9a; color:#fff; padding:8px 12px; border-radius:4px;
}
.skip-link:focus { left: 8px; z-index: 10000; }

/* Integrated Breadcrumb Navigation */
.breadcrumb-nav {
  display: none; /* Hidden by default on mobile */
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  font-size: 0.875rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Show breadcrumb on desktop */
@media (min-width: 769px) {
  .breadcrumb-nav {
    display: block;
  }
}

/* Construction Banner */
.construction-banner {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 12px 0;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 10001;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.construction-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.construction-banner i {
  font-size: 1.1em;
  animation: pulse 2s infinite;
}

.construction-banner span {
  font-size: 0.95rem;
}

.construction-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
  margin-left: auto;
}

.construction-close:hover,
.construction-close:focus {
  background: rgba(255, 255, 255, 0.3);
}

.construction-close i {
  animation: none;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Utilities */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
a { color: #007b9a; }
a:hover, a:focus { color: #005a73; }
:focus-visible { outline: 3px solid #007b9a66; outline-offset: 2px; }

/* Top Bar */
.top-bar {
  background-color: #007b9a;
  color: white;
  padding: 8px 0;
  font-size: 0.95rem;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }

.appointment-link, .contact-link {
  color: white; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: opacity 0.2s ease;
}
.appointment-link:hover, .contact-link:hover { opacity: 0.85; }

/* Language Switcher */
.language-switcher { display: inline-flex; background: rgba(255,255,255,0.12); border-radius: 6px; padding: 2px; }
.lang-btn {
  background: transparent; border: 0; color: #fff; padding: 6px 10px; border-radius: 4px; font-size: 0.85rem; cursor: pointer;
}
.lang-btn:hover, .lang-btn:focus { background: rgba(255,255,255,0.2); }
.lang-btn.active { background: rgba(255,255,255,0.28); }

/* Header */
.header { background: #fff; border-bottom: 1px solid #e6e6e6; padding: 16px 0; position: relative; }
.header .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.logo-link { display: block; }
.logo { height: 120px; width: auto; }

/* Hamburger */
.hamburger-menu {
  display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.hamburger-menu span { width: 26px; height: 3px; background:#007b9a; border-radius: 2px; transition: 0.3s; }
.hamburger-menu.active span:nth-child(1){ transform: rotate(-45deg) translate(-6px, 7px); }
.hamburger-menu.active span:nth-child(2){ opacity: 0; }
.hamburger-menu.active span:nth-child(3){ transform: rotate(45deg) translate(-6px, -7px); }

/* Nav */
.nav-container { display: flex; align-items: center; }
.nav { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; flex-wrap: wrap; justify-content: flex-end; }
.nav a { text-decoration: none; color: #007b9a; font-weight: 600; padding: 8px 10px; border-radius: 6px; }
.nav a:hover, .nav a:focus { background: #e0f7fa; }

/* Hero */
.hero {
  position: relative; text-align: center; padding: 120px 20px; color: white; overflow: hidden;
  background: url('images/hero-background.png') center center / cover no-repeat;
}
.hero::before {
  content: ""; position: absolute; inset: 0; background: rgba(0,123,154,0.55);
}
.hero .container { position: relative; z-index: 1; }
.hero-brand { margin-bottom: 28px; }
.business-name { font-size: 1.8rem; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; margin: 0; color: #fff; }
.hero-divider { width: 84px; height: 2px; background: #fff; margin: 14px auto 0; opacity: 0.85; }
.hero h1 { font-size: 2.4rem; margin: 18px 0; }
.hero p { font-size: 1.15rem; margin-bottom: 26px; }

.btn-primary {
  background:#fff; color:#007b9a; padding: 12px 22px; border:none; border-radius: 8px; font-weight: 700; text-decoration: none; cursor: pointer;
  transition: transform .06s ease, background .2s ease;
}
.btn-primary:hover, .btn-primary:focus { background:#e0f7fa; }
.btn-primary:active { transform: translateY(1px); }

/* Sections */
.section { padding: 60px 0; }
.section.light { background: #f0f4f8; }
.section h2 { display:flex; align-items:center; justify-content:center; gap:12px; margin:0 0 36px; color:#007b9a; }
.section h2 i { font-size: 1.15em; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card { background:#fff; padding:20px; border-radius:10px; box-shadow: 0 2px 8px rgba(0,0,0,.05); }

/* Service Cards */
.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 123, 154, 0.1);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 123, 154, 0.15);
}

.service-title {
  color: #007b9a;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e0f7fa;
  position: relative;
}

.service-title::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #007b9a;
}

.service-description {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-weight: 500;
}

.service-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-feature {
  position: relative;
  padding: 8px 0 8px 24px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom: 1px solid #f0f0f0;
}

.service-feature:last-child {
  border-bottom: none;
}

.service-feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: #007b9a;
  font-weight: bold;
  font-size: 0.9rem;
}

/* About Text */
.about-text {
  background: rgba(255, 255, 255, 0.8);
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 123, 154, 0.08);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid rgba(0, 123, 154, 0.1);
  backdrop-filter: blur(10px);
}

/* Location */
.location-container { display:flex; gap: 36px; margin-top: 28px; }
.map-container { flex:1; min-width:0; border-radius:10px; overflow:hidden; box-shadow:0 2px 8px rgba(0,0,0,.1); aspect-ratio: 16/10; }
.location-info { flex:1; display:flex; flex-direction:column; gap: 24px; }
.info-block { background:#fff; padding:20px; border-radius:10px; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.info-block h3 { color:#007b9a; margin:0 0 12px; }

/* Testimonials */
.testimonials-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.testimonial-card { background:#fff; padding:22px; border-radius:10px; box-shadow:0 2px 8px rgba(0,0,0,.05); transition: transform .2s ease; }
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-content p { font-style: italic; color:#555; }
.testimonial-author { border-top:1px solid #eee; margin-top:14px; padding-top:12px; }
.author-name { font-weight:700; color:#007b9a; margin:0; }
.author-location { color:#777; font-size:.95rem; margin: 4px 0 0; }

/* Pricing */
.pricing-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; margin-top: 28px; }
.pricing-card { background:#fff; padding:26px; border-radius:12px; text-align:center; position:relative; box-shadow:0 2px 8px rgba(0,0,0,.05); transition: transform .2s ease; }
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card.featured { border:2px solid #007b9a; }
.featured-tag { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:#007b9a; color:#fff; padding:5px 14px; border-radius: 999px; font-weight:700; }
.pricing-card h3 { color:#007b9a; margin:0; }
.price { font-size: 2.2rem; font-weight: 800; color:#333; margin:16px 0; }
.pricing-features { list-style:none; margin:0 0 22px; padding:0; }
.pricing-features li { padding:10px 0; border-bottom:1px solid #eee; }
.pricing-features li:last-child { border-bottom:0; }

/* FAQ */
.faq-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(360px,1fr)); gap: 24px; margin-top: 28px; }
.faq-item { background:#fff; padding:22px; border-radius:10px; box-shadow:0 2px 8px rgba(0,0,0,.05); }
.faq-item h3 { color:#007b9a; margin:0 0 10px; }

/* Contact */
.contact-container { margin-top: 28px; }
.contact-info { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-info-block { background:#fff; padding:20px; border-radius:10px; box-shadow:0 2px 8px rgba(0,0,0,.05); }
.contact-info-block h3 { color:#007b9a; margin:0 0 12px; display:flex; align-items:center; gap:10px; }

/* Footer */
.footer { background:#007b9a; color:#fff; padding: 20px 0; margin-top: 40px; }
.footer .container { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.footer-nav a { color:#fff; text-decoration:none; margin-right:16px; }
.footer-nav a:hover, .footer-nav a:focus { text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .location-container, .contact-container { flex-direction: column; }
  .map-container { aspect-ratio: 16/12; }
  .contact-info { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; align-items: flex-start; }
  .header .container { gap: 10px; }
  .logo { height: 90px; }
  .hamburger-menu { display: flex; }
  .nav-container {
    position: fixed; top:0; right:-100%; width: 80%; max-width: 320px; height: 100vh; background:#fff;
    box-shadow: -2px 0 10px rgba(0,0,0,.12); transition: right .25s ease; z-index:1000; padding-top: 84px;
  }
  .nav-container.active { right:0; }
  .nav { flex-direction: column; gap: 0; padding: 0 18px; }
  .nav li { border-bottom: 1px solid #eee; }
  .nav li:last-child { border-bottom: 0; }
  .nav a { display:block; padding: 16px 2px; border-radius: 0; }
  .header::before {
    content:""; position: fixed; inset:0; background: rgba(0,0,0,.45); z-index: 999; opacity: 0; visibility: hidden; transition: .25s ease;
  }
  .header.menu-open::before { opacity: 1; visibility: visible; }
  
  /* Construction banner mobile styles */
  .construction-banner .container {
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
  }
  
  .construction-banner span {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .construction-close {
    margin-left: 0;
    align-self: flex-end;
  }
}
@media (max-width: 480px) {
  .logo { height: 76px; }
  .business-name { font-size: 1.35rem; letter-spacing: 1px; }
  .hero h1 { font-size: 1.9rem; }
  .faq-grid { grid-template-columns: 1fr; }
}
