/* ===================================
   XPRESS FRAMING - PROFESSIONAL DESIGN
   100% Fixed - Responsive - Perfect
   2025 - Final Version
   =================================== */

:root {
  --primary: #2c3e50;
  --primary-dark: #1a252f;
  --accent: #d4af37;
  --accent-dark: #c29b2a;
  --accent-light: #e5c158;
  --light: #ffffff;
  --cream: #fafaf8;
  --text: #333333;
  --text-light: #666666;
  --border: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-accent: 0 4px 20px rgba(212, 175, 55, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 70px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 50px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Josefin Sans", sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}
::selection {
  background: var(--accent);
  color: white;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul,
ol {
  list-style: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* TOP BAR */
.top-bar {
  background: var(--primary);
  color: white;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 3px solid var(--accent);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
}
.top-bar-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
}
.top-bar-item a {
  color: white;
}
.top-bar-item a:hover {
  color: var(--accent);
}
.top-bar-cta {
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-cta svg {
  width: 16px;
  height: 16px;
  animation: pulse-icon 2s ease-in-out infinite;
}
@keyframes pulse-icon {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* NAVIGATION */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 35px;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}
.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}
.logo:hover img {
  transform: scale(1.05);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  color: var(--text);
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: block;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--accent);
  background: rgba(212, 175, 55, 0.1);
}
.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: var(--transition);
}
.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  padding: 8px 0;
  margin-top: 5px;
  border: 1px solid var(--border);
  z-index: 1002;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text);
}
.dropdown-menu li a:hover {
  background: var(--cream);
  color: var(--accent);
}
.nav-cta {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  ) !important;
  color: white !important;
  padding: 12px 24px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-accent);
  margin-left: 10px;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    var(--accent) 100%
  ) !important;
}

/* MOBILE TOGGLE */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}
.mobile-toggle span {
  width: 26px;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 3px;
  display: block;
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(
      135deg,
      rgba(44, 62, 80, 0.95) 0%,
      rgba(26, 37, 47, 0.92) 100%
    ),
    url("../images/hero/hero-background.jpg") center/cover no-repeat;
  padding: 90px 0 50px;
  margin-top: 105px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-content {
  animation: fadeInUp 0.8s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.hero-badge svg {
  width: 16px;
  height: 16px;
}
.hero-title {
  font-size: 2.4rem;
  color: white;
  margin-bottom: 14px;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.2;
}
.hero-title .highlight {
  color: var(--accent);
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.hero-service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 14px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  cursor: pointer;
}
.hero-service-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.hero-service-card svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 6px;
}
.hero-service-card h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.hero-service-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}
.google-badge-compact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}
.google-badge-compact svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.google-badge-compact .stars {
  color: #ffa500;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.google-badge-compact .rating {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}
.google-badge-compact .count {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* HERO STEPS SIDEBAR */
.hero-steps {
  background: white;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  animation: fadeInRight 0.8s ease 0.3s both;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-steps-header {
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
}
.hero-steps-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.hero-steps-header h3 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.hero-steps-header p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}
.toggle-hint {
  display: none;
  font-size: 0.7rem;
  color: var(--accent);
  font-style: italic;
  margin-top: 4px;
}
.hero-steps-toggle-icon {
  display: none;
}
.hero-step {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.hero-step:last-child {
  border-bottom: none;
}
.hero-step-num {
  width: 26px;
  height: 26px;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.hero-step-content h4 {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.hero-step-content p {
  color: var(--text-light);
  font-size: 0.75rem;
  line-height: 1.4;
}
.hero-step-content a {
  color: var(--accent);
  font-weight: 600;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  color: white;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  color: white;
}
.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: white;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* SECTIONS */
.section {
  padding: 50px 0;
}
.section:first-of-type {
  margin-top: 105px;
}
.section-cream {
  background: var(--cream);
}
.section-header {
  text-align: center;
  margin-bottom: 35px;
}
.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  padding: 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.service-card-icon svg {
  width: 26px;
  height: 26px;
  color: white;
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.service-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
}
.service-link:hover {
  gap: 8px;
  color: var(--primary);
}

/* 5 STEPS HORIZONTAL */
.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 25px;
}
.step-card {
  text-align: center;
  padding: 20px 12px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.step-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 8px;
  height: 2px;
  background: var(--accent);
}
.step-card:last-child::after {
  display: none;
}
.step-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 auto 10px;
}
.step-card h4 {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.step-card p {
  color: var(--text-light);
  font-size: 0.75rem;
  line-height: 1.4;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  padding: 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}
.testimonial-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}
.testimonial-card.featured {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border-color: var(--accent);
}
.testimonial-icon {
  width: 45px;
  height: 45px;
  margin: 0 auto 10px;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.testimonial-rating {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}
.testimonial-card.featured .testimonial-rating {
  color: var(--accent);
}
.testimonial-count {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 14px;
}
.testimonial-card.featured .testimonial-count {
  color: rgba(255, 255, 255, 0.8);
}
.testimonial-list {
  text-align: left;
}
.testimonial-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}
.testimonial-list li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 90px 0 35px;
  margin-top: var(--nav-height);
  text-align: center;
  position: relative;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-light),
    var(--accent)
  );
}
.page-header h1 {
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 6px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* PAGE LAYOUT */
.page-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 35px;
  padding: 40px 0;
}
.page-content {
  min-width: 0;
}
.steps-sidebar {
  background: white;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  height: fit-content;
  border: 2px solid rgba(212, 175, 55, 0.2);
}
.steps-sidebar-header {
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
}
.steps-sidebar-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.steps-sidebar-header p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}
.steps-toggle-icon {
  display: none;
}
.sidebar-step {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-step:last-child {
  border-bottom: none;
}
.sidebar-step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.sidebar-step-content h4 {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.sidebar-step-content p {
  color: var(--text-light);
  font-size: 0.75rem;
  line-height: 1.4;
}
.sidebar-step-content a {
  color: var(--accent);
  font-weight: 600;
}

/* SERVICE DETAIL */
.service-detail {
  background: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.service-detail h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.service-detail h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 18px 0 8px;
}
.service-detail p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}
.service-detail ul {
  margin: 10px 0 10px 18px;
}
.service-detail ul li {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 5px;
  list-style: disc;
}

/* SERVICE IMAGE - FIXED RATIO 1:1 SQUARE - CONSISTENT */
.service-image-container {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 14px 0;
  background: linear-gradient(135deg, #fafaf8 0%, #f0f0f0 100%);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.service-quick-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
  position: sticky;
  top: 105px;
  background: white;
  z-index: 100;
  padding: 12px 0;
  border-radius: var(--radius-sm);
}
.about-content {
  max-width: 100%;
}
.service-quick-link {
  padding: 10px 14px;
  background: var(--cream);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
}
.service-quick-link:hover {
  background: var(--accent);
  color: white;
}
.highlight-box,
.info-box {
  background: linear-gradient(135deg, #fff9e6 0%, #fffdf5 100%);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 18px;
  margin: 14px 0;
}
.highlight-box h3,
.highlight-box h4,
.info-box h3,
.info-box h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

/* PRICING TABLE */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.price-table th {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}
.price-table th:last-child {
  text-align: right;
}
.price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.price-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--accent);
}
.price-table tr:nth-child(even) {
  background: var(--cream);
}
.price-table tr:hover {
  background: rgba(212, 175, 55, 0.1);
}
.price-note {
  background: var(--cream);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.price-note strong {
  color: var(--primary);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 25px;
}
.contact-box {
  padding: 22px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.contact-box:hover {
  transform: translateY(-5px);
}
.contact-box-dark {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
}
.contact-box-light {
  background: white;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--accent);
}
.contact-box-accent {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
}
.contact-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.contact-box-header svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.contact-box-header h3 {
  font-size: 1.05rem;
  margin: 0;
}
.contact-box p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 320px;
  margin-bottom: 22px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.hours-table {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 18px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-day {
  font-weight: 600;
  color: var(--primary);
}
.hours-time {
  color: var(--accent);
  font-weight: 600;
}

/* GALLERY FILTERS - EXACT MATCH WITH SERVICE QUICK NAV */
.gallery-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
  position: sticky;
  top: 105px;
  background: white;
  z-index: 100;
  padding: 12px 0;
  border-radius: var(--radius-sm);
}
.filter-btn {
  padding: 10px 14px;
  background: var(--cream);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding-bottom: 100%;
  background: linear-gradient(135deg, #fafaf8 0%, #f0f0f0 100%);
  border: 2px solid var(--border);
  aspect-ratio: 1/1;
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.9), transparent);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}
.gallery-item:hover::before {
  opacity: 1;
}
.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.gallery-item:hover img {
  transform: scale(1.03);
}
.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
  text-align: center;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.95), transparent);
}
.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
  opacity: 1;
}
.gallery-item-overlay h4 {
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--accent);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.gallery-item.hidden {
  display: none;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}
.lightbox-close:hover {
  color: var(--accent);
}

/* CTA */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 45px 0;
}
.cta-content {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}
.cta-content h2 {
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 20px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-box {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 35px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 25px;
}
.cta-box h2 {
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

/* FOOTER */
.footer {
  background: var(--primary);
  color: white;
  padding: 45px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 35px;
  margin-bottom: 35px;
}
.footer-col h4 {
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.9rem;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover {
  color: var(--accent);
}
.footer-col ul li a svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.footer-logo {
  margin-bottom: 10px;
}
.footer-logo .logo-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}
.footer-logo .logo-sub {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  margin-left: 5px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a:hover {
  color: var(--accent);
}

/* LEGAL */
.legal-content {
  background: white;
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal-content h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--primary);
  font-size: 1.3rem;
  margin: 25px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent);
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-content ul {
  margin: 10px 0 10px 22px;
}
.legal-content ul li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 5px;
  list-style: disc;
}
.legal-content a {
  color: var(--accent);
}

/* FLOATING */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 997;
}
.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}
.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
}
.floating-btn svg {
  width: 24px;
  height: 24px;
}
.floating-btn.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}
.floating-btn.call {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
}
.floating-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 60px;
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  font-size: 0.8rem;
}
.floating-btn:hover::before {
  opacity: 1;
}
.back-to-top {
  position: fixed;
  bottom: 145px;
  right: 25px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 996;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--accent);
}

/* COOKIE */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  border-top: 4px solid var(--accent);
}
.cookie-consent.show {
  transform: translateY(0);
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.cookie-icon {
  width: 45px;
  height: 45px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cookie-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.cookie-text {
  flex: 1;
}
.cookie-text h3 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 2px;
}
.cookie-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}
.cookie-text a {
  color: var(--accent);
  font-weight: 600;
}
.cookie-buttons {
  display: flex;
  gap: 8px;
}
.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
}
.cookie-btn-accept {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  color: white;
}
.cookie-btn-accept:hover {
  transform: translateY(-2px);
}
.cookie-btn-decline {
  background: var(--cream);
  color: var(--primary);
}
.cookie-btn-decline:hover {
  background: var(--border);
}

/* ===== RESPONSIVE - 100% FIXED ===== */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }
  .page-wrapper {
    grid-template-columns: 1fr;
  }
  .steps-sidebar {
    position: static;
    order: -1;
  }

  /* TOGGLE ICON - ONLY ON MOBILE */
  .steps-toggle-icon {
    display: none;
  }
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-horizontal {
    grid-template-columns: repeat(3, 1fr);
  }
  .step-card::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* HIDE TOP BAR ON MOBILE - COMPLETELY */
  .top-bar {
    display: none !important;
  }

  /* MOBILE NAV - SIMPLE PROFESSIONAL MENU */
  .navbar {
    top: 0 !important;
    position: fixed;
    z-index: 1001;
    height: 60px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  .nav-container {
    height: 60px;
  }
  .logo img {
    height: 45px;
  }
  .mobile-toggle {
    display: flex !important;
    position: relative;
    z-index: 1003;
  }
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: white;
    flex-direction: column;
    padding: 0;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu > li > a {
    display: block;
    padding: 16px 20px;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
  }
  .nav-menu > li > a:hover,
  .nav-menu > li > a.active {
    background: var(--cream);
    color: var(--accent);
  }
  .nav-cta {
    margin: 20px !important;
    width: calc(100% - 40px) !important;
    display: block !important;
    text-align: center !important;
  }

  /* MOBILE DROPDOWN - TOGGLE ON CLICK */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--cream);
    margin: 0;
    padding: 0;
    border: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .dropdown.active .dropdown-menu {
    max-height: 200px;
  }
  .dropdown-menu li a {
    color: var(--text-light) !important;
    padding: 12px 20px 12px 40px !important;
    font-size: 0.9rem !important;
    display: block;
  }
  .dropdown-menu li a:hover {
    background: white !important;
    color: var(--accent) !important;
  }
  .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .dropdown-toggle svg {
    stroke: var(--primary) !important;
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
  }
  .dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
  }

  /* HOW IT WORKS TOGGLE ON MOBILE */
  .steps-toggle-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
  }
  .steps-toggle-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
  }
  .steps-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0 !important;
  }
  .steps-sidebar-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .steps-sidebar.active .steps-sidebar-content {
    max-height: 1000px;
    padding-top: 16px;
  }
  .steps-sidebar.active .steps-toggle-icon svg {
    transform: rotate(180deg);
  }

  /* HERO STEPS TOGGLE ON MOBILE */
  .toggle-hint {
    display: block !important;
  }
  .hero-steps-toggle-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
  }
  .hero-steps-toggle-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
  }
  .hero-steps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0 !important;
    padding-bottom: 14px;
  }
  .hero-steps-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .hero-steps.active .hero-steps-content {
    max-height: 1200px;
    padding-top: 16px;
  }
  .hero-steps.active .hero-steps-toggle-icon svg {
    transform: rotate(180deg);
  }

  .hero {
    padding: 60px 0 35px;
    margin-top: 60px;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-services {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-service-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }
  .hero-service-card svg {
    margin-bottom: 0;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }

  .page-header {
    padding: 70px 0 25px;
  }
  .page-header h1 {
    font-size: 1.5rem;
  }
  .section {
    padding: 35px 0;
  }
  .section:first-of-type {
    margin-top: 60px;
  }
  .section-title {
    font-size: 1.4rem;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .gallery-filters {
    grid-template-columns: 1fr;
    top: 60px;
    position: sticky;
    background: white;
    z-index: 100;
    padding: 12px 0;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .filter-btn {
    padding: 12px 14px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .steps-horizontal {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-horizontal .step-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-quick-nav {
    grid-template-columns: 1fr;
    position: sticky;
    top: 60px;
    background: white;
    z-index: 100;
    padding: 12px 0;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .service-quick-link {
    padding: 12px 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col ul li a {
    justify-content: center;
  }

  .floating-buttons {
    bottom: 15px;
    right: 15px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  .floating-btn::before {
    display: none;
  }
  .back-to-top {
    bottom: 125px;
    right: 15px;
    width: 38px;
    height: 38px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-icon {
    display: none;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .legal-content {
    padding: 22px;
  }
  .price-table th,
  .price-table td {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .hero-title {
    font-size: 1.4rem;
  }
  .steps-horizontal {
    grid-template-columns: 1fr;
  }
  .steps-horizontal .step-card:last-child:nth-child(odd) {
    max-width: 100%;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .logo img {
    height: 40px;
  }
  .service-quick-nav {
    top: 60px;
  }
}

@media print {
  .navbar,
  .top-bar,
  .floating-buttons,
  .back-to-top,
  .cookie-consent,
  .steps-sidebar {
    display: none !important;
  }
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
