/* Main Design System & Layout - Culture Inspired Walls */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Prata&display=swap');

:root {
  --bg-color: #121212;
  --text-color: #f5f5f5;
  --primary-color: #d59f39;
  --primary-hover: #e8b04a;
  --primary-foreground: #121212;
  --secondary-color: #1a1a1a;
  --secondary-hover: #262626;
  --secondary-foreground: #ffffff;
  --accent-color: #d59f39;
  --accent-hover: #e8b04a;
  --accent-foreground: #121212;
  --white: #ffffff;
  --border-color: #2a2a2a;
  --border-color-darker: #3a3a3a;
  --border-focus: #d59f39;
  --muted-text: #a09088;
  --muted-bg: #222222;
  
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Prata', serif;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(46, 36, 31, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(46, 36, 31, 0.1), 0 2px 4px -2px rgba(46, 36, 31, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(46, 36, 31, 0.1), 0 4px 6px -4px rgba(46, 36, 31, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(46, 36, 31, 0.1), 0 8px 10px -6px rgba(46, 36, 31, 0.05);
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

main {
  flex-grow: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.25;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
}

.text-muted {
  color: var(--muted-text);
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-accent {
  color: var(--accent-color);
}

/* Buttons & Interactive Elements */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-normal);
}

.btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-color);
  border-color: var(--text-color);
}

.btn-outline:hover {
  background-color: var(--text-color);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background-color: var(--white);
  color: #121212;
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background-color: var(--primary-color);
  color: var(--primary-foreground);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
}

/* Contact Bar & Header */
.top-bar {
  background-color: var(--primary-color);
  color: var(--primary-foreground);
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
}

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

.header-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  transition: padding var(--transition-normal), box-shadow var(--transition-normal);
}

.header-nav.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-color);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--primary-color);
  color: var(--primary-foreground);
  border-radius: 50% 50% 50% 0;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-color);
  opacity: 0.85;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--primary-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: var(--radius-full);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Nav Drawer & Hamburger Button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: var(--transition-normal);
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-color);
  box-shadow: var(--shadow-xl);
  z-index: 90;
  padding: 6rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right var(--transition-slow);
  border-left: 1px solid var(--border-color);
}

.mobile-menu-drawer.open {
  right: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
}

.mobile-nav-link.active {
  color: var(--primary-color);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(46, 36, 31, 0.4);
  backdrop-filter: blur(4px);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Floating CTA (Mobile Only) */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-full);
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.floating-cta:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
}

.floating-cta svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--text-color);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 650px;
}

.hero-overheadline {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-desc {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-ctas .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.hero-ctas .btn-outline:hover {
  background-color: var(--white);
  color: #121212;
}

/* Trust Badges Bar */
.trust-bar {
  background-color: #1a1a1a;
  border-bottom: 1px solid var(--border-color);
  padding: 2.5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-color);
}

.trust-badge svg {
  color: var(--accent-color);
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.trust-badge-pro {
  background-color: var(--accent-color);
  color: var(--text-color);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.125rem 0.375rem;
  border-radius: var(--radius-sm);
  margin-left: 0.25rem;
}

/* Section Common Styles */
.section-padding {
  padding: 6rem 0;
}

.bg-white-section {
  background-color: #161616;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

.section-overheadline {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-text);
}

/* Expertise Showcase (Home) */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.expertise-card {
  background-color: #1e1e1e;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.expertise-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--muted-bg);
}

.expertise-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.expertise-card:hover .expertise-card-img-wrap img {
  transform: scale(1.05);
}

.expertise-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.expertise-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.expertise-card-text {
  color: var(--muted-text);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.expertise-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.expertise-card-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform var(--transition-fast);
}

.expertise-card:hover .expertise-card-link svg {
  transform: translateX(3px);
}

.expertise-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary-color);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

.expertise-card--coming-soon {
  opacity: 0.92;
}

.expertise-card--coming-soon:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.expertise-card--coming-soon .expertise-card-img-wrap img {
  filter: grayscale(20%);
}

.expertise-card-status {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--primary-color);
  color: var(--primary-foreground);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
}

.service-title-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-color);
  background-color: rgba(213, 159, 57, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  vertical-align: middle;
  margin-left: 0.5rem;
}

.service-block--coming-soon .service-img-wrap img {
  filter: grayscale(15%);
}

.btn-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.85;
}

/* Testimonial & CTA Banner */
.testimonial-banner {
  background-color: var(--secondary-color);
  color: var(--secondary-foreground);
  position: relative;
  overflow: hidden;
}

.testimonial-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  top: -150px;
  left: -100px;
}

.testimonial-container {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.9;
  text-transform: uppercase;
  margin-bottom: 4rem;
  display: block;
}

.testimonial-cta-divider {
  width: 80px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  margin: 0 auto 3rem auto;
}

.testimonial-cta-title {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.testimonial-cta-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

.testimonial-cta-buttons .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.testimonial-cta-buttons .btn-outline:hover {
  background-color: var(--white);
  color: var(--secondary-color);
}

/* Premium Footer */
.footer {
  background-color: #0c0c0c;
  color: var(--white);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
  background-color: var(--primary-color);
}

.footer-bio {
  opacity: 0.7;
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  font-size: 0.925rem;
  color: var(--white);
  opacity: 0.7;
  transition: all var(--transition-fast);
}

.footer-link:hover {
  opacity: 1;
  color: var(--primary-color);
  padding-left: 2px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--white);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  color: var(--primary-color);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal-link:hover {
  color: var(--white);
}

/* Portfolio Page - Filters and Gallery */
.portfolio-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background-color: #1a1a1a;
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.filter-btn:hover {
  background-color: rgba(213, 159, 57, 0.1);
  border-color: var(--primary-color);
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--primary-foreground);
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(213, 159, 57, 0.3);
  transform: translateY(-1px);
}

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

.portfolio-item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--muted-bg);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), opacity 0.4s ease, visibility 0.4s ease;
}

.portfolio-item.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  border: none;
  padding: 0;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-item-img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46, 36, 31, 0.85) 0%, rgba(46, 36, 31, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.portfolio-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.portfolio-title {
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.portfolio-location {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Lightbox Modal (Portfolio) */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(22, 17, 14, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 1.5rem;
}

.lightbox-caption h3 {
  font-size: 1.5rem;
  color: var(--white);
}

.lightbox-caption p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.lightbox-close {
  position: absolute;
  top: -3.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-close svg {
  width: 2rem;
  height: 2rem;
}

/* Services Page Alternating Blocks */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.service-block {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.service-block:nth-child(even) {
  flex-direction: row-reverse;
}

.service-img-wrap {
  position: relative;
  flex: 1;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--muted-bg);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-info {
  flex: 1;
}

.service-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--muted-text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.service-feature-item svg {
  color: var(--primary-color);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Service Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.area-card {
  background-color: #1e1e1e;
  border: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.area-card {
  border-left: 3px solid var(--primary-color);
}

.area-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
  background-color: var(--bg-color);
}

.area-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.area-card svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-color);
  opacity: 0.5;
  transition: transform var(--transition-normal), color var(--transition-normal);
}

.area-card:hover svg {
  transform: translateX(4px);
  opacity: 1;
  color: var(--primary-color);
}

.no-area-banner {
  background-color: rgba(213, 159, 57, 0.08);
  border: 1px dashed var(--primary-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.no-area-title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.no-area-text {
  color: var(--muted-text);
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* About Page layout */
.about-layout {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.about-text {
  flex: 1;
}

.about-story-span {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.about-title {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-body {
  color: var(--muted-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-body p {
  margin-bottom: 1.25rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.about-stat-item {
  display: flex;
  gap: 1rem;
}

.about-stat-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background-color: rgba(213, 159, 57, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.about-stat-title {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.about-stat-desc {
  font-size: 0.875rem;
  color: var(--muted-text);
}

.about-visual {
  flex: 1;
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-floating-card {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background-color: #1e1e1e;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  max-width: 280px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-floating-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-floating-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(213, 159, 57, 0.15);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-floating-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.about-floating-title {
  font-size: 1rem;
  font-weight: 700;
}

.about-floating-subtitle {
  font-size: 0.825rem;
  color: var(--muted-text);
}

.about-floating-quote {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--muted-text);
  border-left: 2px solid var(--primary-color);
  padding-left: 0.75rem;
}

/* Quote Form Page Layout */
.quote-layout {
  max-width: 800px;
  margin: 0 auto;
}

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

.quote-form-container {
  background-color: #1a1a1a;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}

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

.form-col-full {
  grid-column: span 2;
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-input, .form-select, .form-textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color-darker);
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--border-focus);
  background-color: #1e1e1e;
  box-shadow: 0 0 0 3px rgba(213, 159, 57, 0.15);
}

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

/* Success Toast Notifications */
.toast-viewport {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 420px;
  padding: 1.5rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
  background-color: #1e1e1e;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-xl);
  transform: translateY(100px);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: rgba(213, 159, 57, 0.15);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.toast-body {
  flex-grow: 1;
}

.toast-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.toast-description {
  font-size: 0.875rem;
  color: var(--muted-text);
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-color);
  opacity: 0.5;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
}

.toast-close:hover {
  opacity: 1;
}

.toast-close svg {
  width: 1rem;
  height: 1rem;
}

/* Interactive overlay modal for Service Area details */
.area-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(46, 36, 31, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.area-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.area-modal-content {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.area-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.area-modal-close:hover {
  opacity: 1;
}

.area-modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.area-modal-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(213, 159, 57, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.area-modal-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.area-modal-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.area-modal-text {
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Utility Classes (extracted from inline styles) */
.font-semibold {
  font-weight: 600;
}

.mt-6 {
  margin-top: 1.5rem;
}

.footer-contact-list {
  gap: 1.25rem !important;
}

.relative-z2 {
  position: relative;
  z-index: 2;
}

.mb-4 {
  margin-bottom: 1rem;
}

.quote-title-lg {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
}

.submit-btn-lg {
  height: 3.5rem;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.page-bg-min-h {
  background-color: var(--bg-color);
  min-height: 100vh;
}

.cta-wrapper {
  margin-top: 3rem;
}

.page-title-left {
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 0.5rem;
}

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

/* Scroll Animation Fallbacks */
@media (prefers-reduced-motion: no-preference) {
  .js-enabled .will-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .js-enabled .will-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Validation */
.form-error {
  color: #c0392b;
  font-size: 0.875rem;
  margin-top: 0.35rem;
  font-weight: 500;
}

.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: #c0392b;
  background-color: rgba(192, 57, 43, 0.05);
}

.form-group.has-error .form-label {
  color: #c0392b;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .about-layout {
    gap: 3rem;
  }
  
  .about-main-img {
    height: 450px;
  }
}

@media (max-width: 900px) {
  .header-nav {
    padding: 1rem 0;
  }
  
  .nav-menu, .nav-cta .btn {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .floating-cta {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-block, .service-block:nth-child(even) {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .service-img-wrap, .service-info {
    width: 100%;
  }
  
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-layout {
    flex-direction: column;
    gap: 4rem;
  }
  
  .about-text, .about-visual {
    width: 100%;
  }
  
  .about-main-img {
    height: 400px;
  }
  
  .about-floating-card {
    left: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 1rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  
  .portfolio-item {
    aspect-ratio: 1/1;
  }
  
  .service-features {
    grid-template-columns: 1fr;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-floating-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 1.5rem;
    max-width: 100%;
  }
  
  .quote-form-container {
    padding: 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-col-full {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
