/* ========================================
   Blueprint Services - Maramani-style Replica
   Professional Architectural & Engineering
   ======================================== */

:root {
  --color-bg: #faf9f7;
  --color-bg-alt: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #5c5c5c;
  --color-accent: #c17f59;
  --color-accent-dark: #a66b48;
  --color-slate: #2d3e50;
  --color-slate-light: #4a6278;
  --color-border: #e8e6e3;
  --color-success: #2d6a4f;
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
  --radius: 6px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--color-slate);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.announcement-text {
  margin: 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-slate);
}

/* Desktop Nav */
.nav-desktop {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-item a {
  display: block;
  padding: 8px 16px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius);
}

.nav-item a:hover {
  background: var(--color-bg);
  color: var(--color-accent);
}

.nav-item.has-dropdown {
  position: relative;
}

.nav-item.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  list-style: none;
  z-index: 1000;
}

/* Mobile dropdown active state */
@media (max-width: 992px) {
  .dropdown.mobile-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
    top: 0;
    margin-top: 8px;
    box-shadow: var(--shadow-sm);
  }
}

.dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 0.95rem;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-cta {
  padding: 0.625rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.btn-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: var(--radius);
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn-icon:hover {
  background: var(--color-bg);
  color: var(--color-accent);
}

.btn-cart {
  position: relative;
}

.btn-cart[data-count]:not([data-count="0"])::after {
  content: attr(data-count);
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  background: var(--color-accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.btn-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.btn-mobile-menu span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

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

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

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

/* Mobile Nav */
.nav-mobile {
  display: none;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 20px;
}

.nav-mobile.active {
  display: block;
}

.nav-mobile-list {
  list-style: none;
}

.nav-mobile-list li a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  
  .btn-mobile-menu {
    display: flex;
  }
  
  .btn-header-cta {
    display: none;
  }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.hero {
  position: relative;
  height: 70vh;
  min-height: 450px;
  max-height: 700px;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 24px 60px 5%;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px !important;
  text-shadow: none;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 24px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

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

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

.btn-outline:hover {
  background: var(--color-slate);
  color: white;
}

/* Hero Nav */
.hero-nav {
  position: absolute;
  bottom: 40px;
  right: 5%;
  z-index: 3;
  display: flex;
  gap: 12px;
}

.hero-nav button {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--color-slate);
  cursor: pointer;
  transition: all var(--transition);
}

.hero-nav button:hover {
  background: white;
  color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 5%;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dot.active {
  background: white;
  transform: scale(1.2);
}

/* Feature Badges */
.feature-badges {
  background: var(--color-bg-alt);
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.badge {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* Services Carousel */
.services-carousel-section {
  padding: 48px 0;
}

.services-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 0;
  -webkit-overflow-scrolling: touch;
}

.services-carousel::-webkit-scrollbar {
  height: 6px;
}

.services-carousel::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 3px;
}

.service-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.service-label {
  display: block;
  padding: 16px;
  background: var(--color-bg-alt);
  font-weight: 600;
  color: var(--color-slate);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.carousel-nav button,
.testimonials-nav button,
.popular-carousel-nav button {
  width: 44px;
  height: 44px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--color-slate);
  cursor: pointer;
  transition: all var(--transition);
}

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

/* Stats */
.stats-section {
  background: var(--color-slate);
  color: white;
  padding: 48px 0;
  text-align: center;
}

.stats-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stats-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Section Titles */
.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-slate);
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  max-width: 100%;
  width: 100%;
  text-align: center;
}

.section-link {
  display: inline-block;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 32px;
}

.section-link:hover {
  text-decoration: underline;
}

/* Plans Section */
.plans-section {
  padding: 64px 0;
}

.plans-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 0;
}

.plan-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.plan-card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.plan-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px;
  color: var(--color-slate);
}

.plans-nav {
  margin-top: 24px;
}

/* Testimonials */
.testimonials-section {
  padding: 64px 0;
  background: var(--color-bg-alt);
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  padding: 40px 24px;
  text-align: center;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial cite {
  font-style: normal;
  font-weight: 500;
  color: var(--color-text-muted);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

/* Popular Section */
.popular-section {
  padding: 64px 0;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.popular-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.popular-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.popular-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

.popular-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.popular-card-content {
  padding: 24px;
}

.popular-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-slate);
  margin-bottom: 8px;
}

.popular-price {
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.popular-specs {
  list-style: none;
  margin-bottom: 20px;
}

.popular-specs li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.popular-specs li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.btn-quick {
  width: 100%;
}

.popular-carousel-nav {
  display: none;
}

@media (max-width: 768px) {
  .popular-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .popular-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
  }
  
  .popular-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }
}

/* Concept Section */
.concept-section {
  padding: 64px 0;
  background: var(--color-bg-alt);
}

.concept-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.concept-step {
  text-align: center;
  padding: 24px 16px;
}

.concept-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.concept-step h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-slate);
  margin-bottom: 8px;
}

.concept-step p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
  min-height: auto;
}

.cta-banner:has(.contact-form-wrapper) {
  padding: 60px 24px;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 62, 80, 0.85);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* CTA Banner with Contact Form */
.cta-banner .contact-form-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 24px;
}

.cta-content .btn-primary:hover {
  background: white;
  color: var(--color-slate);
  border-color: white;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.cta-banner .contact-form-header .section-title {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-banner .contact-form-header .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.contact-form {
  background: var(--color-bg-alt);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Contact form in CTA banner */
.cta-banner .contact-form {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg-alt);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(193, 127, 89, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

.checkbox-group {
  margin-top: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-label span {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  position: relative;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  display: none;
  font-size: 0.95rem;
}

.form-message.success {
  display: block;
  background: rgba(45, 106, 79, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(45, 106, 79, 0.3);
}

.form-message.error {
  display: block;
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-form-section {
    padding: 60px 0;
  }
}

/* Footer */
.footer {
  background: var(--color-slate);
  color: white;
  padding: 64px 0 24px;
}

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-info {
  margin-bottom: 20px;
}

.footer-info p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 4px;
}

.footer-info a {
  color: var(--color-accent);
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.9);
}

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

.footer-col > p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.payment-icons {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-slate);
  color: white;
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

/* Service Detail Sections */
.service-detail-section {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

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

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 3rem;
}

.service-detail-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-slate);
  margin-bottom: 1.5rem;
}

.service-detail-text ul {
  list-style: none;
  margin: 1.5rem 0;
}

.service-detail-text li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.service-detail-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 2rem 0 1.5rem;
  font-family: var(--font-heading);
}

.service-detail-image {
  height: 400px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-detail-image {
    height: 250px;
    order: -1;
  }
}

/* Category Sections */
.category-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.category-section:nth-child(even) {
  background: var(--color-bg-alt);
}

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

.category-card {
  background: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-slate);
  margin-bottom: 1rem;
}

.category-card p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-consent.hidden {
  transform: translateY(100%);
}

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

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.btn-cookie-accept {
  background: white !important;
  color: var(--color-slate) !important;
  border-color: white !important;
}

.btn-cookie-decline {
  border-color: rgba(255,255,255,0.5) !important;
  color: white !important;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100%;
  height: 100vh;
  background: var(--color-bg-alt);
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  z-index: 9998;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  padding: 24px;
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.cart-close {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
}

.cart-body {
  text-align: center;
  padding: 40px 0;
}

.cart-body p {
  margin-bottom: 24px;
  color: var(--color-text-muted);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}
