/* ELDIV Cleaning Services - Minimal Clean Design */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  /* Brand Colors */
  --gold: #AF8D41;
  --gold-light: #D4B574;
  --gold-dark: #8B6F2F;

  /* Neutrals */
  --black: #000000;
  --charcoal: #1A1A1A;
  --dark-gray: #2A2A2A;
  --medium-gray: #666666;
  --light-gray: #999999;

  /* Light tones */
  --cream: #FAF8F4;
  --white: #FFFFFF;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

  /* Transitions */
  --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0 0 8px 0;
  z-index: 10000;
  transition: top var(--transition);
  opacity: 0;
}

.skip-link:focus {
  top: 0;
  opacity: 1;
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}

/* ===== Container ===== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Header Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}

.brand-tagline {
  font-size: 0.9375rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(175, 141, 65, 0.15);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== Buttons ===== */
.primary-button,
.cta-primary,
.cta-secondary,
.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}

.primary-button {
  background: var(--gold);
  color: var(--white);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.primary-button:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.cta-primary {
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.cta-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.cta-secondary {
  background: var(--gold);
  border: 2px solid var(--gold);
  color: var(--white);
  padding: 1rem 2rem;
}

.cta-secondary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.service-cta {
  background: var(--white);
  color: var(--charcoal);
  padding: 0.875rem 1.75rem;
}

.service-cta:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(175, 141, 65, 0.12), transparent 60%);
}

.hero-logo-watermark {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.hero-logo-watermark img {
  width: 400px;
  height: auto;
  filter: brightness(1.5);
}

.hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(175, 141, 65, 0.12);
  border: 1px solid rgba(175, 141, 65, 0.25);
  border-radius: 100px;
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  z-index: 1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  will-change: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s ease-in-out infinite;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 0.3;
    transform: translate(-50%, 12px);
  }
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

/* ===== Service Sections ===== */
.service-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.service-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.65));
}

.service-section-alt .service-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.80));
}

.service-container {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.service-content {
  max-width: 600px;
}

.service-section-alt .service-content {
  margin-left: auto;
}

.service-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(175, 141, 65, 0.2);
  border: 1px solid rgba(175, 141, 65, 0.4);
  border-radius: 100px;
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.service-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.service-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(175, 141, 65, 0.4);
}

.value-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  width: 100%;
}

.value-header svg:first-child {
  color: var(--gold-light);
  flex-shrink: 0;
}

.value-title {
  flex: 1;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
  text-align: left;
}

.expand-icon {
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.expandable-value[data-expanded="true"] .expand-icon {
  transform: rotate(180deg);
}

.value-description-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.expandable-value[data-expanded="true"] .value-description-wrapper {
  max-height: 500px;
  padding: 0 1.25rem 0.875rem 1.25rem;
}

.value-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin: 0;
  padding-left: 2rem;
}

/* ===== Trust Section ===== */
.trust-section {
  padding: 6rem 0;
  background: var(--cream);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.9375rem;
  color: var(--medium-gray);
  font-weight: 500;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all var(--transition);
  text-align: left;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(175, 141, 65, 0.4);
  transform: translateY(-2px);
}

.contact-link svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.contact-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  padding: 3rem 0 2rem;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.footer-brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.5rem !important;
  text-align: center;
  width: 100%;
}

.footer-logo {
  width: 100px !important;
  height: 100px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.footer-brand .brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.footer-brand .brand-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.125rem;
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.footer-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* Footer responsive - horizontal links on tablet and desktop */
@media (min-width: 769px) {
  .footer-links {
    flex-direction: row;
    gap: 2rem;
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .service-content,
  .service-section-alt .service-content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-logo-watermark img {
    width: 350px;
  }

  .service-section {
    min-height: 90vh;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  /* Simplified Mobile Navigation */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg,
      rgba(175, 141, 65, 0.98) 0%,
      rgba(139, 111, 48, 0.98) 40%,
      rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    padding: 4rem 2rem;
    overflow-y: auto;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.5rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
  }

  .nav-link:hover,
  .nav-link:active,
  .nav-link.active {
    background: rgba(175, 141, 65, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: scale(1.05);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .primary-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    min-height: 44px;
    min-width: 44px;
  }

  /* Hero Optimizations */
  .hero {
    padding: 6rem 0 3rem;
    min-height: auto;
  }

  .hero-logo-watermark {
    right: 50%;
    transform: translate(50%, -50%);
    opacity: 0.015;
  }

  .hero-logo-watermark img {
    width: 280px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.625rem 1.125rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }

  .hero-description {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    line-height: 1.75;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.875rem;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    min-height: 52px;
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
  }

  /* Service Section Optimizations */
  .service-section {
    min-height: auto;
    padding: 0;
  }

  .service-background img {
    object-position: center center;
  }

  .service-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.90) 100%);
  }

  .service-section-alt .service-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.90) 100%);
  }

  .service-container {
    padding: 3rem 0;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    padding-top: 2.5rem;
  }

  .service-badge {
    font-size: 0.75rem;
    padding: 0.625rem 1.125rem;
    margin-bottom: 1.25rem;
  }

  .service-title {
    font-size: 2.125rem;
    line-height: 1.25;
    margin-bottom: 1.25rem;
  }

  .service-description {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 2rem;
  }

  .service-values {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .value-header {
    padding: 1rem 1.125rem;
  }

  .value-title {
    font-size: 0.9375rem;
  }

  .value-description {
    font-size: 0.8125rem;
  }

  .expandable-value[data-expanded="true"] .value-description-wrapper {
    padding: 0 1.125rem 1rem 1.125rem;
  }

  /* Service Details */
  .service-details {
    margin-top: 1.5rem;
  }

  .service-details-inner {
    padding: 1.75rem 1.25rem;
    backdrop-filter: blur(20px);
  }

  .service-details-toggle {
    min-height: 56px;
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
  }

  /* Ensure service details expand fully on mobile */
  .service-details-content.expanded {
    max-height: 3000px;
  }

  .detail-title {
    font-size: 1.1875rem;
    margin-bottom: 1rem;
  }

  .detail-list {
    gap: 0.875rem;
  }

  .detail-list li {
    font-size: 0.9375rem;
    line-height: 1.75;
    padding-left: 2rem;
  }

  .detail-highlight {
    font-size: 0.9375rem;
    line-height: 1.75;
    padding: 1.375rem 1.25rem;
  }

  /* Trust Section */
  .trust-section {
    padding: 4rem 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .trust-number {
    font-size: 2.75rem;
  }

  .trust-label {
    font-size: 0.9375rem;
  }

  /* CTA Section */
  .cta-section {
    padding: 4rem 0;
  }

  .cta-title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }

  .cta-description {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
  }

  .cta-field-work {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }

  .contact-link {
    padding: 1.375rem 1.25rem;
    min-height: 76px;
  }

  .contact-value {
    font-size: 1.125rem;
  }

  /* About Section */
  .about-section {
    padding: 4rem 0;
  }

  .about-intro {
    margin-bottom: 2.5rem;
  }

  .about-lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
  }

  .about-text {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
  }

  .about-approach {
    margin-bottom: 2.5rem;
  }

  .approach-box {
    flex-direction: column;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    gap: 1.25rem;
  }

  .approach-icon {
    width: 56px;
    height: 56px;
  }

  .approach-icon svg {
    width: 32px;
    height: 32px;
  }

  .approach-title {
    font-size: 1.125rem;
  }

  .approach-highlight {
    font-size: 1.5rem;
  }

  .about-mission {
    margin-top: 2.5rem;
  }

  .mission-box {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }

  .mission-icon {
    width: 56px;
    height: 56px;
  }

  .mission-icon svg {
    width: 32px;
    height: 32px;
  }

  .mission-text {
    font-size: 1.125rem;
  }

  .mission-tagline {
    font-size: 1.0625rem;
  }

  /* Pricing Hero */
  .pricing-hero {
    min-height: 50vh;
    padding: 6rem 0 3rem;
  }

  .pricing-hero-title {
    font-size: 2.5rem;
  }

  .pricing-hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .pricing-hero-note {
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 0.75rem;
  }

  .pricing-hero-note p {
    text-align: center;
  }

  /* Pricing Definitions */
  .pricing-definitions {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
  }

  .definitions-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .definitions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .definition-card {
    padding: 1.5rem;
  }

  .definition-title {
    font-size: 1.25rem;
  }

  .definition-text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .definition-note {
    padding: 0.875rem;
    font-size: 0.875rem;
  }

  /* Pricing Section */
  .pricing-section,
  .pricing-section-page {
    padding: 3rem 0;
  }

  .pricing-header {
    margin-bottom: 3rem;
  }

  .pricing-title {
    font-size: 2.25rem;
  }

  .pricing-description {
    font-size: 1.0625rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-card-header {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .pricing-card-icon {
    width: 48px;
    height: 48px;
  }

  .pricing-card-icon svg {
    width: 28px;
    height: 28px;
  }

  .pricing-card-title {
    font-size: 1.25rem;
  }

  .pricing-card-subtitle {
    font-size: 0.8125rem;
  }

  .pricing-details-toggle {
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    min-height: 52px;
  }

  .pricing-table {
    font-size: 0.875rem;
  }

  /* Transform table into card-like layout for better mobile UX */
  .pricing-table thead {
    display: none;
  }

  .pricing-table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(175, 141, 65, 0.15);
    border-radius: 8px;
  }

  .pricing-table tbody tr:hover {
    background: rgba(175, 141, 65, 0.08);
    border-color: rgba(175, 141, 65, 0.25);
  }

  .pricing-table tbody tr.highlight-row {
    background: rgba(175, 141, 65, 0.12);
    border: 1.5px solid rgba(175, 141, 65, 0.3);
  }

  .pricing-table td {
    display: block;
    padding: 0.375rem 0;
    border: none;
  }

  .pricing-table td:first-child {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  .pricing-table td:last-child {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold-light);
  }

  .pricing-table td strong {
    font-size: 1.1875rem;
    display: block;
    color: var(--gold-light);
  }

  .pricing-note-box,
  .pricing-info-box {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .pricing-footer {
    padding: 2rem 1.5rem;
  }

  .pricing-footer-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .pricing-cta-button {
    width: 100%;
    min-height: 52px;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links a {
    font-size: 1rem;
    min-height: 44px;
    display: inline-block;
    padding: 0.5rem;
  }

  /* Scroll Indicator */
  .scroll-indicator {
    bottom: 1.5rem;
    scale: 0.9;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  html {
    font-size: 16px;
  }

  /* Mobile Navigation - Even More Touch-Friendly */
  .nav {
    padding: 3rem 1.5rem;
  }

  .nav-link {
    font-size: 1.375rem;
    min-height: 56px;
    padding: 1rem 1.25rem;
  }

  /* Header */
  .logo {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tagline {
    font-size: 0.625rem;
    line-height: 1.3;
  }

  .header-content {
    padding: 0.75rem 0;
  }

  /* Hero Section */
  .hero {
    padding: 5rem 0 2.5rem;
  }

  .hero-badge {
    font-size: 0.6875rem;
    padding: 0.5rem 0.875rem;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .hero-logo-watermark img {
    width: 240px;
  }

  /* Service Sections */
  .service-section {
    min-height: auto;
  }

  .service-container {
    padding: 2.5rem 0;
    min-height: auto;
  }

  .service-badge {
    font-size: 0.6875rem;
    padding: 0.5rem 0.875rem;
    margin-bottom: 1rem;
  }

  .service-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .service-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }

  .service-values {
    gap: 0.625rem;
    margin-bottom: 1.75rem;
  }

  .value-header {
    padding: 0.875rem 1rem;
    gap: 0.625rem;
  }

  .value-header svg:first-child {
    width: 18px;
    height: 18px;
  }

  .expand-icon {
    width: 14px;
    height: 14px;
  }

  .value-title {
    font-size: 0.875rem;
  }

  .value-description {
    font-size: 0.8125rem;
    padding-left: 1.5rem;
  }

  .expandable-value[data-expanded="true"] .value-description-wrapper {
    padding: 0 1rem 0.875rem 1rem;
  }

  /* Service Details */
  .service-details {
    margin-top: 1.25rem;
  }

  .service-details-toggle {
    min-height: 52px;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }

  .service-details-toggle .toggle-icon {
    width: 18px;
    height: 18px;
  }

  .service-details-inner {
    padding: 1.5rem 1rem;
  }

  .detail-section {
    margin-bottom: 1.75rem;
  }

  .detail-title {
    font-size: 1.0625rem;
    margin-bottom: 0.875rem;
  }

  .detail-title::before {
    height: 1.0625rem;
  }

  .detail-list {
    gap: 0.75rem;
  }

  .detail-list li {
    font-size: 0.875rem;
    line-height: 1.7;
    padding-left: 1.75rem;
  }

  .detail-list li::before {
    font-size: 0.875rem;
  }

  .detail-highlight {
    padding: 1.125rem 1rem;
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .detail-note {
    font-size: 0.8125rem;
    padding: 0.75rem 0.875rem;
  }

  /* Trust Section */
  .trust-section {
    padding: 3rem 0;
  }

  .trust-grid {
    gap: 2rem;
  }

  .trust-number {
    font-size: 2.25rem;
  }

  .trust-label {
    font-size: 0.875rem;
  }

  /* CTA Section */
  .cta-section {
    padding: 3.5rem 0;
  }

  .cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .cta-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .cta-field-work {
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
    margin-bottom: 2rem;
  }

  .contact-link {
    padding: 1.125rem 1rem;
    min-height: 68px;
    gap: 1rem;
  }

  .contact-link svg {
    width: 20px;
    height: 20px;
  }

  .contact-label {
    font-size: 0.75rem;
  }

  .contact-value {
    font-size: 1rem;
  }

  /* About Section */
  .about-section {
    padding: 3.5rem 0;
  }

  .about-intro {
    margin-bottom: 2rem;
  }

  .about-lead {
    font-size: 1.125rem;
    padding-left: 1rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-approach {
    margin-bottom: 2rem;
  }

  .approach-box {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    gap: 1rem;
  }

  .approach-icon {
    width: 48px;
    height: 48px;
  }

  .approach-icon svg {
    width: 28px;
    height: 28px;
  }

  .approach-title {
    font-size: 1.0625rem;
  }

  .approach-highlight {
    font-size: 1.375rem;
  }

  .about-mission {
    margin-top: 2rem;
  }

  .mission-box {
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }

  .mission-icon {
    width: 48px;
    height: 48px;
  }

  .mission-icon svg {
    width: 28px;
    height: 28px;
  }

  .mission-text {
    font-size: 1.0625rem;
  }

  .mission-tagline {
    font-size: 1rem;
  }

  /* Pricing Section */
  .pricing-section {
    padding: 3.5rem 0;
  }

  .pricing-title {
    font-size: 2rem;
  }

  .pricing-description {
    font-size: 1rem;
  }

  .pricing-grid {
    gap: 1.25rem;
  }

  .pricing-card {
    padding: 1.25rem;
  }

  .pricing-card-icon {
    width: 44px;
    height: 44px;
  }

  .pricing-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .pricing-card-title {
    font-size: 1.125rem;
  }

  .pricing-details-toggle {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    min-height: 48px;
  }

  /* Ensure expanded content has enough height on mobile */
  .pricing-details-content.expanded {
    max-height: 8000px;
  }

  /* Further optimize for smaller screens */
  .pricing-table tbody tr {
    padding: 0.875rem;
    margin-bottom: 0.625rem;
  }

  .pricing-table td:first-child {
    font-size: 0.75rem;
  }

  .pricing-table td:last-child {
    font-size: 1.0625rem;
  }

  .pricing-table td strong {
    font-size: 1.125rem;
  }

  .pricing-footer {
    padding: 1.5rem 1rem;
  }

  .pricing-footer-text {
    font-size: 0.9375rem;
  }

  .pricing-cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    min-height: 48px;
  }

  /* Buttons */
  .cta-primary,
  .cta-secondary {
    min-height: 52px;
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }

  .primary-button {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    min-height: 44px;
    min-width: 44px;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-logo {
    width: 36px;
    height: 36px;
  }

  .footer-links a {
    font-size: 0.9375rem;
  }

  .footer-bottom p {
    font-size: 0.8125rem;
  }

  /* Scroll Indicator */
  .scroll-indicator {
    bottom: 1.25rem;
    scale: 0.85;
  }
}

/* Small phones (iPhone SE, etc.) */
@media (max-width: 375px) {
  .container {
    padding: 0 1rem;
  }

  /* Mobile Navigation - Optimized for Small Screens */
  .nav {
    padding: 2.5rem 1rem;
  }

  .nav-link {
    font-size: 1.25rem;
    min-height: 52px;
    padding: 0.875rem 1rem;
  }

  /* Header */
  .logo {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 0.9375rem;
  }

  .brand-tagline {
    font-size: 0.5625rem;
    line-height: 1.3;
  }

  /* Hero */
  .hero {
    padding: 4.5rem 0 2rem;
  }

  .hero-title {
    font-size: 1.875rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.9375rem;
  }

  .hero-badge {
    font-size: 0.625rem;
    padding: 0.5rem 0.75rem;
  }

  /* Services */
  .service-container {
    padding: 2.5rem 0;
    min-height: auto;
  }

  .service-title {
    font-size: 1.625rem;
    line-height: 1.25;
  }

  .service-description {
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .service-badge {
    font-size: 0.625rem;
    padding: 0.5rem 0.75rem;
  }

  .value-header {
    padding: 0.75rem 0.875rem;
  }

  .value-title {
    font-size: 0.8125rem;
  }

  .value-description {
    font-size: 0.75rem;
    padding-left: 1rem;
  }

  .expandable-value[data-expanded="true"] .value-description-wrapper {
    padding: 0 0.875rem 0.75rem 0.875rem;
  }

  /* Detail Sections */
  .detail-title {
    font-size: 1rem;
  }

  .detail-list li {
    font-size: 0.8125rem;
  }

  .detail-highlight {
    font-size: 0.8125rem;
    padding: 1rem 0.875rem;
  }

  /* Trust & CTA */
  .trust-number {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 1.875rem;
  }

  .cta-description {
    font-size: 0.9375rem;
  }

  .contact-value {
    font-size: 0.9375rem;
  }
}

/* Landscape orientation optimization */
@media (max-height: 700px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 6rem 0 2rem;
  }

  .service-section {
    min-height: auto;
  }

  .service-container {
    padding: 3rem 0;
  }

  .scroll-indicator {
    display: none;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Service Details (Expandable Sections) ===== */
.service-details {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.service-details-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.75rem;
  background: linear-gradient(135deg, rgba(175, 141, 65, 0.15) 0%, rgba(255, 255, 255, 0.12) 100%);
  border: 1.5px solid rgba(175, 141, 65, 0.35);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(175, 141, 65, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-details-toggle:hover {
  background: linear-gradient(135deg, rgba(175, 141, 65, 0.25) 0%, rgba(255, 255, 255, 0.18) 100%);
  border-color: rgba(175, 141, 65, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(175, 141, 65, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-details-toggle:focus {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.service-details-toggle .toggle-icon {
  color: var(--gold-light);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.service-details-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

.service-details-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-details-content.expanded {
  max-height: 2000px;
}

.service-details-inner {
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(10, 10, 10, 0.92) 100%);
  border: 1px solid rgba(175, 141, 65, 0.25);
  border-radius: 12px;
  margin-top: 1rem;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.detail-section {
  margin-bottom: 2rem;
}

.detail-section:last-of-type {
  margin-bottom: 1.5rem;
}

.detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.025em;
}

.detail-title::before {
  content: '';
  width: 4px;
  height: 1.25rem;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold));
  border-radius: 2px;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-list li {
  padding-left: 1.75rem;
  position: relative;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9375rem;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.detail-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.detail-list li:hover {
  padding-left: 2rem;
  color: rgba(255, 255, 255, 1);
}

.detail-list li:hover::before {
  color: var(--gold);
  transform: scale(1.2);
}

.detail-highlight {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(175, 141, 65, 0.15) 0%, rgba(175, 141, 65, 0.08) 100%);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: rgba(255, 255, 255, 1);
  font-size: 0.9375rem;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  box-shadow: 0 4px 12px rgba(175, 141, 65, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===== Enhanced Focus Styles ===== */
*:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
  border-radius: 4px;
}

.service-details-toggle:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.nav-link:focus-visible,
.contact-link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

/* ===== Utility Classes ===== */
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===== Navigation Anchor Points ===== */
#about-us,
#services,
#pricing,
#field-work {
  scroll-margin-top: 80px; /* Adjust for fixed header */
}

/* Field work text in CTA section */
.cta-field-work {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  font-style: italic;
  padding: 1rem 1.5rem;
  background: rgba(175, 141, 65, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
}

/* Detail note for material exclusion */
.detail-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  padding: 0.75rem 1rem;
  background: rgba(175, 141, 65, 0.1);
  border-radius: 6px;
  border-left: 3px solid var(--gold-light);
}

/* Responsive adjustments for field work text */
@media (max-width: 768px) {
  .cta-field-work {
    font-size: 0.9375rem;
    padding: 0.875rem 1.25rem;
  }

  .detail-note {
    font-size: 0.8125rem;
  }
}

/* ===== About Section ===== */
.about-section {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-intro {
  margin-bottom: 3rem;
}

.about-lead {
  font-size: 1.375rem;
  line-height: 1.8;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-lead::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 4px;
  height: calc(100% - 1rem);
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

/* Approach Box */
.about-approach {
  margin-bottom: 3rem;
}

.approach-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(175, 141, 65, 0.08), rgba(175, 141, 65, 0.03));
  border: 1px solid rgba(175, 141, 65, 0.2);
  border-radius: 16px;
  margin-bottom: 2rem;
}

.approach-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(175, 141, 65, 0.3);
}

.approach-content {
  flex: 1;
}

.approach-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.approach-highlight {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.3;
}

/* Mission Box */
.about-mission {
  margin-top: 3rem;
}

.mission-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-gray) 100%);
  border: 1px solid rgba(175, 141, 65, 0.3);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.mission-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(175, 141, 65, 0.2), rgba(175, 141, 65, 0.1));
  border: 1px solid rgba(175, 141, 65, 0.4);
  border-radius: 12px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.mission-content {
  flex: 1;
}

.mission-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.mission-text strong {
  color: var(--gold-light);
  font-weight: 600;
}

.mission-tagline {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  margin: 0;
}

/* ===== Pricing Hero (for dedicated pricing page) ===== */
.pricing-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

.pricing-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pricing-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--white), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.pricing-hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(175, 141, 65, 0.1);
  border: 1px solid rgba(175, 141, 65, 0.3);
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-hero-note svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

.pricing-hero-note p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-align: left;
}

/* Pricing Definitions Section */
.pricing-definitions {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(175, 141, 65, 0.2);
}

.definitions-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--white), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.definitions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.definition-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.95));
  border: 1px solid rgba(175, 141, 65, 0.25);
  border-radius: 12px;
  transition: all var(--transition);
}

.definition-card:hover {
  border-color: rgba(175, 141, 65, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(175, 141, 65, 0.15);
}

.definition-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.definition-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}

.definition-note {
  padding: 1rem;
  background: rgba(175, 141, 65, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

.definition-note strong {
  color: var(--gold-light);
  font-style: normal;
}

/* Pricing Section Page (separate page version) */
.pricing-section-page {
  padding: 4rem 0 6rem;
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  position: relative;
  overflow: hidden;
}

/* ===== Pricing Section (homepage version) ===== */
.pricing-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(175, 141, 65, 0.08), transparent 70%);
  pointer-events: none;
}

.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.pricing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--white), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

/* Pricing Card */
.pricing-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
  border: 1px solid rgba(175, 141, 65, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.pricing-card:hover {
  border-color: rgba(175, 141, 65, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(175, 141, 65, 0.15);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.pricing-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(175, 141, 65, 0.15), rgba(175, 141, 65, 0.08));
  border: 1px solid rgba(175, 141, 65, 0.3);
  border-radius: 12px;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: all var(--transition);
}

.pricing-card:hover .pricing-card-icon {
  background: linear-gradient(135deg, rgba(175, 141, 65, 0.25), rgba(175, 141, 65, 0.15));
  transform: scale(1.05);
}

.pricing-card-title-group {
  flex: 1;
}

.pricing-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.pricing-card-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Pricing Details Toggle */
.pricing-details-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(175, 141, 65, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(175, 141, 65, 0.3);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.pricing-details-toggle:hover {
  background: linear-gradient(135deg, rgba(175, 141, 65, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%);
  border-color: rgba(175, 141, 65, 0.5);
  transform: translateY(-2px);
}

.pricing-details-toggle:focus {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.pricing-details-toggle .toggle-icon {
  color: var(--gold-light);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.pricing-details-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

/* Pricing Details Content */
.pricing-details-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-details-content.expanded {
  max-height: 5000px;
}

.pricing-details-inner {
  padding: 1.5rem 0 0;
}

/* Pricing Note Box */
.pricing-note-box {
  padding: 1rem 1.25rem;
  background: rgba(175, 141, 65, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.pricing-note-box strong {
  color: var(--gold-light);
}

/* Pricing Subsection Titles */
.pricing-subsection-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(175, 141, 65, 0.2);
}

/* Villa Package Styles */
.pricing-package-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 2rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-package-title.pricing-package-elite {
  color: var(--gold-light);
  font-size: 1.375rem;
}

.pricing-package-subtitle {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  font-style: italic;
}

.pricing-package-includes {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  margin: 1rem 0 0 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(175, 141, 65, 0.3);
}

/* Premium and Info Card Variants */
.pricing-card-premium {
  border-color: rgba(175, 141, 65, 0.4);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(15, 15, 15, 0.98));
}

.pricing-card-premium::before {
  opacity: 0.3;
}

.pricing-card-premium:hover {
  border-color: rgba(175, 141, 65, 0.6);
  box-shadow: 0 12px 48px rgba(175, 141, 65, 0.2);
}

.pricing-card-info {
  border-color: rgba(175, 141, 65, 0.3);
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(26, 26, 26, 0.95));
}

.pricing-card-info .pricing-card-icon {
  background: linear-gradient(135deg, rgba(175, 141, 65, 0.2), rgba(175, 141, 65, 0.12));
  border-color: rgba(175, 141, 65, 0.4);
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
}

.pricing-table thead {
  background: linear-gradient(135deg, rgba(175, 141, 65, 0.15), rgba(175, 141, 65, 0.08));
  border: 1px solid rgba(175, 141, 65, 0.25);
}

.pricing-table th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(175, 141, 65, 0.2);
}

.pricing-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}

.pricing-table tbody tr:hover {
  background: rgba(175, 141, 65, 0.05);
}

.pricing-table tbody tr.highlight-row {
  background: rgba(175, 141, 65, 0.08);
  border-top: 1px solid rgba(175, 141, 65, 0.2);
  border-bottom: 1px solid rgba(175, 141, 65, 0.2);
}

.pricing-table tbody tr.highlight-row:hover {
  background: rgba(175, 141, 65, 0.12);
}

.pricing-table td {
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}

.pricing-table td strong {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

/* Pricing Info Box */
.pricing-info-box {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-style: italic;
}

.pricing-info-box strong {
  color: var(--gold-light);
  font-style: normal;
}

/* Pricing Footer */
.pricing-footer {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(175, 141, 65, 0.08), rgba(175, 141, 65, 0.03));
  border: 1px solid rgba(175, 141, 65, 0.2);
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.pricing-footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-footer-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.pricing-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.125rem 2.5rem;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 100px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(175, 141, 65, 0.3);
}

.pricing-cta-button:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(175, 141, 65, 0.4);
}

.pricing-cta-button svg {
  transition: transform var(--transition);
}

.pricing-cta-button:hover svg {
  transform: translateX(4px);
}

/* ===== Mobile-Specific Enhancements ===== */

/* Tap highlight removal for cleaner mobile interactions */
* {
  -webkit-tap-highlight-color: rgba(175, 141, 65, 0.2);
  -webkit-touch-callout: none;
}

a, button {
  -webkit-tap-highlight-color: rgba(175, 141, 65, 0.3);
}

/* Prevent text selection on buttons for better UX */
button, .primary-button, .cta-primary, .cta-secondary, .service-cta {
  -webkit-user-select: none;
  user-select: none;
}

/* Improve touch scrolling */
body {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

/* Optimize font rendering on mobile */
@media (max-width: 768px) {
  body {
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Touch-friendly active states */
@media (hover: none) and (pointer: coarse) {
  .nav-link:active,
  .primary-button:active,
  .cta-primary:active,
  .cta-secondary:active,
  .service-details-toggle:active {
    transform: scale(0.98);
    opacity: 0.9;
  }

  .contact-link:active {
    transform: scale(0.98);
  }

  .value-item:active {
    transform: translateX(4px) scale(0.98);
  }

  /* Disable hover effects on touch devices */
  .value-item:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
  }

  .service-details-toggle:hover {
    transform: none;
  }

  .contact-link:hover {
    transform: none;
  }
}

/* Improve image loading on mobile */
@media (max-width: 768px) {
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  .service-background img {
    image-rendering: auto;
  }
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
  .site-header {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .nav.active {
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
    padding-bottom: max(3rem, env(safe-area-inset-bottom));
  }
}

/* Dark mode support for mobile OS */
@media (prefers-color-scheme: dark) {
  /* Colors are already dark, just ensure consistency */
  body {
    background: var(--black);
  }
}

/* Performance: Reduce animations on low-end devices */
@media (max-width: 480px) {
  * {
    animation-duration: 0.3s !important;
    transition-duration: 0.2s !important;
  }

  .service-details-content {
    transition-duration: 0.4s !important;
  }
}

/* Accessibility: Larger touch targets on mobile */
@media (max-width: 768px) and (pointer: coarse) {
  /* Ensure minimum 44x44px touch targets */
  .nav-link,
  .primary-button,
  .mobile-menu-toggle,
  .service-details-toggle,
  a[href^="tel"],
  a[href^="mailto"] {
    min-height: 44px;
    min-width: 44px;
  }

  /* Add padding around small clickable elements */
  .skip-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* Fix iOS zoom on focus */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
  body, html {
    max-width: 100vw;
    overflow-x: hidden;
  }

  * {
    max-width: 100%;
  }
}
