* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #1f2933;
  background: #ffffff;
}
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
  background:#fff;
  transition: box-shadow 0.25s ease;
}

/* subtle shadow once scrolling */
.main-header.scrolled {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
.hero h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}

.hero h2 {
  font-size: 2rem;
  margin: 20px 0;
  font-weight: 500;
}

.hero p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-buttons {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  margin: 5px;
  font-weight: 600;
}

.btn.primary {
  background: #14b8a6;
  color: #ffffff;
}

.btn.secondary {
  border: 2px solid #14b8a6;
  color: #14b8a6;
}

section {
  padding: 70px 0;
}

h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.why .intro {
  text-align: center;
  margin-bottom: 30px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.feature {
  background: #f1f5f9;
  padding: 18px;
  border-radius: 6px;
}

.areas {
  background: #f8fafc;
  text-align: center;
  font-size: 1.1rem;
}

.contact {
  text-align: center;
}

footer {
  background: #020617;
  color: #cbd5f5;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  border-top: 4px solid #6d28d9; /* soft purple accent */
}

.top-bar {
  background:#020617;
  color:#fff;
  font-size:0.9rem;
}

.top-bar a { color:#14b8a6; }

.top-bar-inner {
  display:flex;
  justify-content:space-between;
  padding:8px 0;
}

.nav-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
}
nav a {
  position: relative;
  margin-left: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #0f172a;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

/* underline animation */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #14b8a6;
  transition: width 0.25s ease;
}

nav a:hover {
  color: #14b8a6;
}

nav a:hover::after {
  width: 100%;
}
.booking form {
  background:#ffffff;
  padding:35px;
  border-radius:12px;
  box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.booking input,
.booking select,
.booking textarea {
  width:100%;
  padding:12px;
  margin:10px 0;
}

.form-msg {
  margin-top:15px;
  color:#14b8a6;
  font-weight:600;
  font-size: 0.95rem;
}
.contact-section {
  background:#f8fafc;
}

.contact-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:50px;
}

.contact-info p {
  margin:15px 0;
  font-size:1.05rem;
}

.contact-info a {
  color:#0f172a;
  font-weight:600;
}

.icon {
  margin-right:8px;
  font-size:1.2rem;
}

.after-hours {
  margin-top:20px;
  font-style:italic;
  color:#334155;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width:100%;
  padding:12px;
  margin:10px 0;
}

#backToTopWrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: none;
  text-align: center;
  z-index: 9999;
}
.back-text {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
#backToTop {
  background: #14b8a6;
  color: #ffffff;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  color: #ffffff;
  padding: 90px 0;
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-video {
  z-index: 0;
}
.hero::after {
  z-index: 1;
}
.logo img {
  height: 86px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info,
  .contact-form {
    text-align: left;
  }
}
.services-row-section {
  background: #f8fafc;
}

.services-row {
  display: flex;
  gap: 24px;
}

.service-col {
  flex: 1;
  background: #ffffff;
  padding: 22px 22px 26px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  position: relative;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.service-col h4 {
  margin-bottom: 6px;
}

.service-desc {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 12px;
}

.doc-list {
  padding-left: 18px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.doc-list li {
  margin-bottom: 6px;
}

/* featured legal service */
.featured {
  border-top: 4px solid #14b8a6;
}

.featured-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.15);
  color: #0f766e;
}

/* smaller buttons */
.btn.small {
  padding: 8px 14px;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* Mobile behavior */
@media (max-width: 900px) {
  .services-row {
    flex-direction: column;
  }
}


