/* ============================================
   CLOVERLEAF CONSTRUCTION - VANILLA CSS
   ============================================ */

/* ============ FONTS ============ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
  --brand-black: #0a0a0a;
  --brand-dark: #121212;
  --brand-gray: #262626;
  --brand-accent: #ffffff;
  
  --font-sans: 'Manrope', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

/* ============ RESET & BASE ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--brand-black);
  color: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

::selection {
  background-color: white;
  color: black;
}

/* ============ CUSTOM SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* ============ CONTAINER ============ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ UTILITIES ============ */
.hidden {
  display: none !important;
}

/* ============ LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease-in-out;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  object-fit: contain;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.loader-title {
  font-size: 3rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.loader-bar {
  margin-top: 2rem;
  height: 1px;
  width: 6rem;
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  position: relative;
}

.loader-progress {
  height: 100%;
  background-color: white;
  animation: slide 1.5s ease-in-out infinite;
  width: 100%;
}

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

@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: transparent;
  padding: 1.5rem 0;
}

nav.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  height: 4rem;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-logo:focus {
  outline: none;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: white;
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  border: 1px solid white;
  border-radius: 9999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  background: transparent;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
  cursor: pointer;
}

.nav-cta:hover {
  background-color: white;
  color: black;
}

.mobile-menu-btn {
  display: block;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 50;
  padding: 0.5rem;
}

.mobile-menu-btn:focus {
  outline: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: transform 0.5s ease-in-out;
  transform: translateX(100%);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu .nav-link {
  font-size: 1.25rem;
  font-family: var(--font-serif);
}

.mobile-menu .nav-cta {
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
  will-change: opacity, transform;
}

.hero-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
  text-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 300;
  color: #e5e7eb;
  margin-bottom: 2rem;
  letter-spacing: 0.025em;
}

.hero-description {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  color: #d1d5db;
  line-height: 1.75;
  display: none;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  padding: 0.75rem 2rem;
  background-color: white;
  color: black;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 16rem;
  text-align: center;
}

.btn-primary:hover {
  background-color: #e5e7eb;
}

.btn-secondary {
  padding: 0.75rem 2rem;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 16rem;
  text-align: center;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  animation: bounce 1s infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ============ SECTIONS ============ */
section {
  padding: 6rem 0;
}

.section-dark {
  background-color: var(--brand-dark);
}

.section-white {
  background-color: white;
  color: black;
}

.section-tag {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 3rem;
  font-family: var(--font-serif);
  color: white;
}

.section-white .section-title {
  color: black;
}

/* ============ FADE IN ANIMATION ============ */
.fade-in {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: all 1s ease-out;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.02);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  height: 100%;
}

.service-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.service-card::before,
.service-card::after {
  content: '';
  position: absolute;
  transition: all 0.5s ease;
}

.service-card::before {
  top: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
  width: 100%;
  height: 100%;
  border-color: rgba(255, 255, 255, 0.1);
  border-opacity: 0.5;
}

.service-card::after {
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover::after {
  width: 4rem;
  height: 4rem;
  border-color: rgba(255, 255, 255, 0.3);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.service-card:hover .service-icon svg {
  color: #d1d5db;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 0.025em;
  position: relative;
  z-index: 10;
}

.service-description {
  color: #9ca3af;
  line-height: 1.75;
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.service-link-wrapper {
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.service-divider {
  width: 2rem;
  height: 1px;
  background-color: white;
  transition: all 0.5s ease-out;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

.service-card:hover .service-divider {
  width: 100%;
  opacity: 1;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.service-link:hover {
  color: #d1d5db;
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(0.25rem);
}

/* ============ PROCESS ============ */
.process-line {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
  z-index: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.process-step {
  background-color: var(--brand-black);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  position: relative;
}

.process-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 10;
}

.process-title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.5rem;
}

.process-description {
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.75;
}

/* ============ PORTFOLIO ============ */
.portfolio-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.portfolio-link {
  color: white;
  border-bottom: 1px solid white;
  padding-bottom: 0.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  display: inline-block;
}

.portfolio-link:hover {
  color: #d1d5db;
  border-color: #d1d5db;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-image-wrapper {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: grayscale(100%);
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 50%;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d1d5db;
  margin-bottom: 0.25rem;
}

.portfolio-title {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: white;
}

/* ============ TESTIMONIALS ============ */
.testimonials-carousel {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.testimonials-overflow {
  overflow: hidden;
}

.testimonials-slides {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.testimonial-slide {
  width: 100%;
  flex-shrink: 0;
  padding: 0 1rem;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  border-radius: 0.5rem;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.testimonial-quote-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
}

.testimonial-quote-icon.top {
  top: 1.5rem;
  left: 1.5rem;
}

.testimonial-quote-icon.bottom {
  bottom: 1.5rem;
  right: 1.5rem;
  transform: rotate(180deg);
}

.testimonial-text {
  font-size: 1.5rem;
  color: #e5e7eb;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.75;
  font-family: var(--font-serif);
}

.testimonial-name {
  color: white;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.testimonial-location {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial-nav:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.testimonial-prev {
  left: 0;
  transform: translate(-0.5rem, -50%);
}

.testimonial-next {
  right: 0;
  transform: translate(0.5rem, -50%);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.testimonial-dot.active {
  background-color: white;
  width: 1.5rem;
  border-radius: 9999px;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0.7;
  margin-top: 4rem;
}

.google-logo {
  width: 1.25rem;
  height: 1.25rem;
  filter: grayscale(100%);
}

.google-text {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-border {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border: 2px solid black;
  z-index: 0;
}

.about-image {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  object-fit: cover;
}

.about-description {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-description-secondary {
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-number {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  font-family: var(--font-serif);
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

/* ============ SERVICE AREA ============ */
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.service-area-description {
  color: #9ca3af;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.city-icon {
  color: #6b7280;
}

.service-area-map {
  width: 100%;
  height: 20rem;
  background-color: #1f2937;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.map-image:hover {
  opacity: 1;
}

.map-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.map-badge-inner {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-badge-text {
  color: white;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============ FAQ ============ */
.faq-container {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.faq-question:focus {
  outline: none;
}

.faq-question-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  padding-right: 1rem;
}

.faq-icon-wrapper {
  color: white;
  flex-shrink: 0;
  margin-left: 1rem;
  padding: 0.25rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
  max-height: 10rem;
  opacity: 1;
}

.faq-answer-text {
  padding: 0 1.5rem 1.5rem;
  color: #9ca3af;
  line-height: 1.75;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
  color: #6b7280;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background-color: #f3f4f6;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  color: black;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  ring: 2px solid black;
}

.form-select {
  appearance: none;
  color: #6b7280;
}

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

.btn-submit {
  width: 100%;
  background-color: black;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #1f2937;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}

.contact-info-title {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-wrapper {
  background-color: #f3f4f6;
  padding: 0.75rem;
  border-radius: 50%;
}

.contact-info-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #6b7280;
}

.contact-info-value {
  font-size: 1.25rem;
  font-weight: 500;
  color: black;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.contact-info-value:hover {
  text-decoration: underline;
}

.contact-info-hours {
  font-size: 1.125rem;
}

.contact-info-hours-sub {
  color: #6b7280;
  font-size: 1rem;
}

.contact-quote {
  background-color: #f3f4f6;
  padding: 2rem;
  border-radius: 0.5rem;
}

.contact-quote-text {
  font-style: italic;
  color: #6b7280;
}

/* ============ FOOTER ============ */
footer {
  background-color: black;
  color: white;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  text-align: center;
}

.footer-title {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 0.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-contact a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-divider {
  display: none;
  color: #374151;
}

.footer-copyright {
  color: #6b7280;
  font-size: 0.875rem;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: #9ca3af;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: white;
  transform: scale(1.1);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-legal a {
  text-decoration: none;
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* ============ SERVICES PAGE ============ */
.services-page {
  background-color: var(--brand-black);
  min-height: 100vh;
  color: white;
  padding-top: 5rem;
}

.services-header {
  padding: 5rem 0;
  background-color: var(--brand-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.services-header-title {
  font-size: 4rem;
  font-family: var(--font-serif);
  color: white;
  margin-bottom: 1.5rem;
}

.services-header-subtitle {
  font-size: 1.25rem;
  color: #9ca3af;
  max-width: 42rem;
  margin: 0 auto;
  font-weight: 300;
}

.service-detail {
  padding: 6rem 0;
}

.service-detail:nth-child(even) {
  background-color: var(--brand-dark);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail:nth-child(odd) .service-detail-grid {
  /* Normal order on mobile */
}

.service-detail-content {
  width: 100%;
}

.service-detail-divider {
  width: 4rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
}

.service-detail-title {
  font-size: 2.25rem;
  font-family: var(--font-serif);
  color: white;
  margin-bottom: 1.5rem;
}

.service-detail-description {
  color: #9ca3af;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
}

.service-feature-dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: white;
  border-radius: 50%;
}

.service-feature-text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.service-detail-carousel {
  width: 100%;
  height: 400px;
}

/* ============ IMAGE CAROUSEL ============ */
.image-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-color: #1f2937;
  border-radius: 0.5rem;
  overflow: hidden;
}

.carousel-slides-wrapper {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}

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

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.carousel-nav:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.image-carousel:hover .carousel-nav {
  opacity: 1;
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

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

.carousel-dot.active {
  background-color: white;
  width: 1rem;
  border-radius: 9999px;
}

.services-cta {
  padding: 6rem 0;
  background-color: white;
  color: black;
  text-align: center;
}

.services-cta-title {
  font-size: 2.25rem;
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
}

.services-cta-text {
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: black;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.services-cta-button:hover {
  background-color: #1f2937;
}

/* ============ RESPONSIVE DESIGN ============ */

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
  
  .btn-primary,
  .btn-secondary {
    width: auto;
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-title {
    font-size: 7rem;
  }
  
  .hero-description {
    display: block;
  }
  
  .section-title {
    font-size: 3.75rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-line {
    display: block;
  }
  
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .process-step {
    background-color: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
  }
  
  .portfolio-header {
    flex-direction: row;
    align-items: flex-end;
  }
  
  .portfolio-link {
    margin-top: 0;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .portfolio-item:nth-child(2) {
    margin-top: 4rem;
  }
  
  .testimonial-slide {
    padding: 0 3rem;
  }
  
  .testimonial-card {
    padding: 3rem;
  }
  
  .testimonial-text {
    font-size: 2rem;
  }
  
  .testimonial-prev {
    transform: translate(-3rem, -50%);
  }
  
  .testimonial-next {
    transform: translate(3rem, -50%);
  }
  
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    flex-direction: row;
  }
  
  .footer-brand {
    text-align: left;
  }
  
  .footer-contact {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .footer-divider {
    display: inline;
  }
  
  .footer-right {
    align-items: flex-end;
  }
  
  .services-header-title {
    font-size: 5rem;
  }
  
  .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-detail:nth-child(odd) .service-detail-grid {
    direction: ltr;
  }
  
  .service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
  }
  
  .service-detail:nth-child(even) .service-detail-content {
    direction: ltr;
  }
  
  .service-detail-carousel {
    height: 500px;
  }
  
  .image-carousel {
    min-height: 400px;
  }
  
  .loader-icon {
    width: 5rem;
    height: 5rem;
  }
  
  .loader-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 9rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .nav-desktop {
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.75rem;
  }
}
