/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  background-image: radial-gradient(circle at 50% 50%, #0b0b0b 0%, #000000 100%);
  min-height: 100vh;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section */
.section {
  /* increased top padding to create more space below fixed nav */
  padding: 6rem 0 4rem 0;
}

.section__title {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title {
  text-align: center;
  margin-bottom: 2rem;
  /* added top margin to create space below nav on pages */
  margin-top: 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  min-height: 70px;
}

.nav__logo {
    font-family: "Playfair Display", serif;
    color: #ffffff;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 2px;
}

.nav__logo-text {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    transition: color 0.3s ease;
    display: block;
}

/* Style for the tagline */
.nav__tagline {
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    display: block;
    transition: color 0.3s ease;
}

/* Hover effects */
.nav__logo:hover .nav__logo-text {
    color: rgba(255, 255, 255, 0.9);
}

.nav__logo:hover .nav__tagline {
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .nav__logo {
        font-size: 1.3rem;
        margin-left: 0.5rem;
    }
    
    .nav__logo-text {
        font-size: 1.3rem;
    }
    
    .nav__tagline {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .nav__logo-text {
        font-size: 1.2rem;
    }
    
    .nav__tagline {
        font-size: 0.6rem;
    }
}

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

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: #ffffff;
}

.nav__link--active::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
}

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

.nav__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav__toggle span {
  width: 25px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav {
    /* improved mobile nav spacing and alignment */
    padding: 0.75rem 0;
    justify-content: space-between;
    align-items: center;
  }

  .nav__logo {
    /* better mobile logo sizing and positioning */
    font-size: 1.3rem;
    margin-left: 0.5rem;
  }

  /* hide WhatsApp button in nav on mobile to reduce clutter */
  .nav .btn--primary {
    display: none;
  }

  .nav__toggle {
    /* better hamburger positioning */
    margin-right: 0.5rem;
  }

  .nav__menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    transition: left 0.3s ease;
  }

  .nav__menu.active {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .nav__link {
    font-size: 1.2rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .nav__actions {
    margin-top: 2rem;
    width: 100%;
  }

  .nav__toggle {
    display: flex;
  }

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
}

/* improved mobile button styling */
@media (max-width: 768px) {
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .btn--large {
    padding: 0.75rem 1.4rem;
    font-size: 0.9rem;
  }
}

.btn--primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--tertiary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--tertiary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn--full {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #000000 0%, #0b0b0b 50%, #151515 100%);
  position: relative;
  padding-top: 70px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 1;
}

.hero__content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  text-align: left;
}

.hero__content {
  flex: 1;
  min-width: 0; /* Allows flex item to shrink below its content size */
}

.hero__image-container {
  flex: 0 0 300px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero__image:hover {
  transform: scale(1.02);
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .hero {
    padding-top: 70px;
    padding-bottom: 2rem;
    min-height: auto;
  }

  .hero__content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .hero__image-container {
    flex: 0 0 auto;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__secondary-actions {
    justify-content: center;
  }
}

.hero__title-wrapper {
  margin-bottom: 1.5rem;
}

.hero__title-main {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  padding-bottom: 0.1rem;
}

.hero__title-sub {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.2;
}

/* Mobile-specific hero title adjustments */
@media (max-width: 768px) {
  .hero__title-wrapper {
    margin-bottom: 1rem;
  }

  .hero__title-main {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .hero__title-sub {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }
}

.hero__subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

/* Mobile-specific subtitle adjustments */
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

/* Mobile-specific button container adjustments */
@media (max-width: 768px) {
  .hero__actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero__actions .btn {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero__secondary-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Mobile-specific secondary actions adjustments */
@media (max-width: 768px) {
  .hero__secondary-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0.5rem auto 1.25rem;
    justify-content: center;
  }

  .hero__secondary-actions .btn {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero__note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  font-style: italic;
}

/* Mobile-specific note adjustments */
@media (max-width: 768px) {
  .hero__note {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 1rem;
    padding: 0 0.5rem;
  }
}

.other-areas__text {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* Services Section */
.services {
  background: rgba(11, 11, 11, 0.5);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.service-card__title {
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-card__description {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Gallery Section */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery__item {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.gallery__item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Trust Badges */
.trust-badges {
  background: rgba(21, 21, 21, 0.5);
}

.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trust-badge {
  text-align: center;
  padding: 1.5rem;
}

.trust-badge__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.trust-badge__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.testimonial__text {
  font-style: italic;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial__author {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* About Page */
.about-hero__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.about-hero__image {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.about-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%);
}

@media (max-width: 768px) {
  .about-hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* CTA Strip */
.cta-strip {
  background: linear-gradient(135deg, #151515 0%, #0b0b0b 100%);
  text-align: center;
}

.cta-strip__title {
  margin-bottom: 0.5rem;
}

.cta-strip__text {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-strip__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Pricing Banner */
.pricing-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-banner__content {
  position: relative;
  z-index: 1;
}

.pricing-banner__title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 600;
}

.pricing-banner__text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-banner__divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 1rem auto;
}

@media (max-width: 768px) {
  .pricing-banner {
    padding: 1.5rem;
    margin: 1.5rem 0 2rem 0;
  }
  
  .pricing-banner__title {
    font-size: 1.2rem;
  }
}

/* Prices Page */
.prices-intro {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.price-table {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
}

.price-table--full {
  grid-column: 1 / -1;
  max-width: 500px;
  margin: 0 auto;
}

.price-table__title {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-item:last-child {
  border-bottom: none;
}

.price-item__service {
  flex: 1;
  color: rgba(255, 255, 255, 0.9);
}

.price-item__dots {
  flex: 1;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.2) 0,
    rgba(255, 255, 255, 0.2) 4px,
    transparent 4px,
    transparent 8px
  );
  margin: 0 1rem;
}

.price-item__price {
  font-weight: 600;
  color: #ffffff;
}

.prices-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* Weddings Section */
.weddings {
  background: rgba(21, 21, 21, 0.5);
  text-align: center;
}

.weddings__content p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-cta__content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-cta__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .sticky-cta {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }

  .sticky-cta__content {
    justify-content: center;
  }

  .sticky-cta .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
  }
}

/* Contact Page */
.contact-intro {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-section__title {
  margin-bottom: 2rem;
  text-align: center;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-btn--whatsapp:hover {
  border-color: #25d366;
}

.contact-btn--instagram:hover {
  border-color: #e4405f;
}

.contact-btn--booksy:hover {
  border-color: #ffffff;
}

.contact-btn svg {
  flex-shrink: 0;
}

.contact-btn__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-btn__title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-btn__subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-phone {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0.5rem;
}

.contact-phone a {
  color: #ffffff;
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.form-input,
.form-textarea {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: #ffffff;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

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

.privacy-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 1rem;
}

/* Location Section */
.location__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location__info h3 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.location__info p {
  color: rgba(255, 255, 255, 0.8);
}

.location__map {
  border-radius: 1rem;
  overflow: hidden;
}

.location__map img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .location__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer__info {
  text-align: left;
}

.footer__text {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__text a {
  color: #ffffff;
  font-weight: 500;
}

.footer__area {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: #ffffff;
}

.footer__bottom {
  text-align: center;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Focus States for Accessibility */
.btn:focus,
.nav__link:focus,
.form-input:focus,
.form-textarea:focus,
.contact-btn:focus,
.footer__social-link:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .btn--primary {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
  }

  .btn--secondary,
  .btn--outline {
    border-width: 2px;
  }

  .service-card,
  .testimonial,
  .price-table {
    border-width: 2px;
  }
}