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

:root {
  --primary-dark: #1a1a1a;
  --primary-charcoal: #2d2d2d;
  --primary-light-gray: #f5f5f5;
  --primary-white: #ffffff;
  --accent-warm-orange: #ff6b35;
  --accent-golden-yellow: #ffa500;
  --neutral-soft-gray: #e8e8e8;
  --neutral-medium-gray: #999999;
  --neutral-text-gray: #666666;
}

/* Dark mode variables */
[data-theme="dark"] {
  --primary-dark: #ffffff;
  --primary-charcoal: #e8e8e8;
  --primary-light-gray: #2d2d2d;
  --primary-white: #1a1a1a;
  --accent-warm-orange: #ff6b35;
  --accent-golden-yellow: #ffa500;
  --neutral-soft-gray: #333333;
  --neutral-medium-gray: #aaaaaa;
  --neutral-text-gray: #cccccc;
}

/* Dark mode specific overrides */
[data-theme="dark"] body {
  background-color: var(--primary-white);
  color: var(--primary-dark);
}

[data-theme="dark"] .hero {
  background: linear-gradient(rgb(0 0 0 / 61%), rgb(0 0 0 / 69%)),
    url("images/6322 Salmon Falls front.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

[data-theme="dark"] .header {
  background: rgba(26, 26, 26, 0.95);
  border-bottom: 1px solid var(--neutral-soft-gray);
}

[data-theme="dark"] .footer {
  background: #0f0f0f;
}

[data-theme="dark"] .contact {
  background: var(--primary-white);
}

[data-theme="dark"] .target-audience {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    url("images/wood-grain-background-light.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Dark mode hero text */
[data-theme="dark"] .hero h1,
[data-theme="dark"] .hero p,
[data-theme="dark"] .hero .btn-primary {
  color: #ffffff;
}

/* Dark mode service icons */
[data-theme="dark"] .service-icon {
  color: #ffffff;
}

/* Dark mode portfolio hover text */
[data-theme="dark"] .portfolio-overlay,
[data-theme="dark"] .portfolio-overlay h4,
[data-theme="dark"] .portfolio-overlay p {
  color: #ffffff;
}

/* Dark mode interior excellence hover text */
[data-theme="dark"] .interior-overlay,
[data-theme="dark"] .interior-overlay h4,
[data-theme="dark"] .interior-overlay p {
  color: #ffffff;
}

/* Dark mode footer headings */
[data-theme="dark"] .footer-section h4 {
  color: #ffffff;
}

/* Enhanced transitions for theme switching */
.header,
.footer,
.section,
.card,
.btn {
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--primary-dark);
  font-size: 1rem;
  background-color: var(--primary-white);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Title Typography - Newsreader */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.section-subtitle,
.hero h1,
.logo,
.service-content h3,
.portfolio-overlay h4,
.before-after-label h4,
.process-content h4,
.interior-overlay h4,
.area-card-content h4,
.audience-card h4,
.contact-details h3,
.contact-form h3,
.contact-item-content h4,
.footer-section h4 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  height: 80px;
  border-bottom: 1px solid var(--neutral-soft-gray);
}
.header .container {
  height: 100%;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.nav a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--accent-warm-orange);
}

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

.dark-mode-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  color: var(--primary-dark);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-mode-toggle:hover {
  background: var(--neutral-soft-gray);
  transform: scale(1.1);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-white);
  text-align: left;
}

.hero-content {
  max-width: 1000px;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.25rem, 6.75vw, 5.625rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

/* Tablet responsive styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 2.5rem;
  }

  .contact-form {
    padding: 2.5rem;
  }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
    padding: 0 15px;
  }

  .hero {
    padding: 0 10px;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(1.40625rem, 4.5vw, 2.25rem);
    line-height: 1;
  }

  .hero p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    max-width: 100%;
  }
}

/* Large screen optimizations */
@media (min-width: 1400px) {
  .hero-content {
    max-width: 1200px;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 5.625vw, 6.75rem);
    line-height: 1;
  }

  .hero p {
    font-size: clamp(1.4rem, 2vw, 2.2rem);
    max-width: 1000px;
  }
}

/* Ultra-wide screen limits */
@media (min-width: 2000px) {
  .hero-content {
    max-width: 1400px;
  }

  .hero h1 {
    font-size: 6.75rem;
  }

  .hero p {
    font-size: 2.2rem;
    max-width: 1200px;
  }
}

.hero p {
  font-size: 22px;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 800px;
}

.btn-primary {
  background: var(--primary-dark);
  color: var(--primary-white);
  padding: clamp(12px, 1.5vw, 18px) clamp(24px, 3vw, 36px);
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.btn-secondary {
  background: transparent;
  border: 1px solid var(--primary-dark);
  color: var(--primary-dark);
  padding: 12px 24px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--primary-white);
}

/* Section Styles */
.section {
  padding: 90px 0;
}

.section-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--neutral-text-gray);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Intro Section */
.services-intro-section {
  background: var(--primary-white);
  padding-bottom: 4rem;
}

.services-intro-section .section-subtitle {
  margin-bottom: 0;
}

/* Services Section - Full Width Stacked */
.service-section {
  padding: 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.service-section:nth-of-type(odd) {
  background: var(--primary-white);
}

.service-section:nth-of-type(even) {
  background: var(--primary-light-gray);
}

.service-section .container {
  max-width: none;
  width: 100%;
  padding: 0;
}

.service-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
  align-items: center;
}

.service-reverse .service-content-wrapper {
  grid-template-columns: 1fr 1fr;
}

.service-reverse .service-content {
  order: 1;
}

.service-reverse .service-image {
  order: 2;
}

.service-image {
  height: 600px;
  overflow: hidden;
  position: relative;
}

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

.service-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 600px;
}

.service-content h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  line-height: 1.2;
}

.service-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--neutral-text-gray);
  margin-bottom: 2rem;
}

.service-content .btn-primary {
  width: fit-content;
  display: inline-block;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .service-section {
    min-height: 500px;
  }

  .service-content-wrapper {
    min-height: 500px;
  }

  .service-image {
    height: 500px;
  }

  .service-content {
    padding: 3rem;
    min-height: 500px;
  }

  .service-content h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .service-content p {
    font-size: 1.1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-section {
    min-height: auto;
    padding: 0;
  }

  .service-content-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }

  .service-reverse .service-content {
    order: 1;
  }

  .service-reverse .service-image {
    order: 2;
  }

  .service-image {
    height: 300px;
  }

  .service-image img {
    height: 100%;
  }

  .service-content {
    text-align: center;
    padding: 3rem 2rem;
    min-height: auto;
  }

  .service-content h3 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .service-content p {
    font-size: 1rem;
  }
}

/* Grid Background */
.bg-grid {
  background: linear-gradient(
      0deg,
      var(--primary-light-gray) 0%,
      rgba(245, 245, 245, 0.9) 85%,
      rgba(245, 245, 245, 0.6) 100%
    ),
    linear-gradient(
      270deg,
      var(--primary-light-gray) 0%,
      rgba(245, 245, 245, 0.9) 85%,
      rgba(245, 245, 245, 0.6) 100%
    ),
    linear-gradient(90deg, #5a9bd4 1px, transparent 1px),
    linear-gradient(180deg, #5a9bd4 1px, transparent 1px),
    var(--primary-light-gray);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px, 100% 100%;
}

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

.portfolio-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  aspect-ratio: 9/16;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--primary-white);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Before & After Section */
.before-after {
  background: var(--primary-white);
}

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

.before-after-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.before-after-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.before-after-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.before-after-label {
  padding: 1.5rem;
  background: var(--primary-white);
}

.before-after-label h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.before-after-label p {
  color: var(--neutral-text-gray);
  font-size: 0.9rem;
}

/* Construction Process Section */
.construction-process {
  background: var(--primary-white);
}

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

.process-item {
  position: relative;
  background: var(--primary-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.process-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-number {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-warm-orange);
  color: var(--primary-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 2;
}

.process-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.process-content {
  padding: 1.5rem;
}

.process-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-content p {
  color: var(--neutral-text-gray);
  font-size: 0.9rem;
}

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

.showcase-item {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 3/2;
  position: relative;
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Interior Showcase */

.interior-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 0.5rem;
  margin-top: 3rem;
}

.interior-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.interior-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.interior-item.wide {
  grid-column: span 2;
}

.interior-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.interior-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--primary-white);
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.interior-item:hover .interior-overlay {
  transform: translateY(0);
}

.interior-overlay h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.interior-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* About Section */

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

.about-text h2 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--neutral-text-gray);
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-main-image {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  aspect-ratio: 3/2;
  position: relative;
}

.about-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-gallery img:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Service Areas */
.service-areas {
  text-align: center;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.area-card {
  background: var(--primary-white);
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--neutral-soft-gray);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.area-card-image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
}

.area-card-content {
  padding: 2rem 1.5rem;
}

.area-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.area-card p {
  color: var(--neutral-text-gray);
  font-size: 1rem;
  line-height: 1.5;
}

/* Target Audience */
.target-audience {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("images/wood-grain-background-light.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.target-audience .section-title,
.target-audience .section-subtitle {
  color: var(--primary-white);
}

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

.audience-card {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--neutral-soft-gray);
  transition: all 0.3s ease;
}

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

.audience-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-golden-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-white);
}

.audience-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact {
  background: #ffffff;
  color: var(--primary-dark);
}

.contact .section-title {
  color: var(--primary-dark);
  text-align: center;
}

.contact .section-subtitle {
  color: var(--neutral-text-gray);
  text-align: center;
  margin-bottom: 3rem;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

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

.contact-image {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  aspect-ratio: 3/2;
  position: relative;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-details {
  background: var(--primary-light-gray);
  border-radius: 0;
  padding: 1.5rem;
  border: 1px solid var(--neutral-soft-gray);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-details h3 {
  color: var(--primary-dark);
  font-size: 1.5125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  padding: 0.3rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-warm-orange);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-white);
  flex-shrink: 0;
  padding: 8px;
}

.contact-icon i {
  font-size: 0.9rem;
}

.contact-item-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-item-content p {
  color: var(--neutral-text-gray);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--primary-white);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--neutral-soft-gray);
}

.social-link:hover {
  background: var(--accent-warm-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.contact-form {
  background: var(--primary-light-gray);
  border-radius: 0;
  padding: 3rem;
  border: 1px solid var(--neutral-soft-gray);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--neutral-soft-gray);
  border-radius: 0;
  background: var(--primary-white);
  color: var(--primary-dark);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-warm-orange);
  background: var(--primary-white);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--neutral-medium-gray);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-group label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark);
}

.contact-form .btn-primary {
  width: 100%;
  padding: 18px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--primary-dark);
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  background: var(--primary-charcoal);
}

.contact-form h3 {
  color: var(--primary-dark);
  font-size: 1.6125rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: left;
}

/* Footer */
.footer {
  background: var(--primary-charcoal);
  color: var(--primary-white);
  padding: 3rem 0 2rem;
}

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

.footer-section h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--accent-warm-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Portfolio responsive styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .dark-mode-toggle {
    padding: 0.4rem;
  }
}

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

  .areas-grid,
  .audience-grid,
  .portfolio-grid,
  .before-after-grid,
  .process-grid,
  .process-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .interior-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .interior-item.large,
  .interior-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .interior-item img {
    height: 250px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact .section-title,
  .contact .section-subtitle {
    text-align: center;
  }

  .contact-image {
    margin-bottom: 1.5rem;
  }

  .contact-image img {
    height: 100%;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .section {
    padding: 45px 0;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Offset site when admin bar is visible */
body.admin-bar {
    margin-top: 32px;
}
body.admin-bar header{
    top: 32px;
}