:root {
  --stone-slate: #2c3e50;
  --stone-charcoal: #1a252f;
  --stone-river: #5d6d7e;
  --stone-sand: #bdc3c7;
  --stone-light: #ecf0f1;
  --accent-bronze: #b8956a;
  --accent-copper: #cd7f32;
  --accent-sage: #7d9d8e;
  --white: #ffffff;
  --off-white: #f8f9fa;
}

/* Font fallback with size-adjust to minimize layout shift during font swap */
@font-face {
  font-family: 'Archivo Fallback';
  src: local('Arial');
  size-adjust: 97.5%;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}

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

body {
  font-family: "Archivo", "Archivo Fallback", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--stone-charcoal);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
  animation: navFadeIn 0.6s ease-out;
}

@keyframes navFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

nav .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1001;
}

.logo a {
  display: block;
  line-height: 0;
  cursor: pointer;
}

.logo img {
  height: 130px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.logo a:hover img {
  opacity: 0.85;
}

.logo-text {
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--stone-slate);
  letter-spacing: -0.02em;
}

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

.nav-links a {
  color: var(--stone-river);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-bronze);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--stone-slate);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--stone-charcoal) 0%,
    var(--stone-slate) 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(184, 149, 106, 0.15) 0%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(2deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-2deg);
  }
}

.hero .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: "Archivo", sans-serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--white);
  letter-spacing: -0.02em;
  animation: heroFadeIn 0.8s ease-out 0.2s both;
}

.hero-content h1 strong {
  font-weight: 700;
  color: var(--accent-bronze);
  display: block;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--stone-sand);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.8;
  animation: heroFadeIn 0.8s ease-out 0.4s both;
}

/* Use opacity-only animation to prevent layout shift */
@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  animation: heroFadeIn 0.8s ease-out 0.6s both;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  display: inline-block;
}

.btn-primary {
  background: var(--accent-bronze);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184, 149, 106, 0.3);
}

.btn-primary:hover {
  background: var(--stone-slate);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--stone-slate);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-visual {
  position: relative;
  animation: fadeIn 1s ease-out 0.8s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.logo-graphic {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: 3rem;
}

.hero-logo {
  font-family: "Archivo", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-logo .company-name {
  display: block;
  font-size: 4.5rem;
  color: var(--accent-bronze);
  margin-bottom: 1rem;
}

.hero-logo .tagline {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--stone-sand);
  font-style: normal;
  letter-spacing: 0.5px;
}

/* About Section */
.about {
  padding: 6rem 2rem;
  background: var(--white);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    var(--stone-sand),
    transparent
  );
  opacity: 0.2;
}

.about .container {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b6914; /* Darker bronze for WCAG AA contrast (5.5:1 with white) */
  margin-bottom: 1rem;
}

.about h2 {
  font-family: "Archivo", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--stone-slate);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.about-content p {
  font-size: 1.15rem;
  color: var(--stone-river);
  margin-bottom: 1.75rem;
  line-height: 1.8;
  text-align: left;
}

.about-content strong {
  color: var(--stone-slate);
  font-weight: 600;
}

.story-highlight {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--stone-light) 0%, var(--off-white) 100%);
  border-left: 4px solid var(--accent-bronze);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--stone-slate);
  line-height: 1.7;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Developer Section */
.developer {
  padding: 6rem 2rem;
  background: linear-gradient(
    135deg,
    var(--stone-light) 0%,
    var(--off-white) 100%
  );
  position: relative;
}

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

.developer-main {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 2rem;
}

.developer-image-placeholder {
  background: linear-gradient(135deg, var(--stone-slate), var(--stone-river));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 10px 40px rgba(42, 52, 57, 0.2);
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  height: 510px;
  margin-bottom: 1.5rem;
}

.developer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.developer-content h2 {
  font-family: "Archivo", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--stone-slate);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.developer-content p {
  font-size: 1.1rem;
  color: var(--stone-river);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.developer-content strong {
  color: var(--stone-slate);
  font-weight: 600;
}

.developer-points {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--white);
  border-left: 4px solid var(--accent-bronze);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  color: var(--stone-river);
  line-height: 1.7;
}

.custom-list li:last-child {
  margin-bottom: 0;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: var(--accent-bronze);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.2);
}

/* Portfolio Section */
.portfolio {
  padding: 5rem 2rem;
  background: var(--white);
}

.portfolio .container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.portfolio-header h2 {
  font-family: "Archivo", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.portfolio-header h2 strong {
  color: var(--accent-bronze);
}

.portfolio-header p {
  font-size: 1.2rem;
  color: var(--stone-river);
  max-width: 700px;
  margin: 0 auto;
}

/* Portfolio Carousel */
.portfolio-carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
}

.portfolio-carousel {
  overflow: hidden;
  border-radius: 12px;
}

.portfolio-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
}

.portfolio-item {
  min-width: calc(50% - 1rem);
  width: calc(50% - 1rem);
  flex-shrink: 0;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--stone-charcoal);
}

.portfolio-item:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--stone-light);
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.portfolio-overlay {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.portfolio-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--stone-charcoal);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.portfolio-content {
  padding: 1.25rem;
  flex-grow: 1;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}

.portfolio-content h3 {
  font-family: "Archivo", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--stone-charcoal);
  margin-bottom: 0.75rem;
}

.portfolio-content p {
  color: var(--stone-river);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  align-self: start;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-content: start;
  align-self: start;
  height: 4.5rem;
}

.portfolio-tags .tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: var(--stone-light);
  color: var(--stone-slate);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
}

.btn-case-study {
  display: block;
  width: 100%;
  padding: 0.75rem 1.25rem;
  background: var(--accent-bronze);
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  align-self: end;
  text-align: center;
}

.btn-case-study:hover {
  background: var(--stone-slate);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 2px solid var(--stone-charcoal);
  color: var(--stone-charcoal);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background: var(--accent-bronze);
  border-color: var(--accent-bronze);
  color: var(--white);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--stone-light);
  border: 2px solid var(--stone-slate);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dots .dot:hover {
  background: var(--stone-slate);
}

.carousel-dots .dot.active {
  background: var(--accent-bronze);
  border-color: var(--accent-bronze);
}

/* Services Section */
.services {
  padding: 8rem 2rem;
  background: var(--off-white);
}

.services .container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-header h2 {
  font-family: "Archivo", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--stone-slate);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.services-header p {
  font-size: 1.2rem;
  color: var(--stone-river);
  max-width: 700px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  padding: 2rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(42, 52, 57, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-bronze), var(--accent-sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 50px rgba(42, 52, 57, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-sage), var(--stone-slate));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.service-card h3 {
  font-family: "Archivo", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--stone-slate);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--stone-river);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features li {
  color: var(--stone-river);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-bronze);
  font-weight: 700;
}

.service-features {
  margin-bottom: 1.5rem;
}

.btn-service {
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  background: var(--accent-bronze);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-service:hover {
  background: var(--stone-slate);
  transform: translateY(-2px);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 37, 47, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--stone-river);
  cursor: pointer;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--stone-light);
  color: var(--stone-slate);
}

.modal-content h2 {
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--stone-slate);
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--stone-river);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Case Study Modal Styles */
.case-study-modal {
  max-width: 800px;
}

.case-study-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent-bronze);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.case-study-website-link {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  margin-left: 1rem;
  background: var(--stone-slate);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.case-study-website-link:hover {
  background: var(--stone-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.case-study {
  margin-top: 2rem;
}

.case-section {
  margin-bottom: 2.5rem;
}

.case-section h3 {
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--stone-slate);
  margin-bottom: 1rem;
}

.case-section p {
  color: var(--stone-river);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.case-section ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.case-section ul li {
  color: var(--stone-river);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.case-section ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-bronze);
  font-weight: bold;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stone-light);
}

.case-study-tags .tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--stone-light);
  color: var(--stone-slate);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
}

/* Tool Image Container */
.tool-image-container {
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
  background: var(--stone-light);
  border-radius: 8px;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.tool-screenshot {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.tool-image-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  background: var(--stone-slate);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tool-image-close:hover {
  background: var(--stone-charcoal);
  transform: scale(1.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--stone-slate);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--stone-sand);
  border-radius: 4px;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  color: var(--stone-slate);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-bronze);
}

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

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent-bronze);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--accent-copper);
}

/* Why Choose Section */
.why-choose {
  padding: 8rem 2rem;
  background: linear-gradient(
    135deg,
    var(--stone-slate) 0%,
    var(--stone-charcoal) 100%
  );
  color: var(--stone-light);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
}

.why-choose .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-choose h2 {
  font-family: "Archivo", sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  text-align: center;
}

.why-choose h2 strong {
  color: var(--accent-bronze);
  font-weight: 700;
}

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

.value-item {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-item h3 {
  font-family: "Archivo", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-bronze);
  margin-bottom: 1rem;
}

.value-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/* Contact Section */
.contact {
  padding: 8rem 2rem;
  background: var(--white);
}

.contact .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-family: "Archivo", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--stone-slate);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.contact p {
  font-size: 1.2rem;
  color: var(--stone-river);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
}

.contact-item-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bronze);
  margin-bottom: 0.5rem;
}

.contact-item-value {
  font-size: 1.1rem;
  color: var(--stone-slate);
}

.contact-item-value a {
  color: var(--stone-slate);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-value a:hover {
  color: var(--accent-bronze);
}

/* Footer */
footer {
  background: var(--stone-charcoal);
  color: var(--stone-sand);
  padding: 3rem 2rem;
  text-align: center;
}

footer .container {
  max-width: 1400px;
  margin: 0 auto;
}

footer .footer-logo {
  margin-top: 2rem;
  margin-bottom: 0.1rem;
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-bronze);
  letter-spacing: -0.02em;
}

footer p {
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: var(--accent-bronze);
  margin-top: 0.1rem;
}

/* Notification System */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  min-width: 300px;
  max-width: 500px;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transform: translateX(calc(100% + 40px));
  transition: transform 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.5;
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  border-left: 4px solid #28a745;
  color: #155724;
  background: #d4edda;
}

.notification-error {
  border-left: 4px solid #dc3545;
  color: #721c24;
  background: #f8d7da;
}

@media (max-width: 768px) {
  .notification {
    left: 10px;
    right: 10px;
    top: 90px;
    min-width: auto;
    max-width: none;
  }
}

/* Button States */
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: var(--stone-sand);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--stone-slate);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about,
  .developer,
  .services,
  .why-choose,
  .contact {
    padding: 5rem 1.5rem;
  }

  .developer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .developer-points {
    padding: 1.5rem;
  }

  .custom-list li {
    font-size: 1rem;
  }

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

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

  .values-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 1.5rem;
  }

  nav .container {
    padding: 0.1rem 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  nav .container {
    padding: 0.5rem 1rem;
    position: relative;
  }

  .logo img {
    height: 70px;
  }

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

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.25rem;
    padding: 1rem 0;
    display: block;
    border-bottom: 1px solid var(--stone-light);
  }

  /* Hero Section */
  .hero {
    margin-top: 70px;
    min-height: auto;
    padding: 0;
  }

  .hero .container {
    padding: 2.5rem 1.25rem 3rem;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }

  .hero-content h1 strong {
    font-size: inherit;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    width: 100%;
  }

  .hero-image,
  .hero-visual {
    display: none;
  }

  /* Sections - Consistent padding */
  .about,
  .developer,
  .services,
  .why-choose,
  .contact,
  .portfolio {
    padding: 3rem 1rem;
  }

  /* Section Headers */
  .section-label {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .services-header,
  .portfolio-header {
    margin-bottom: 2rem;
    text-align: center;
  }

  .services-header h2,
  .portfolio-header h2,
  .why-choose h2,
  .contact h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .about h2,
  .developer-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .services-header p,
  .portfolio-header p,
  .contact p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-content p,
  .developer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .service-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .service-features {
    margin-top: 1rem;
  }

  .service-features li {
    font-size: 0.875rem;
    padding: 0.4rem 0;
  }

  .btn-service {
    min-height: 44px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  /* Portfolio Grid */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .portfolio-card .portfolio-image {
    height: 180px;
  }

  .portfolio-card .portfolio-content {
    padding: 1.25rem;
  }

  .portfolio-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .portfolio-card > .portfolio-content > p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .portfolio-card .portfolio-overlay {
    top: 0.75rem;
    right: 0.75rem;
  }

  .portfolio-card .portfolio-category {
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
  }

  .portfolio-card .portfolio-tags {
    gap: 0.35rem;
    margin-top: 1rem;
  }

  .portfolio-card .portfolio-tags .tag {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
  }

  .btn-case-study {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    min-height: 44px;
  }

  /* Developer Section */
  .developer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .developer-image-placeholder {
    margin: 0 auto;
    height: 300px;
    max-width: 280px;
  }

  .developer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .developer-content {
    text-align: center;
  }

  .developer-content p {
    text-align: left;
  }

  .developer-points {
    padding: 1.25rem;
    margin-top: 1.5rem;
  }

  .custom-list li {
    font-size: 0.9rem;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Values Grid */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .value-item {
    padding: 1.5rem;
  }

  .value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .value-item p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .value-item:hover {
    transform: translateY(-3px);
  }

  /* Contact Info */
  .contact-info {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact .btn-primary,
  .section-cta .btn {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
  }

  /* Story Highlight */
  .story-highlight {
    padding: 1.25rem;
    font-size: 0.95rem;
    margin-top: 2rem;
  }

  /* Modal */
  .modal-content {
    width: 95%;
    padding: 1.5rem;
    max-height: 90vh;
    margin: 1rem;
  }

  .modal-content h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
  }

  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }

  /* Footer */
  footer {
    padding: 2rem 1rem 1.5rem;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-brand {
    margin-bottom: 0.5rem;
  }

  .footer-logo {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }

  .footer-tagline {
    font-size: 0.85rem;
    margin-top: 0;
  }

  .footer-links {
    order: 2;
  }

  .footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--white);
  }

  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 0;
  }

  .footer-links a {
    font-size: 0.85rem;
    padding: 0.25rem 0;
  }

  .footer-contact {
    order: 3;
  }

  .footer-contact h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--white);
  }

  .footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }

  .footer-contact a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding-top: 0;
    margin-top: 0;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
  }

  .footer-bottom a {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.875rem;
  }

  .logo img {
    height: 55px;
  }

  .services-header h2,
  .portfolio-header h2,
  .why-choose h2,
  .contact h2 {
    font-size: 1.35rem;
  }

  .about h2,
  .developer-content h2 {
    font-size: 1.35rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    min-height: 44px;
  }

  .service-card {
    padding: 1rem;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }

  .service-card p {
    font-size: 0.8rem;
  }

  .value-item {
    padding: 1rem;
  }

  .value-item h3 {
    font-size: 1.05rem;
  }

  .value-item p {
    font-size: 0.8rem;
  }

  .nav-links {
    width: 100%;
    padding: 4.5rem 1rem 2rem;
  }

  .developer-image-placeholder {
    height: 220px;
    max-width: 200px;
  }

  /* Portfolio Preview - Extra Small */
  .portfolio-preview {
    padding: 2rem 0.5rem;
  }

  .portfolio-preview h2 {
    font-size: 1.35rem;
  }

  .portfolio-preview-item .portfolio-image {
    height: 160px;
  }

  .portfolio-preview-item .portfolio-content {
    padding: 0.875rem 1rem 1rem;
  }

  .portfolio-preview-item h3 {
    font-size: 0.95rem;
  }

  .portfolio-preview-item p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .portfolio-card .portfolio-image {
    height: 150px;
  }

  .portfolio-card h2 {
    font-size: 1rem;
  }

  .portfolio-card .portfolio-content {
    padding: 0.875rem;
  }

  .portfolio-card > .portfolio-content > p {
    font-size: 0.75rem;
  }

  .section-label {
    font-size: 0.7rem;
  }

  .about,
  .developer,
  .services,
  .why-choose,
  .contact,
  .portfolio {
    padding: 2rem 0.5rem;
  }

  .story-highlight {
    padding: 0.875rem;
    font-size: 0.85rem;
  }

  .custom-list li {
    font-size: 0.8rem;
  }

  /* Footer - Extra Small */
  .footer-grid {
    gap: 1.25rem;
  }

  .footer-logo {
    font-size: 1.15rem;
  }

  .footer-tagline {
    font-size: 0.8rem;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .footer-links ul {
    gap: 0.35rem 0.75rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-contact p {
    font-size: 0.8rem;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 0.75rem;
  }
}

/* Responsive line breaks */
.desktop-break {
  display: none;
}

@media (min-width: 769px) {
  .desktop-break {
    display: inline;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Reduce motion for users who prefer it */
@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;
  }
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
  /* Improve tap highlight */
  a, button, .btn {
    -webkit-tap-highlight-color: rgba(184, 149, 106, 0.2);
  }

  /* Prevent text size adjustment */
  html {
    -webkit-text-size-adjust: 100%;
  }

  /* Improve form inputs on mobile */
  input, textarea, select {
    font-size: 16px;
  }
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--stone-charcoal);
  color: var(--white);
  padding: 1.5rem;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.4s ease-in-out;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--accent-bronze);
}

.cookie-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--stone-sand);
  margin: 0;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cookie-accept {
  background: var(--accent-bronze);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--stone-slate);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--stone-river);
}

.cookie-reject:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: var(--accent-bronze);
  border: 2px solid var(--accent-bronze);
}

.cookie-settings:hover {
  background: var(--accent-bronze);
  color: var(--white);
}

/* Cookie Settings Panel */
.cookie-settings-panel {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stone-river);
}

.cookie-settings-panel h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--accent-bronze);
}

.cookie-option {
  margin-bottom: 1rem;
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent-bronze);
  cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-option span {
  color: var(--stone-sand);
}

.cookie-option strong {
  color: var(--white);
}

.cookie-settings-buttons {
  margin-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-banner {
    position: fixed !important;
    bottom: 0 !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    padding: 1.25rem 1rem;
    z-index: 10000 !important;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .cookie-text {
    min-width: unset;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 100px;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }
  
  .cookie-option label {
    text-align: left;
  }
}
/* ========================================
   MULTI-PAGE LAYOUT STYLES
   ======================================== */

/* Page Header - Used on interior pages */
.page-header {
  margin-top: 130px;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--stone-charcoal) 0%, var(--stone-slate) 100%);
  text-align: center;
}

.page-header h1 {
  font-family: "Archivo", sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header h1 strong {
  font-weight: 700;
  color: var(--accent-bronze);
}

.page-header p {
  font-size: 1.25rem;
  color: var(--stone-sand);
  max-width: 600px;
  margin: 0 auto;
}

/* Active nav link */
.nav-links a.active {
  color: var(--accent-bronze);
}

.nav-links a.active::after {
  width: 100%;
}

/* CTA Section - Bottom of interior pages */
.cta-section {
  padding: 5rem 2rem;
  background: var(--stone-light);
  text-align: center;
}

.cta-section h2 {
  font-family: "Archivo", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--stone-slate);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--stone-river);
  margin-bottom: 2rem;
}

.cta-section .cta-buttons {
  justify-content: center;
}

.btn-secondary-dark {
  background: transparent;
  color: var(--stone-slate);
  border: 2px solid var(--stone-slate);
}

.btn-secondary-dark:hover {
  background: var(--stone-slate);
  color: var(--white);
  transform: translateY(-2px);
}

/* Enhanced Footer for Multi-Page */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--stone-sand);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-bronze);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: var(--stone-sand);
}

.footer-contact a {
  color: var(--stone-sand);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent-bronze);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--stone-sand);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--accent-bronze);
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

.services-page {
  padding: 4rem 2rem;
}

.services-page .container {
  max-width: 1000px;
}

.service-detail {
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--stone-sand);
}

.service-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 3rem;
  align-items: start;
}

.service-detail-content.reverse {
  direction: rtl;
}

.service-detail-content.reverse > * {
  direction: ltr;
}

.service-icon-large {
  font-size: 5rem;
  text-align: center;
}

.service-info h2 {
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--stone-slate);
  margin-bottom: 1rem;
}

.service-info > p {
  font-size: 1.1rem;
  color: var(--stone-river);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-features-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--stone-river);
  line-height: 1.6;
}

.service-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-bronze);
  font-weight: 700;
}

.service-features-list li strong {
  color: var(--stone-slate);
}

/* Process Section */
.process-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.process-section h2 {
  font-family: "Archivo", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--stone-slate);
  text-align: center;
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--stone-light);
  border-radius: 8px;
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--accent-bronze);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--stone-slate);
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--stone-river);
  line-height: 1.6;
}

/* ========================================
   PORTFOLIO PAGE STYLES
   ======================================== */

.portfolio-page {
  padding: 4rem 2rem;
  background: var(--off-white);
  min-height: 100vh;
}

/* Portfolio Filter Buttons */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  color: var(--stone-slate);
  border: 2px solid var(--stone-sand);
  border-radius: 25px;
  font-family: "Archivo", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--accent-bronze);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 0;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  width: 300px;
  height: 300px;
}

.filter-btn span {
  position: relative;
  z-index: 1;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--white);
  border-color: var(--accent-bronze);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 149, 106, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  opacity: 1;
  animation: fadeInUp 0.6s ease-out;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-card.hidden {
  display: none;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-bronze);
}

.portfolio-card .portfolio-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--stone-light);
}

.portfolio-card .portfolio-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 37, 47, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-image::after {
  opacity: 1;
}

.portfolio-card .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(1);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.03);
  filter: brightness(1.02);
}

.portfolio-card .portfolio-overlay {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  animation: slideInRight 0.5s ease-out 0.2s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.portfolio-card .portfolio-category {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-card .portfolio-content {
  padding: 1.5rem;
  position: relative;
}

.portfolio-card h2 {
  font-family: "Archivo", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--stone-slate);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.portfolio-card:hover h2 {
  color: var(--accent-bronze);
}

.portfolio-card > .portfolio-content > p {
  font-size: 1rem;
  color: var(--stone-river);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.portfolio-card .btn-case-study {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-card .btn-case-study::after {
  content: '→';
  position: absolute;
  right: 1.5rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-card:hover .btn-case-study::after {
  opacity: 1;
  right: 1rem;
}

.portfolio-card .portfolio-tags {
  margin-top: 1.5rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-tags {
  opacity: 1;
}

.portfolio-card .portfolio-tags .tag {
  transition: all 0.3s ease;
  background: var(--stone-light);
}

.portfolio-card:hover .portfolio-tags .tag {
  background: rgba(184, 149, 106, 0.1);
  border-color: var(--accent-bronze);
}

.portfolio-card:hover .portfolio-tags .tag:nth-child(2)::before {
  left: 100%;
  transition-delay: 0.2s;
}

.portfolio-card:hover .portfolio-tags .tag:nth-child(3)::before {
  left: 100%;
  transition-delay: 0.3s;
}

.portfolio-card:hover .portfolio-tags .tag:nth-child(4)::before {
  left: 100%;
  transition-delay: 0.4s;
}

.portfolio-card .portfolio-tags .tag:hover {
  background: var(--accent-bronze);
  color: var(--white);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 8px rgba(184, 149, 106, 0.3);
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-page {
  padding: 4rem 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-section h2,
.contact-form-section h2 {
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--stone-slate);
  margin-bottom: 1rem;
}

.contact-info-section > p {
  font-size: 1.1rem;
  color: var(--stone-river);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-details {
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item > div:last-child {
  flex: 1;
}

.contact-detail-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--stone-slate);
  margin-bottom: 0.25rem;
  text-align: left;
}

.contact-detail-item p {
  color: var(--stone-river);
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

.contact-detail-item a {
  color: var(--accent-bronze);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-item a:hover {
  color: var(--stone-slate);
}

.quick-service-links {
  padding: 1.5rem;
  background: var(--stone-light);
  border-radius: 8px;
}

.quick-service-links h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--stone-slate);
  margin-bottom: 1rem;
}

.service-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.quick-link {
  padding: 0.5rem 1rem;
  background: var(--white);
  color: var(--stone-slate);
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--stone-sand);
}

.quick-link:hover {
  background: var(--accent-bronze);
  color: var(--white);
  border-color: var(--accent-bronze);
}

.contact-form-section {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

/* FAQ Section */
.faq-section {
  padding: 5rem 2rem;
  background: var(--stone-light);
}

.faq-section h2 {
  font-family: "Archivo", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--stone-slate);
  text-align: center;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--stone-slate);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--stone-river);
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   RESPONSIVE STYLES FOR MULTI-PAGE
   ======================================== */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-header {
    margin-top: 70px;
    padding: 2.5rem 1rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .service-detail-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .service-detail-content.reverse {
    direction: ltr;
  }
  
  .service-icon-large {
    margin-bottom: 1rem;
  }
  
  .service-features-list li {
    text-align: left;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cta-section {
    padding: 3rem 1rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .cta-section p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .cta-section .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .quick-service-links {
    text-align: center;
  }
  
  .service-quick-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Portfolio Mobile Styles */
  .portfolio-filters {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0;
  }
  
  .filter-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    flex: 0 0 auto;
  }
  
  .portfolio-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  /* Contact Page Mobile */
  .contact-page {
    padding: 2.5rem 1rem;
  }

  .contact-layout {
    gap: 2rem;
  }

  .contact-info-section h2,
  .contact-form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .contact-info-section > p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

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

  .contact-detail-item {
    padding: 0.75rem 0;
  }

  .contact-detail-label {
    font-size: 0.7rem;
  }

  .contact-detail-value {
    font-size: 1rem;
  }

  .quick-service-links h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .quick-link {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }

  .contact-form-section {
    padding: 1.5rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 16px;
  }

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

  .btn-submit {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
  }

  /* FAQ Mobile */
  .faq-section {
    padding: 3rem 1rem;
  }

  .faq-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .faq-item {
    padding: 1.25rem;
  }

  .faq-item h3 {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }

  /* Services Page Mobile */
  .service-detail {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-icon-large {
    font-size: 3.5rem;
    margin-bottom: 0;
  }

  .service-info h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .service-info > p {
    font-size: 0.95rem;
    text-align: left;
  }

  .service-features-list li {
    font-size: 0.9rem;
    padding: 0.5rem 0 0.5rem 1.5rem;
  }

  .process-section {
    padding: 3rem 1rem;
  }

  .process-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .process-step {
    padding: 1.5rem 1rem;
  }

  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .process-step h3 {
    font-size: 1.1rem;
  }

  .process-step p {
    font-size: 0.875rem;
  }

  /* Portfolio Page Mobile */
  .portfolio-page {
    padding: 2.5rem 1rem;
  }
}

/* ========================================
   HOMEPAGE PREVIEW SECTIONS
   ======================================== */

/* Services Preview Section */
.services-preview {
  padding: 5rem 0;
  background: var(--stone-light);
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--stone-slate);
}

.services-preview > .container > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--stone-river);
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.service-preview-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-preview-card .service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-preview-card h3 {
  color: var(--stone-slate);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-preview-card p {
  color: var(--stone-river);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-preview-card .btn-text {
  color: var(--accent-bronze);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-preview-card .btn-text:hover {
  color: var(--stone-slate);
  gap: 0.75rem;
}

.section-cta {
  text-align: center;
}

/* About Preview Section */
.about-preview {
  padding: 5rem 0;
  background: #fff;
}

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

.about-preview-text .section-label {
  color: var(--accent-bronze);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.about-preview-text h2 {
  color: var(--stone-slate);
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

.about-preview-text p {
  color: var(--stone-river);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-preview-text .btn {
  margin-top: 0.5rem;
}

.about-preview-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-preview-image .brand-icon {
  font-size: 10rem;
  opacity: 0.15;
  color: var(--stone-slate);
}

/* Portfolio Preview Section */
.portfolio-preview {
  padding: 5rem 0;
  background: var(--stone-charcoal);
  color: #fff;
}

.portfolio-preview h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 300;
}

.portfolio-preview h2 strong {
  color: var(--accent-bronze);
  font-weight: 700;
}

.portfolio-preview > .container > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.portfolio-preview-item {
  background: var(--stone-slate);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-preview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-preview-item .portfolio-image {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--stone-charcoal) 0%, var(--stone-slate) 100%);
  font-size: 3rem;
}

.portfolio-preview-item .portfolio-content {
  padding: 1.5rem;
}

.portfolio-preview-item .portfolio-category {
  color: var(--accent-bronze);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.portfolio-preview-item h3 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.portfolio-preview-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.portfolio-preview .section-cta .btn {
  border-color: #fff;
  color: #fff;
}

.portfolio-preview .section-cta .btn:hover {
  background: #fff;
  color: var(--stone-charcoal);
}
}

/* Contact CTA Section */
.contact-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--stone-slate) 0%, var(--stone-charcoal) 100%);
  color: #fff;
  text-align: center;
}

.contact-cta .section-label {
  color: var(--accent-bronze);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.contact-cta h2 {
  margin-bottom: 1rem;
}

.contact-cta > .container > p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.contact-cta .contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-cta .contact-item {
  text-align: center;
  min-width: 150px;
}

.contact-cta .contact-item-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-bronze);
  margin-bottom: 0.5rem;
}

.contact-cta .contact-item-value {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-cta .contact-item-value a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-cta .contact-item-value a:hover {
  color: var(--accent-bronze);
}

/* Homepage Responsive Styles */
@media (max-width: 992px) {
  .services-preview-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-preview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .about-preview-image {
    order: -1;
  }
  
  .about-preview-image .brand-icon {
    font-size: 6rem;
  }
  
  .portfolio-preview-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 1.25rem;
  }
  
  .contact-cta .contact-info {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-preview,
  .about-preview,
  .portfolio-preview,
  .why-choose,
  .contact-cta {
    padding: 2.5rem 1rem;
  }

  .portfolio-preview {
    padding: 2.5rem 0.75rem;
  }

  .portfolio-preview .portfolio-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .portfolio-preview h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .portfolio-preview > .container > p,
  .portfolio-header p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .portfolio-preview-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }

  .portfolio-preview-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .portfolio-preview-item .portfolio-image {
    height: 200px;
    position: relative;
  }

  .portfolio-preview-item .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
  }

  .portfolio-preview-item .portfolio-overlay {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
  }

  .portfolio-preview-item .portfolio-category {
    font-size: 0.7rem;
    padding: 0.35rem 0.6rem;
  }

  .portfolio-preview-item .portfolio-content {
    padding: 1rem 1.25rem 1.25rem;
    background: var(--white);
  }

  .portfolio-preview-item h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--stone-charcoal);
  }

  .portfolio-preview-item p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--stone-river);
    margin: 0;
  }

  .portfolio-preview .section-cta {
    margin-top: 1.5rem;
    text-align: center;
  }

  .portfolio-preview .section-cta .btn {
    width: 100%;
    max-width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .about-preview-text h2 {
    font-size: 1.75rem;
  }

  .contact-cta h2 {
    font-size: 1.75rem;
  }

  .contact-cta p {
    font-size: 0.95rem;
  }

  .contact-cta .contact-item {
    padding: 0.75rem 0;
  }

  .contact-cta .contact-item-label {
    font-size: 0.75rem;
  }

  .contact-cta .contact-item-value {
    font-size: 1rem;
  }
}