/* ============================================================
   ARTISANTLOCK - Complete Production-Ready Stylesheet
   Plumbing & Locksmith Business Website
   ============================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;900&display=swap');

/* ============================================================
   1. CSS RESET & BASE STYLES
   ============================================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

.site-wrapper {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
  position: relative;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, opacity 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  color: #1A1A1A;
}

/* Focus-visible accessibility outlines */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #D4A437;
  outline-offset: 2px;
}

/* ============================================================
   2. CONTAINER
   ============================================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   3. TOP BAR
   ============================================================ */

.top-bar {
  background-color: #0B4A6B;
  color: #FFFFFF;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

a.top-bar-item:hover {
  opacity: 0.85;
}

.top-bar-item i {
  font-size: 13px;
}

/* ============================================================
   4. HEADER / NAVIGATION
   ============================================================ */

.header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-list li a,
.nav-link {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1A1A1A;
  transition: color 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.nav-list li a:hover,
.nav-link:hover {
  color: #D4A437;
}

.nav-link.active {
  color: #D4A437;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #D4A437;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-cta:hover {
  opacity: 0.9;
  color: #FFFFFF;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #1A1A1A;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================
   4b. NAVBAR (contact.html alternate header structure)
   ============================================================ */

.navbar {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1A1A1A;
  transition: color 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.nav-links li a:hover {
  color: #D4A437;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #D4A437;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.btn-phone:hover {
  opacity: 0.9;
  color: #FFFFFF;
}

/* ============================================================
   5. HERO CAROUSEL (index.html)
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-slides {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: transform;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: #FFFFFF;
  max-width: 800px;
  width: 90%;
  padding: 0 20px;
}

.hero-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #D4A437;
  font-weight: 500;
}

.hero-heading {
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #FFFFFF;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #D4A437;
  color: #FFFFFF;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-cta:hover {
  opacity: 0.9;
  color: #FFFFFF;
}

/* Hero Navigation Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.hero-arrow:hover {
  background-color: rgba(255, 255, 255, 0.45);
}

.hero-arrow-prev {
  left: 20px;
}

.hero-arrow-next {
  right: 20px;
}

/* Hero Dot Indicators */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
  background-color: #D4A437;
}

/* ============================================================
   6. SERVICES SECTION (index.html)
   ============================================================ */

.services {
  padding: 80px 0;
  background-color: #F5F5F5;
}

/* section-title used directly on h2 in index.html and serrurier page,
   and as a wrapper div in plombier page */
h2.section-title,
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 50px;
  line-height: 1.2;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  display: block;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  contain: content;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #D4A437;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-card-arrow {
  opacity: 1;
}

.service-card-title {
  padding: 20px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #1A1A1A;
}

/* ============================================================
   7. DESCRIPTION SECTION (index.html)
   ============================================================ */

.description {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.description-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.description-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.description-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.description-text {
  padding: 0;
}

.description-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  color: #D4A437;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.description-heading {
  font-size: 32px;
  font-weight: 700;
  color: #0B4A6B;
  margin-bottom: 20px;
  line-height: 1.3;
}

.description-paragraph {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.description-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.description-availability {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #666666;
  font-weight: 500;
  font-size: 15px;
}

.description-availability i {
  color: #D4A437;
}

.description-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #D4A437;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.3s ease;
}

.description-phone:hover {
  opacity: 0.9;
  color: #FFFFFF;
}

/* ============================================================
   8. TESTIMONIALS SECTION (index.html)
   ============================================================ */

.testimonials {
  padding: 80px 0;
  background-color: #F5F5F5;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  width: 33.333%;
  min-width: 33.333%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 12px;
}

.testimonial-card-body {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-body:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #D4A437;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-info strong {
  display: block;
  font-size: 16px;
  color: #1A1A1A;
}

.testimonial-info span {
  font-size: 13px;
  color: #666666;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-size: 16px;
  color: #1A1A1A;
}

.testimonial-author span {
  font-size: 14px;
  color: #666666;
}

.testimonial-rating {
  margin-left: auto;
  flex-shrink: 0;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-stars i {
  color: #FFC107;
  font-size: 16px;
}

.testimonial-category {
  display: inline-block;
  background-color: rgba(212, 164, 55, 0.1);
  color: #D4A437;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  font-style: italic;
}

/* Testimonials Navigation Arrows */
.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #1A1A1A;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  z-index: 5;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.testimonials-arrow:hover {
  background-color: #D4A437;
  color: #FFFFFF;
}

.testimonials-arrow-prev {
  left: -10px;
}

.testimonials-arrow-next {
  right: -10px;
}

/* ============================================================
   9. CTA SECTION
   ============================================================ */

.cta-section {
  padding: 60px 0;
  background-color: #F5F5F5;
  text-align: center;
}

.cta-section h2,
.cta-heading {
  font-size: 32px;
  font-weight: 700;
  color: #0B4A6B;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-section p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 25px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #D4A437;
  color: #FFFFFF;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-phone:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 164, 55, 0.35);
  color: #FFFFFF;
}

/* .btn-cta (plombier page alternate CTA button) */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #D4A437;
  color: #FFFFFF;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 164, 55, 0.35);
  color: #FFFFFF;
}

/* ============================================================
   10. FOOTER
   ============================================================ */

.footer {
  background-color: #0B4A6B;
  color: #FFFFFF;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-col {
  /* Standard column */
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #D4A437;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #D4A437;
}

.footer-links-cities li a {
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #D4A437;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.footer-phone:hover {
  opacity: 0.9;
  color: #FFFFFF;
}

/* ============================================================
   11. PAGE HERO (inner pages: plombier, serrurier, contact)
   ============================================================ */

.page-hero {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 74, 107, 0.7);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 20px;
}

.page-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-hero-content h1 span {
  color: #D4A437;
}

.page-hero-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.5;
}

/* ============================================================
   12. DETAIL SERVICES (plombier & serrurier pages)
   ============================================================ */

.detail-services {
  padding: 80px 0;
  background-color: #F5F5F5;
}

.detail-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* When there are 4 items (like plombier page), use 2 columns */
.detail-services-grid:has(.detail-service-card:nth-child(4):last-child) {
  grid-template-columns: repeat(2, 1fr);
}

.detail-service-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  contain: content;
}

.detail-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.detail-service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.detail-service-card p {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
}

/* Icon Circle (plombier page uses .icon-circle) */
.icon-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B4A6B, #0d6e9e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-circle i {
  font-size: 28px;
  color: #FFFFFF;
}

/* Detail Service Icon (serrurier page uses .detail-service-icon) */
.detail-service-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B4A6B, #0d6e9e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.detail-service-icon i {
  font-size: 28px;
  color: #FFFFFF;
}

/* ============================================================
   13. WHY US / WHY CHOOSE US SECTION
   ============================================================ */

.why-us {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-us-card {
  display: flex;
  gap: 15px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  padding: 25px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  contain: content;
}

.why-us-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.why-us-card h3,
.why-us-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 5px;
}

.why-us-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}

/* Why Icon (plombier page uses .why-icon) */
.why-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #D4A437, #E8B84D);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  font-size: 20px;
  color: #FFFFFF;
}

/* Why Us Icon (serrurier page uses .why-us-icon) */
.why-us-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #D4A437, #E8B84D);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-icon i {
  font-size: 20px;
  color: #FFFFFF;
}

/* ============================================================
   14. COVERAGE / CITIES SECTION
   ============================================================ */

.coverage {
  padding: 80px 0;
  background-color: #F5F5F5;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.city-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.city-link:hover {
  background-color: #0B4A6B;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.city-link i {
  color: #D4A437;
  font-size: 14px;
  transition: color 0.3s ease;
}

.city-link:hover i {
  color: #FFFFFF;
}

/* ============================================================
   15. CONTACT FORM (contact.html)
   ============================================================ */

.contact-section {
  padding: 80px 0;
}

.contact-form-wrapper {
  flex: 1;
  min-width: 300px;
}

.contact-info-wrapper {
  flex: 0 0 380px;
  min-width: 280px;
}

.contact-form {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: #F5F5F5;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: #1A1A1A;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-control:focus {
  border-color: #0B4A6B;
  background-color: #FFFFFF;
  outline: none;
}

.form-control::placeholder {
  color: #999999;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Contact Layout (flex container for form + info columns) */
.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Contact Info List */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #D4A437;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: #FFFFFF;
  font-size: 18px;
}

.contact-info-item strong {
  display: block;
  color: #1A1A1A;
  font-size: 15px;
  margin-bottom: 2px;
}

.contact-info-item span {
  color: #666666;
  font-size: 15px;
}

.contact-info-link {
  color: #D4A437;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.contact-info-link:hover {
  opacity: 0.8;
}

/* Coverage Card */
.contact-coverage-card {
  background: linear-gradient(135deg, #0B4A6B, #0d6e9e);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: #FFFFFF;
}

.contact-coverage-card i {
  font-size: 3rem;
  margin-bottom: 15px;
  opacity: 0.8;
}

.contact-coverage-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.contact-coverage-card p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.7;
}

/* Contact Section Title alignment override */
.contact-form-wrapper .section-title,
.contact-info-wrapper .section-title {
  text-align: left;
  font-size: 28px;
  margin-bottom: 30px;
  color: #0B4A6B;
}

/* ============================================================
   16. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background-color: #D4A437;
  color: #FFFFFF;
}

.btn-primary:hover {
  opacity: 0.9;
  color: #FFFFFF;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #D4A437;
  border: 2px solid #D4A437;
}

.btn-secondary:hover {
  background-color: #D4A437;
  color: #FFFFFF;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 18px;
}

.btn-block {
  width: 100%;
}

/* ============================================================
   17. MOBILE NAVIGATION OVERLAY
   ============================================================ */

.nav.open {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.nav.open .nav-list {
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.nav.open .nav-list li a {
  font-size: 18px;
}

/* Nav links mobile overlay (contact.html structure) */
.nav-links.open {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  gap: 20px;
}

.nav-links.open li a {
  font-size: 18px;
}

/* ============================================================
   18. RESPONSIVE - TABLET (max-width: 1023px)
   ============================================================ */

@media (max-width: 1023px) {
  /* Header */
  .header {
    overflow: visible;
  }

  .header-content {
    padding: 10px 0;
  }

  .nav {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .btn-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Services Grid: 2 columns */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Detail Services Grid: 2 columns */
  .detail-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why Us Grid: 2 columns */
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Cities Grid: 3 columns */
  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer Grid: 2 columns */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonial card sizing */
  .testimonial-card {
    width: 50%;
    min-width: 50%;
  }

  /* Description Grid */
  .description-grid {
    gap: 30px;
  }

  /* Hero */
  .hero {
    height: 500px;
  }

  .hero-heading {
    font-size: 34px;
  }

  .hero-description {
    font-size: 16px;
  }

  /* Page Hero */
  .page-hero {
    min-height: 350px;
  }

  .page-hero-content h1 {
    font-size: 34px;
  }

  /* Contact layout: stack on tablet */
  .contact-info-wrapper {
    flex: 1 1 100%;
  }

  /* Testimonials arrows */
  .testimonials-arrow-prev {
    left: 5px;
  }

  .testimonials-arrow-next {
    right: 5px;
  }
}

/* ============================================================
   19. RESPONSIVE - MOBILE (max-width: 767px)
   ============================================================ */

@media (max-width: 767px) {
  /* Touch-friendly improvements */
  a,
  button,
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-cta,
  .cta-phone,
  .header-cta,
  .btn-phone,
  .hero-cta,
  .footer-phone,
  .description-phone {
    touch-action: manipulation;
  }

  /* Top bar */
  .top-bar-content {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  /* Services Grid: 1 column */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Detail Services Grid: 1 column */
  .detail-services-grid {
    grid-template-columns: 1fr;
  }

  /* Why Us Grid: 1 column */
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  /* Cities Grid: 2 columns */
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Contact form rows: 1 column */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Contact section padding */
  .contact-section {
    padding: 60px 0;
  }

  /* Footer Grid: 1 column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Description Grid: 1 column */
  .description-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .description-image img {
    min-height: 280px;
  }

  /* Testimonial card: 1 per view */
  .testimonial-card {
    width: 100%;
    min-width: 100%;
  }

  /* Hero */
  .hero {
    height: 450px;
  }

  .hero-heading {
    font-size: 28px;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 14px;
  }

  .hero-cta {
    padding: 12px 24px;
    font-size: 15px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .hero-arrow-prev {
    left: 10px;
  }

  .hero-arrow-next {
    right: 10px;
  }

  /* Page Hero */
  .page-hero {
    min-height: 300px;
  }

  .page-hero-content h1 {
    font-size: 28px;
  }

  .page-hero-content p {
    font-size: 16px;
  }

  /* Section Title */
  h2.section-title,
  .section-title,
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 35px;
  }

  /* CTA */
  .cta-section h2,
  .cta-heading {
    font-size: 24px;
  }

  .cta-phone {
    font-size: 18px;
    padding: 14px 30px;
  }

  .btn-cta {
    font-size: 18px;
    padding: 14px 30px;
  }

  /* Description */
  .description-heading {
    font-size: 26px;
  }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Sections padding */
  .services,
  .description,
  .testimonials,
  .detail-services,
  .why-us,
  .coverage {
    padding: 60px 0;
  }

  /* Description CTA */
  .description-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Testimonials arrows */
  .testimonials-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .testimonials-arrow-prev {
    left: 0;
  }

  .testimonials-arrow-next {
    right: 0;
  }
}

/* ============================================================
   20. RESPONSIVE - SMALL (max-width: 479px)
   ============================================================ */

@media (max-width: 479px) {
  .container {
    padding: 0 15px;
  }

  /* Hero */
  .hero {
    height: 400px;
  }

  .hero-heading {
    font-size: 24px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-cta {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Page Hero */
  .page-hero {
    min-height: 250px;
  }

  .page-hero-content h1 {
    font-size: 24px;
  }

  .page-hero-content p {
    font-size: 14px;
  }

  /* Section Title */
  h2.section-title,
  .section-title,
  .section-title h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  /* Cities Grid: 1 column */
  .cities-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-section h2,
  .cta-heading {
    font-size: 20px;
  }

  .cta-phone {
    font-size: 16px;
    padding: 12px 24px;
  }

  .btn-cta {
    font-size: 16px;
    padding: 12px 24px;
  }

  /* Service Card Image */
  .service-card-image {
    height: 180px;
  }

  /* Description */
  .description-heading {
    font-size: 22px;
  }

  .description-paragraph {
    font-size: 15px;
  }

  /* Buttons */
  .btn-lg {
    padding: 14px 28px;
    font-size: 16px;
  }

  /* Testimonial */
  .testimonial-card {
    padding: 0 8px;
  }

  .testimonial-card-body {
    padding: 20px;
  }

  /* Why Us Card */
  .why-us-card {
    padding: 20px;
  }

  /* Detail Service Card */
  .detail-service-card {
    padding: 25px 20px;
  }

  /* Footer */
  .footer-links-cities li a {
    font-size: 12px;
  }

  /* Sections padding */
  .services,
  .description,
  .testimonials,
  .detail-services,
  .why-us,
  .coverage {
    padding: 45px 0;
  }

  .cta-section {
    padding: 40px 0;
  }

  .footer {
    padding: 40px 0 0;
  }

  /* Hero dots & arrows on small screens */
  .hero-dots {
    bottom: 20px;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }
}

/* ============================================================
   FLOATING PHONE BUTTON (Mobile only)
   ============================================================ */

@keyframes shake-phone {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-12deg); }
  20% { transform: rotate(12deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}

@keyframes bounce-digits {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-3px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(-2px); }
}

@keyframes pulse-phone {
  0%, 100% { box-shadow: 0 3px 15px rgba(11, 74, 107, 0.4); }
  50% { box-shadow: 0 3px 15px rgba(11, 74, 107, 0), 0 0 0 8px rgba(11, 74, 107, 0.15); }
}

a.floating-phone {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 9999;
  align-items: center;
  gap: 8px;
  background-color: #0B4A6B;
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-phone 2.5s infinite;
}

a.floating-phone:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  color: #FFFFFF;
}

a.floating-phone i {
  font-size: 15px;
  animation: shake-phone 2s ease-in-out infinite;
  display: inline-block;
}

a.floating-phone span {
  animation: bounce-digits 2s ease-in-out infinite;
  display: inline-block;
}

@media (max-width: 1023px) {
  .top-bar {
    display: none !important;
  }

  a.floating-phone {
    display: flex !important;
  }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="left"] {
  transform: translateX(-60px);
}

[data-reveal="right"] {
  transform: translateX(60px);
}

[data-reveal="up"] {
  transform: translateY(40px);
}

[data-reveal="down"] {
  transform: translateY(-40px);
}

[data-reveal="zoom"] {
  transform: scale(0.85);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children animation */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 0.19s; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 0.26s; }
[data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: 0.33s; }
[data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: 0.4s; }

[data-reveal-stagger].revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse animation for CTA */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 164, 55, 0.5); }
  50% { box-shadow: 0 0 0 15px rgba(212, 164, 55, 0); }
}

.pulse-cta {
  animation: pulse-gold 2s infinite;
}

/* Float animation for icons */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-icon {
  animation: float 3s ease-in-out infinite;
}

/* ============================================================
   21. UTILITY & MISC
   ============================================================ */

/* Smooth image loading */
img {
  transition: opacity 0.3s ease;
}

/* Selection color */
::selection {
  background-color: #D4A437;
  color: #FFFFFF;
}

::-moz-selection {
  background-color: #D4A437;
  color: #FFFFFF;
}

/* Scrollbar styling (webkit) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  background: #0B4A6B;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #083c58;
}
