/* ============================
   CSS Custom Properties
   ============================ */
:root {
  --cyan: #00AEEF;
  --magenta: #EC008C;
  --yellow: #FFE600;
  --grey: #6D6E71;
  --dark: #2d2d2d;
  --darker: #1a1a1a;
  --light-bg: #f7f8fa;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #e8e8e8;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-max: 1200px;
  --nav-height: 72px;
}

/* ============================
   Reset & Base Styles
   ============================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   Section Shared Styles
   ============================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--magenta);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  gap: 8px;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #d4007e;
  border-color: #d4007e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 0, 140, 0.3);
}

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

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

.btn-full {
  width: 100%;
}

/* ============================
   Navigation
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--magenta);
  background: rgba(236, 0, 140, 0.06);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================
   Mobile Sidebar
   ============================ */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1200;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
}

.sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.sidebar-logo {
  height: 32px;
  width: auto;
}

.sidebar-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--light-bg);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.sidebar-close:hover {
  background: var(--magenta);
  color: var(--white);
}

.sidebar-links {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}

.sidebar-links li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

.sidebar-links li a i {
  width: 20px;
  text-align: center;
  color: var(--grey);
  font-size: 0.95rem;
}

.sidebar-links li a:hover {
  background: rgba(236, 0, 140, 0.06);
  color: var(--magenta);
}

.sidebar-links li a:hover i {
  color: var(--magenta);
}

.sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.sidebar-contact p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-contact p i {
  color: var(--grey);
  width: 16px;
  text-align: center;
}

.sidebar-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.sidebar-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  color: var(--text);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.sidebar-social a:hover {
  background: var(--cyan);
  color: var(--white);
}

/* ============================
   Hero Section
   ============================ */
.hero {
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
  background: linear-gradient(135deg, #f0faff 0%, #fff5fb 40%, #fffdf0 100%);
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(236, 0, 140, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-accent {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.accent-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.accent-dot.cyan { background: var(--cyan); }
.accent-dot.magenta { background: var(--magenta); }
.accent-dot.yellow { background: var(--yellow); }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

.title-line.highlight {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  position: relative;
  z-index: 2;
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, var(--cyan), var(--magenta), var(--yellow));
  border-radius: var(--radius);
  opacity: 0.15;
  z-index: 1;
}

/* ============================
   Color Ribbon
   ============================ */
.color-ribbon {
  display: flex;
  height: 5px;
}

.color-ribbon span {
  flex: 1;
}

.color-ribbon .r-cyan { background: var(--cyan); }
.color-ribbon .r-magenta { background: var(--magenta); }
.color-ribbon .r-yellow { background: var(--yellow); }

/* ============================
   Services Section
   ============================ */
.services {
  padding: 100px 0;
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(30px);
  border-top: 3px solid transparent;
}

.service-card:nth-child(3n+1) { border-top-color: var(--cyan); }
.service-card:nth-child(3n+2) { border-top-color: var(--magenta); }
.service-card:nth-child(3n+3) { border-top-color: var(--yellow); }

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--white);
}

.cyan-bg { background: var(--cyan); }
.magenta-bg { background: var(--magenta); }
.yellow-bg { background: var(--yellow); color: var(--dark) !important; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.services-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.showcase-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.showcase-item:hover {
  transform: scale(1.02);
}

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

/* ============================
   Quote Builder Section
   ============================ */
.quote-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, #f0faff 100%);
}

.quote-builder {
  max-width: 1000px;
  margin: 0 auto;
}

.quote-step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover::before,
.product-card.selected::before {
  opacity: 1;
}

.product-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-card.selected {
  border-color: var(--magenta);
  background: rgba(236, 0, 140, 0.04);
  box-shadow: 0 4px 20px rgba(236, 0, 140, 0.15);
}

.product-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--grey);
  transition: color var(--transition);
}

.product-card:hover .product-card-icon,
.product-card.selected .product-card-icon {
  color: var(--magenta);
}

.product-card-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

.product-card-from {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Config Panel */
.quote-step-2 {
  display: none;
  animation: fadeSlideUp 0.4s ease;
  margin-top: 40px;
}

.quote-step-2.active {
  display: block;
}

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

.back-btn {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 0;
  transition: color var(--transition);
}

.back-btn:hover {
  color: var(--magenta);
}

.config-container {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.config-options {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.config-group {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
}

.config-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.config-options-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-btn {
  padding: 10px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.option-btn:hover {
  border-color: var(--cyan);
}

.option-btn.selected {
  border-color: var(--magenta);
  background: rgba(236, 0, 140, 0.06);
  color: var(--magenta);
  font-weight: 600;
}

/* Price Summary */
.price-summary {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.price-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.price-product-name {
  font-size: 0.9rem;
  color: var(--magenta);
  font-weight: 600;
  margin-bottom: 16px;
}

.price-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.price-detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.price-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.price-line.subtotal {
  color: var(--text-light);
}

.price-line.discount {
  color: var(--cyan);
  font-weight: 500;
}

.price-line.total {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-top: 8px;
  margin-bottom: 0;
}

.price-per-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
  margin-bottom: 20px;
}

.quote-cta {
  margin-bottom: 12px;
}

.price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ============================
   About Section
   ============================ */
/* ============================
   CTA Banner
   ============================ */
.cta-banner {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #3a3a3a 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 0, 140, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

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

.cta-banner-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-banner .btn-primary {
  background: var(--magenta);
  border-color: var(--magenta);
}

.cta-banner .btn-primary:hover {
  background: #d4007e;
  border-color: #d4007e;
}

/* ============================
   About Section
   ============================ */
.about {
  padding: 100px 0;
  background: var(--light-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content .section-tag {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat {
  position: relative;
}

.stat-number::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: var(--cyan);
  margin-top: 4px;
  margin-bottom: 6px;
}

.stat:nth-child(2) .stat-number::after {
  background: var(--magenta);
}

.stat:nth-child(3) .stat-number::after {
  background: var(--yellow);
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-images img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 280px;
  object-fit: cover;
  width: 100%;
}

.about-img-2 {
  margin-top: 40px;
}

/* ============================
   Team Section
   ============================ */
.team {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, #f8f4ff 50%, var(--white) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--magenta);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================
   Contact Section
   ============================ */
.contact {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.contact-map iframe {
  display: block;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  flex: 1;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 4px 0;
}

.hours-row.closed span:last-child {
  color: var(--magenta);
  font-weight: 600;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.contact-detail-item:hover {
  color: var(--magenta);
}

.contact-detail-item i {
  width: 20px;
  text-align: center;
  color: var(--cyan);
  font-size: 1rem;
}

/* ============================
   Footer
   ============================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  height: 32px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul a,
.footer-services ul li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}

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

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact p i {
  color: var(--cyan);
  width: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--cyan);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--cyan);
  font-weight: 600;
  transition: color var(--transition);
}

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

/* ============================
   Scroll Animations
   ============================ */
.showcase-item,
.team-card,
.contact-card,
.about-content,
.about-images {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.showcase-item.visible,
.team-card.visible,
.contact-card.visible,
.about-content.visible,
.about-images.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .config-container {
    grid-template-columns: 1fr;
  }

  .price-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 24px);
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-showcase {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content .section-tag,
  .about-content .section-title {
    text-align: center;
  }

  .about-content p {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .stat {
    text-align: center;
  }

  .stat-number::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 350px;
    margin: 0 auto;
  }

  .cta-banner {
    padding: 50px 0;
  }

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

  .contact-map {
    min-height: 300px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .services,
  .about,
  .team,
  .contact,
  .quote-section {
    padding: 70px 0;
  }

  .config-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

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

  .about-img-2 {
    margin-top: 0;
  }

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

  .config-options-row {
    gap: 8px;
  }

  .option-btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}
