/* ============================================
   QUICK काम — Global Styles (Pencil Shade Theme)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;600;700&family=Caveat:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background-color: #ffffff;
  color: #111111;
  font-family: 'Inter', 'Poppins', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100vw;
  cursor: default;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ----- CURSOR ----- */
body { cursor: none; }
a, button, .btn-primary, .btn-outline, .water-toggle { cursor: none; }

/* ----- WATER TOGGLE BUTTON ----- */
.water-toggle {
  display: inline-block;
  position: relative;
}
.water-toggle input#toggle-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.water-toggle .container {
  position: relative;
  z-index: 1;
  filter: url(#still-water);
  animation: wave 10s infinite ease-in-out;
  transition: 1s;
  display: block;
}
.water-toggle:hover .container {
  filter: url(#water-rotate);
  transition: 0.5s;
  animation: wave 8s infinite ease-in-out;
}
input#toggle-wave:checked ~ .container {
  animation: beeg-wave 3.5s infinite ease-in-out;
  scale: 0.75;
}
.water-button {
  position: relative;
  z-index: 5;
  font-size: 1.5rem;
  padding: 1em 2em;
  border: none;
  border-radius: 50em;
  background: rgba(200,200,200,0.3);
  color: #000;
  outline: 3px solid rgba(150,150,150,0.2);
  text-shadow: 0px 0px 8px #79a5adda;
  font-weight: bold;
  backdrop-filter: blur(0.4rem);
  cursor: pointer;
  font-family: Tahoma, sans-serif;
  transition: 1s;
}
.water-toggle:hover .water-button {
  background: #13b0ff3d;
  color: #000;
  text-shadow: 0px 0px 12px #49e1ffda;
  padding: 2em;
  box-shadow: inset 0px 0px 8px #7ae9ff25, 0px 0px 64px #39d9f96f;
}
input#toggle-wave:checked ~ .container .water-button {
  text-shadow: 0px 0px 48px #7ae9ff, 0px 0px 12px #7ae9ff, 0px 0px 12px #7ae9ff, 0px 0px 64px #39d9f9;
  box-shadow: inset 0px 0px 12px #7ae9ff46, inset 0px 0px 8px #7ae9ff25, 0px 0px 8px #7ae9ff84, 0px 0px 64px #39d9f96f;
  padding: 20% 2em;
  transition: 1s;
}

@keyframes wave {
  0% { padding: 1rem; }
  50% { padding: 10rem; }
  100% { padding: 1rem; }
}

/* Liquid gradient animation for hero buttons */
.gradient-btn {
  position: relative;
  overflow: hidden;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #000000, #d3d3d3);
  background-size: 200% 200%;
  animation: liquidGradient 30s linear infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gradient-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255,126,95,0.6);
}
.gradient-btn::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
  transform: rotate(45deg);
  animation: sheen 4s infinite linear;
}
@keyframes liquidGradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
@keyframes sheen {
  0% {transform: translateX(-100%) rotate(45deg);}
  100% {transform: translateX(200%) rotate(45deg);}
}

@keyframes beeg-wave {
  0% { padding: 1rem; }
  50% { padding: 12rem; }
  100% { padding: 1rem; }
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #111;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s, transform 0.12s ease;
}

.cursor-dot.hovered {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.5);
}
.cursor-ring.hovered {
  width: 56px;
  height: 56px;
  border-color: #111;
  background: rgba(0,0,0,0.06);
}

/* ----- SCROLL PROGRESS BAR ----- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #000;
  z-index: 1000;
  transition: width 0.1s ease;
}

/* ----- FLOATING CALL BUTTON ----- */
.float-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(200,200,200,0.3);
  color: #000;
  width: 55px;
  height: 55px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: 0.25s;
  border: 1px solid #ddd;
}
.float-call:hover {
  transform: scale(1.08);
  background: #222;
}
.float-call::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 60px;
  z-index: -1;
}
.float-call:hover::before {
  opacity: 0.5;
}

/* ----- CONTAINER ----- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ----- HEADER / NAVBAR (sticky) ----- */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffffcc;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eaeaea;
  z-index: 100;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 6px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-top: -41px;
  margin-bottom: -63px;
  position: relative;
  z-index: 101;
}
.logo-img {
  height: 130px;
  width: auto;
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo:hover .logo-img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .logo-img {
    height: 100px;
  }
}
@media (max-width: 480px) {
  .logo-img {
    height: 75px;
  }
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  font-weight: 500;
  color: #222;
  font-size: 0.9rem;
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #111;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color: #000;
}

/* ----- BUTTONS ----- */
.btn-primary {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 14px 36px;
  border: 1.5px solid #111;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: 0.25s;
  cursor: pointer;
}
.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 #aaa;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #111;
  padding: 20px 28px;
  border: 1.5px solid #111;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: 0.25s;
  cursor: pointer;
}
.btn-outline:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

/* Glassmorphism button */
.btn-glass {
  display: inline-block;
  padding: 20px 28px;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: #111;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}
.btn-glass:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ----- SECTION LABELS & TITLES ----- */
.section-label {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: #666;
  margin-bottom: 8px;
  display: inline-block;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 48px;
  position: relative;
}
.section-title:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 70px;
  height: 2px;
  background: repeating-linear-gradient(90deg, #000, #000 6px, transparent 6px, transparent 12px);
}
.text-center .section-title:after {
  left: 50%;
  transform: translateX(-50%);
}

/* ----- HERO SECTION (index) ----- */
.hero-section {
  padding: 120px 0 100px;
  border-bottom: 1px solid #f0f0f0;
  background-image: url('Images/backgroundhome.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  pointer-events: none;
}
.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.hero-content {
  flex: 1.2;
  text-align: center;
}
.hero-badge {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.hero-stats {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}
.stat-item p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.65);
}

.hero-section .btn-primary {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.hero-section .btn-primary:hover {
  background: #f0f0f0;
  color: #000;
  box-shadow: 4px 4px 0 rgba(255,255,255,0.3);
}

.hero-sketch {
  padding: 32px;
  background: #fefefe;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.02);
  text-align: center;
}
.sketch-icon {
  font-size: 4rem;
  color: #222;
  border: 1px dashed #bbb;
  display: inline-block;
  padding: 16px;
}
.sketch-tagline {
  margin-top: 20px;
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
}
.sketch-divider {
  border-top: 1px dashed #ccc;
  margin: 16px auto 12px;
  max-width: 120px;
}
.sketch-label {
  font-size: 0.7rem;
  color: #888;
}

/* ----- WHAT WE DO (index) ----- */
.what-we-do,
.services-preview,
.why-choose,
.roadmap,
.service-mini-card p {
  color: #555;
}

/* ----- PENCIL SKETCH CARD ----- */
.pencil-card {
  position: relative;
  overflow: hidden;
  border: none;
  background: url('pencil_border_1781780958313.png') center/cover no-repeat;
  padding: 1.5rem;
  border-radius: 12px;
}

/* New sctech-stroke class for white background and stroke border */
.sctech-stroke {
  position: relative;
  background: #fff;
  padding: 1.5rem;
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  overflow: hidden;
}

/* Sketch border layers */
.sctech-stroke::before, .sctech-stroke::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid #000;
  pointer-events: none;
}

.sctech-stroke::before {
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
}

.sctech-stroke::after {
  top: 2px;
  left: -2px;
  border-radius: 15px 225px 15px 255px/225px 15px 255px 15px;
  opacity: 0.7;
}

.pencil-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
  pointer-events: none;
}

.pencil-card:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* ----- ABOUT TEASER (index) ----- */
.about-teaser {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}
.about-teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}
.about-teaser-content {
  flex: 1.5;
}
.about-teaser-content h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-teaser-content p {
  font-size: 1.1rem;
  color: #444;
  max-width: 90%;
  margin-bottom: 24px;
}
.about-teaser-stats {
  flex: 1;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.teaser-stat {
  text-align: center;
  padding: 20px 28px;
  border: 1px solid #e0e0e0;
  background: #fff;
  min-width: 120px;
}
.teaser-number {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  display: block;
}
.teaser-stat p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-top: 4px;
}

/* ----- ROADMAP (index) ----- */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.roadmap-step {
  background: #fff;
  border: 1px solid #ececec;
  padding: 24px 20px;
  text-align: center;
  transition: 0.2s;
}
.roadmap-step:hover {
  border-color: #000;
}
.step-num {
  font-family: 'Caveat', cursive;
  font-size: 2.4rem;
  font-weight: 600;
  color: #aaa;
  display: block;
  margin-bottom: 8px;
}
.roadmap-step h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.roadmap-step p {
  color: #555;
  font-size: 0.9rem;
}

/* ----- WHY CHOOSE (index) ----- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}
.why-card {
  background: #fff;
  border: 1px solid #ececec;
  padding: 28px 20px;
  text-align: center;
  transition: 0.2s;
}
.why-card:hover {
  border-color: #000;
}
.why-card i {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: inline-block;
}
.why-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.why-card p {
  color: #555;
}

/* ----- MISSION & VISION GRID ----- */
.services-mini-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ----- CLIENTS (index) ----- */
.client-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.client-badge {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 10px 24px;
  font-size: 0.85rem;
  color: #333;
  transition: 0.2s;
}
.client-badge:hover {
  border-color: #000;
  background: #f8f8f8;
}

/* ----- CONTACT CTA (index) ----- */
.contact-cta {
  padding: 80px 0;
}
.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 48px 56px;
  gap: 32px;
}
.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.cta-content p {
  color: #555;
  margin-bottom: 24px;
}
.cta-sketch {
  font-size: 4rem;
  color: #222;
  border: 1px dashed #bbb;
  padding: 20px 28px;
}

/* ----- SLIDE FROM RIGHT ANIMATION ----- */
.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              transform 0.6s ease;
}
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ----- SLIDE FROM BOTTOM ANIMATION ----- */
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              transform 0.7s ease;
}
.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- TEXT CENTER UTILITY ----- */
.text-center {
  text-align: center;
}

/* ----- FOOTER (Minimal) ----- */
.site-footer {
  background: #111;
  border-top: 1px solid #222;
  padding: 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 32px;
}
.footer-inner .logo {
  display: flex;
  align-items: center;
}
.footer-inner .logo .logo-img {
  height: 80px;
  /* REMOVED: filter: brightness(0) invert(1); - this was making it black & white */
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-inner .logo:hover .logo-img {
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .footer-inner .logo .logo-img {
    height: 52px;
  }
}
@media (max-width: 480px) {
  .footer-inner .logo .logo-img {
    height: 44px;
  }
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.85rem;
  color: #888;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }

.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.2s;
}
.footer-socials a:hover { color: #fff; }

.footer-copy {
  border-top: 1px solid #1e1e1e;
  text-align: center;
  padding: 10px 32px;
}
.footer-copy p {
  font-size: 0.72rem;
  color: #444;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .footer-nav { justify-content: center; }
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid #f0f0f0;
}
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}
.about-main {
  flex: 1.5;
}
.about-main h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-main p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
  max-width: 90%;
}
.about-side {
  flex: 1;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 32px;
}
.about-side h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.timeline-section {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.timeline-card {
  background: #fff;
  border: 1px solid #ececec;
  padding: 28px 24px;
}
.timeline-card .year {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.timeline-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.timeline-card p {
  color: #555;
}

/* ============================================
   SERVICES PAGE SPECIFIC (Detailed Cards)
   ============================================ */
.services-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid #f0f0f0;
}
.services-hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}
.services-hero-content {
  flex: 1.2;
}
.services-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.services-hero-content p {
  font-size: 1.1rem;
  color: #444;
  max-width: 90%;
}
.services-hero-sketch {
  flex: 0.8;
  border: 1px solid #e2e2e2;
  padding: 32px;
  background: #fefefe;
  text-align: center;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.02);
}

.services-full-grid {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.service-detailed-card {
  background: #fff;
  border: 1px solid #ececec;
  padding: 28px 24px;
  transition: all 0.25s ease;
}
.service-detailed-card:hover {
  border-color: #000;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}
.service-detailed-card i {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: inline-block;
}
.service-detailed-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.service-detailed-card ul {
  list-style: none;
  padding: 0;
}
.service-detailed-card ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: #444;
  font-size: 0.9rem;
  border-bottom: 1px solid #f5f5f5;
}
.service-detailed-card ul li:last-child {
  border-bottom: none;
}
.service-detailed-card ul li::before {
  content: "✎";
  position: absolute;
  left: 0;
  color: #aaa;
  font-family: 'Caveat', cursive;
}

/* ============================================
   BOOKING / PRICING SECTION
   ============================================ */
.book-service {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 16px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s ease;
}
.pricing-card:hover {
  border-color: #000;
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.06);
}
.pricing-icon {
  font-size: 2rem;
  color: #222;
  border: 1px dashed #ccc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}
.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 4px;
}
.pricing-desc {
  color: #555;
  font-size: 0.9rem;
  flex: 1;
}
.pricing-price {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #111;
  border-top: 1px dashed #e0e0e0;
  padding-top: 14px;
  margin-top: 4px;
}
.pricing-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #888;
}
.pricing-card .btn-primary,
.pricing-card .btn-outline {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-hero {
  padding: 80px 0 60px;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.contact-info-col {
  flex: 1;
}
.contact-info-col h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-detail {
  margin-bottom: 24px;
}
.contact-detail strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-detail p,
.contact-detail a {
  color: #444;
}
.contact-detail a:hover {
  text-decoration: underline;
}
.contact-form-col {
  flex: 1.4;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 40px;
}
.contact-form-col .kicker {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: #666;
  margin-bottom: 4px;
}
.contact-form-col h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.contact-form-col p {
  color: #555;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group .field {
  flex: 1;
  min-width: 180px;
}
.form-group .field.full {
  flex: 1 1 100%;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: #333;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  background: #fff;
  font-family: 'Inter', sans-serif;
  transition: 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .hero-content h1 { font-size: 3rem; }
  .hero-grid { flex-direction: column; }
  .hero-sketch { width: 100%; }
  .about-teaser-grid { flex-direction: column; }
  .about-teaser-content p { max-width: 100%; }
  .cta-box { flex-direction: column; text-align: center; padding: 32px 24px; }
}

/* ----- CLICK ANIMATE ----- */
.click-animate {
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}
.click-animate:active {
  transform: scale(0.95);
  color: #ff6600;
}

@media (max-width: 768px) {
  .navbar { flex-direction: column; padding: 8px 20px; }
  .logo {
    margin-top: -43px;
    margin-bottom: 20px;
  }
  .nav-links { gap: 16px; justify-content: center; }
  .container { padding: 0 20px; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-desc { max-width: 100%; }
  .hero-stats { gap: 24px; }
  .section-title { font-size: 1.8rem; }
  .services-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
  .services-detailed-grid { grid-template-columns: 1fr; }
  .about-main h1, .services-hero-content h1, .contact-info-col h1 { font-size: 2.2rem; }
  .contact-grid { flex-direction: column; }
  .contact-form-col { padding: 24px; }
  .cta-box { padding: 24px 16px; }
  .roadmap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .stat-item h3 { font-size: 1.4rem; }
  .btn-primary, .btn-outline { padding: 10px 20px; font-size: 0.9rem; }
  .client-badge { font-size: 0.75rem; padding: 6px 14px; }
}

/* Hero buttons group */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
.hero-btns .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.hero-btns .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ============================================
   INDEX — BOOK A SERVICE BANNER
   ============================================ */
.index-book-banner {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
  background: #111;
  color: #fff;
}
.index-book-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.index-book-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.index-book-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}
.index-book-text .section-label {
  color: rgba(255,255,255,0.45);
}
.index-book-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.index-book-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  padding: 20px 20px;
  transition: all 0.25s ease;
  color: #fff;
}
.index-book-highlight:hover {
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.ibh-icon {
  font-size: 1.5rem;
  color: #ccc;
  border: 1px dashed #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.index-book-highlight h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: #fff;
}
.ibh-price {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.ibh-btn {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.index-book-highlight:hover .ibh-btn {
  color: #fff;
}
.index-book-banner .btn-primary {
  align-self: flex-start;
  background: #fff;
  color: #111;
  border-color: #fff;
}
.index-book-banner .btn-primary:hover {
  background: #f0f0f0;
  box-shadow: 4px 4px 0 rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .index-book-cards { grid-template-columns: 1fr; }
  .index-book-banner .btn-primary { align-self: stretch; text-align: center; }
}

/* ============================================
   BOOK ONLINE PAGE
   ============================================ */
.book-hero {
  padding: 80px 0 48px;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}
.book-hero-inner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.book-hero-inner p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
}

.book-listing {
  padding: 64px 0 80px;
}

.book-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.book-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 28px 32px;
  transition: all 0.25s ease;
}
.book-card:hover {
  border-color: #000;
  transform: translateX(4px);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.05);
}
.book-card-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 260px;
}
.book-card-icon {
  font-size: 1.8rem;
  color: #222;
  border: 1px dashed #ccc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.book-card-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.book-card-info h3 a {
  color: inherit;
  border-bottom: 1px dashed #aaa;
}
.book-card-info h3 a:hover {
  border-bottom-color: #000;
}
.book-card-info p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.book-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.book-tags span {
  background: #f3f3f3;
  border: 1px solid #e0e0e0;
  font-size: 0.72rem;
  padding: 3px 10px;
  color: #555;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.book-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
}
.book-price {
  font-size: 1.7rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #111;
  text-align: right;
}
.book-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: #888;
}
.book-card .btn-primary,
.book-card .btn-outline {
  white-space: nowrap;
  padding: 11px 24px;
  font-size: 0.88rem;
}
.book-disclaimer {
  text-align: center;
  margin-top: 40px;
  color: #999;
  font-size: 0.82rem;
}
.book-disclaimer a {
  color: #111;
  text-decoration: underline;
}

/* Book CTA Banner (services.html) */
.book-cta-banner {
  padding: 48px 0;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}
.book-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border: 1px dashed #ccc;
  padding: 36px 40px;
}
.book-cta-inner h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.book-cta-inner p {
  color: #555;
}

@media (max-width: 768px) {
  .book-card { flex-direction: column; }
  .book-card-right { align-items: flex-start; }
  .book-hero-inner h1 { font-size: 2.2rem; }
  .book-cta-inner { flex-direction: column; text-align: center; }
}

/* ============================================
   BRAND BUILDING / SERVICE PAGE
   ============================================ */
.sp-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}
.sp-hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}
.sp-hero-content {
  flex: 1.4;
}
.sp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 16px;
  border-bottom: 1px dashed transparent;
  transition: 0.2s;
}
.sp-back:hover {
  color: #111;
  border-bottom-color: #111;
}
.sp-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.sp-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 20px;
}
.sp-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.sp-price-badge {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #111;
}
.sp-price-badge span {
  font-size: 0.8rem;
  font-weight: 400;
  color: #888;
}
.sp-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border: 1px solid #ddd;
  color: #888;
}
.sp-status.ended i {
  font-size: 0.5rem;
  color: #bbb;
}
.sp-desc {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 28px;
  max-width: 92%;
  line-height: 1.7;
}
.sp-hero-sketch {
  flex: 0.7;
  border: 1px solid #e2e2e2;
  padding: 32px;
  background: #fff;
  text-align: center;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.02);
}

/* Description Section */
.sp-description {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
}
.sp-desc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}
.sp-desc-main {
  flex: 1.5;
}
.sp-desc-main h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.sp-desc-main > p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 36px;
  line-height: 1.7;
}
.sp-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border: 1px solid #ececec;
  background: #fff;
  transition: 0.25s;
}
.sp-feature-item:hover {
  border-color: #000;
  transform: translateX(4px);
}
.sp-feature-icon {
  font-size: 1.4rem;
  color: #222;
  border: 1px dashed #ccc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.sp-feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.sp-feature-item p {
  color: #555;
  font-size: 0.9rem;
}

/* Aside */
.sp-desc-aside {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sp-aside-box {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 28px;
}
.sp-aside-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #ddd;
}
.sp-detail-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #444;
}
.sp-detail-list li i {
  color: #888;
  margin-top: 2px;
  width: 14px;
  flex-shrink: 0;
}
.sp-detail-list li a {
  color: #111;
  border-bottom: 1px dashed #aaa;
}
.sp-detail-list li a:hover {
  border-bottom-color: #000;
}
.sp-why-box p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.sp-quote {
  border-left: 3px solid #ddd;
  padding-left: 14px;
  color: #777;
}

/* Process Steps */
.sp-process {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}
.sp-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.sp-step {
  background: #fff;
  border: 1px solid #ececec;
  padding: 28px 20px;
  transition: 0.2s;
}
.sp-step:hover {
  border-color: #000;
}
.sp-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.sp-step p {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .sp-hero-grid { flex-direction: column; }
  .sp-hero-content h1 { font-size: 2.2rem; }
  .sp-desc { max-width: 100%; }
  .sp-desc-grid { flex-direction: column; }
  .sp-steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .sp-steps-grid { grid-template-columns: 1fr; }
}

/* ============================================
   BRAND BUILDING PAGE
   ============================================ */

/* Hero */
.bb-hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid #f0f0f0;
  background: #111;
  color: #fff;
}
.bb-hero-inner {
  max-width: 720px;
}
.bb-hero-inner .section-label {
  color: rgba(255,255,255,0.45);
}
.bb-hero-inner h1 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.bb-hero-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}
.bb-hero .sp-back {
  color: rgba(255,255,255,0.45);
}
.bb-hero .sp-back:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.bb-hero .btn-primary {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.bb-hero .btn-primary:hover {
  background: #f0f0f0;
  box-shadow: 4px 4px 0 rgba(255,255,255,0.2);
}

/* Strategy Section */
.bb-strategy {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
}
.bb-strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.bb-strategy-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 32px 28px;
  transition: all 0.25s ease;
}
.bb-strategy-card:hover {
  border-color: #000;
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.05);
}
.bb-card-icon {
  font-size: 1.8rem;
  color: #222;
  border: 1px dashed #ccc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}
.bb-strategy-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.bb-strategy-card p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Process Section */
.bb-process {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}
.bb-process-sub {
  color: #666;
  margin-top: -32px;
  margin-bottom: 48px;
  font-size: 1rem;
}
.bb-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.bb-process-step {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 32px 24px;
  position: relative;
  transition: 0.25s;
}
.bb-process-step:hover {
  border-color: #000;
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.04);
}
.bb-process-step .step-num {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ddd;
  margin-bottom: 10px;
  line-height: 1;
}
.bb-process-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.bb-process-step p {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* CTA Section */
.bb-cta {
  padding: 80px 0;
  background: #fff;
}
.bb-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  border: 1px dashed #ccc;
  padding: 48px 52px;
  background: #fafafa;
}
.bb-cta-text .section-label {
  color: #888;
}
.bb-cta-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  max-width: 560px;
}
.bb-cta-text p {
  color: #666;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .bb-hero-inner h1 { font-size: 2.2rem; }
  .bb-strategy-grid { grid-template-columns: 1fr; }
  .bb-process-grid { grid-template-columns: 1fr 1fr; }
  .bb-cta-inner { flex-direction: column; padding: 32px 24px; }
}
@media (max-width: 480px) {
  .bb-process-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PORTFOLIO SECTION (index)
   ============================================ */
.portfolio-section {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
}
.portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.portfolio-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #ececec;
  color: inherit;
  transition: background 0.2s, padding 0.2s;
}
.portfolio-card:first-child {
  border-top: 1px solid #ececec;
}
.portfolio-card:hover {
  background: #fafafa;
  padding-left: 16px;
  padding-right: 16px;
}
.portfolio-num {
  font-family: 'Caveat', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ddd;
  min-width: 52px;
  line-height: 1;
  margin-top: 4px;
}
.portfolio-card:hover .portfolio-num {
  color: #bbb;
}
.portfolio-info {
  flex: 1;
}
.portfolio-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.portfolio-card:hover .portfolio-info h3 {
  color: #000;
}
.portfolio-info p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}
.portfolio-arrow {
  font-size: 1rem;
  color: #ccc;
  margin-top: 4px;
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.portfolio-card:hover .portfolio-arrow {
  color: #111;
  transform: translateX(4px);
}

/* ============================================
   FOOTER BOTTOM (full-width contact bar)
   ============================================ */
.footer-bottom {
  border-top: 1px solid #1e1e1e;
  text-align: center;
  padding: 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: #555;
}
.footer-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1rem !important;
  color: #777 !important;
}

/* ============================================
   SERVICE CARDS — BRUSH STROKE STYLE
   ============================================ */
.svc-accordion {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* ============================================
   SERVICE CARDS — HANDWRITTEN THEME - FIXED
   ============================================ */

.svc-accordion {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.svc-grid-4-3 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.svc-row-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.svc-row-group.centered {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.svc-row-group.centered .svc-row {
  flex: 0 0 calc(25% - 24px);
  max-width: calc(25% - 24px);
  width: 100%;
}

.svc-row {
  position: relative;
  min-height: 320px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Apply brush stroke ONLY to the background image container */
.svc-row-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: url(#brush-stroke);
  z-index: 0;
  border-radius: 16px;
}

.svc-row:hover {
  transform: translateY(-4px);
}

.svc-row::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255,255,255,0.12);
  z-index: 1;
  pointer-events: none;
  border-radius: 16px;
}

.svc-row-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.80) 100%
  );
  z-index: 1;
  transition: background 0.3s ease;
  border-radius: 16px;
}

.svc-row:hover .svc-row-overlay {
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.75) 50%,
    rgba(0,0,0,0.88) 100%
  );
}

.svc-row-header {
  position: relative;
  z-index: 2;
  padding: 28px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svc-row-num {
  font-family: 'Caveat', cursive;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.20);
  line-height: 1;
  transform: rotate(-3deg);
  letter-spacing: 1px;
}

.svc-row-icon {
  font-size: 1.4rem;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.svc-row:hover .svc-row-icon {
  color: #fff;
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.30);
  transform: scale(1.05) rotate(-5deg);
}

/* ===== HANDWRITTEN TEXT STYLES ===== */
.svc-row-header h3 {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  letter-spacing: 0.5px;
  transform: rotate(-1deg);
  position: relative;
  display: inline-block;
  width: fit-content;
  line-height: 1.2;
}

/* Underline effect for handwritten heading */
.svc-row-header h3::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  transform: rotate(-1deg);
  transition: width 0.3s ease;
}

.svc-row:hover .svc-row-header h3::after {
  width: 110%;
  background: rgba(255,255,255,0.40);
}

.svc-row-desc {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  font-weight: 400;
  transform: rotate(-0.5deg);
  letter-spacing: 0.3px;
  max-width: 95%;
  margin-bottom: 4px;
}

.svc-row-toggle {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.svc-switch-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.svc-switch {
  width: 56px;
  height: 28px;
  background-color: rgba(255,255,255,0.12);
  border-radius: 28px;
  position: relative;
  border: 2px solid rgba(255,255,255,0.20);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
}

.svc-switch-dots {
  position: absolute;
  right: 10px;
  top: 12px;
  width: 10px;
  height: 3px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.30) 1.5px, transparent 1.5px);
  background-size: 4px 4px;
  transition: opacity 0.4s;
}

.svc-switch-knob {
  width: 20px;
  height: 20px;
  background: linear-gradient(145deg, #555, #333);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s, background 0.4s;
}

.svc-row.open .svc-switch {
  border-color: rgba(255,255,255,0.50);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3), 0 0 16px rgba(255,255,255,0.08);
}

.svc-row.open .svc-switch-dots {
  opacity: 0.2;
}

.svc-row.open .svc-switch-knob {
  transform: translateX(28px);
  color: #fff;
  background: linear-gradient(145deg, #666, #444);
}

.svc-row-body {
  position: relative;
  z-index: 2;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 28px;
  background: rgba(0,0,0,0.30);
  border-radius: 0 0 16px 16px;
  margin: 0 -2px -2px -2px;
}

.svc-row.open .svc-row-body {
  max-height: 400px;
  padding: 16px 28px 20px;
}

/* Handwritten tags */
.svc-tags-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.svc-tags-list li {
  font-family: 'Caveat', cursive;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 0.95rem;
  padding: 3px 12px;
  font-weight: 500;
  border-radius: 20px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transform: rotate(-0.5deg);
  letter-spacing: 0.3px;
}

/* Handwritten Learn More button - ALWAYS VISIBLE */
.svc-row .svc-learn-more {
  font-family: 'Caveat', cursive;
  color: #ffffff;
  border-bottom: 2px dashed rgba(255,255,255,0.35);
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.svc-row .svc-learn-more:hover {
  border-bottom-color: #ffffff;
  color: #ffffff;
  transform: translateX(4px);
}

.svc-row .svc-learn-more i {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.svc-row .svc-learn-more:hover i {
  transform: translateX(6px) rotate(-5deg);
}

/* Price hint - handwritten style */
.svc-price-hint {
  font-family: 'Caveat', cursive;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.50);
  font-weight: 400;
  margin-top: 2px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  letter-spacing: 0.3px;
}

/* Handwritten quote style for the blockquote */
.services-quote {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: #444;
  text-align: center;
  border-left: none;
  padding: 32px 48px;
  border-top: 1px dashed #ddd;
  border-bottom: 1px dashed #ddd;
  margin-bottom: 0;
  line-height: 1.5;
  transform: rotate(-0.5deg);
  letter-spacing: 0.5px;
}

/* ===== FIX: Ensure Learn More is always visible ===== */
.svc-row .svc-learn-more-wrapper {
  margin-top: 8px;
  display: block;
}

/* ===== FIX: Card height adjusts when open ===== */
.svc-row.open {
  min-height: 380px;
}

.svc-row.open .svc-row-header {
  padding-bottom: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
  .svc-row-group { grid-template-columns: repeat(2, 1fr); }
  .svc-row-group.centered .svc-row { flex: 0 0 calc(50% - 16px); max-width: calc(50% - 16px); }
  .svc-row { min-height: 280px; }
  .svc-row.open { min-height: 340px; }
  .svc-row-header h3 { font-size: 1.6rem; }
  .svc-row-desc { font-size: 1rem; }
}

@media (max-width: 768px) {
  .svc-accordion { grid-template-columns: 1fr; }
  .svc-row { min-height: 260px; }
  .svc-row.open { min-height: 320px; }
  .svc-row-group { grid-template-columns: 1fr; }
  .svc-row-group.centered .svc-row { flex: 0 0 100%; max-width: 100%; }
  .svc-row-header h3 { font-size: 1.4rem; }
  .svc-row-desc { font-size: 0.95rem; }
  .svc-row-num { font-size: 2.5rem; }
  .svc-row-icon { width: 40px; height: 40px; font-size: 1.2rem; }
  .services-quote { font-size: 1.5rem; padding: 24px 20px; }
  .svc-tags-list li { font-size: 0.85rem; }
  .svc-row-body { padding: 0 20px; }
  .svc-row.open .svc-row-body { padding: 12px 20px 16px; }
  .svc-switch { width: 48px; height: 24px; }
  .svc-switch-knob { width: 18px; height: 18px; transform: translateX(0px); }
  .svc-row.open .svc-switch-knob { transform: translateX(24px); }
  .svc-row-toggle { padding: 16px 18px; }
}

@media (max-width: 480px) {
  .svc-row-header h3 { font-size: 1.2rem; }
  .svc-row-desc { font-size: 0.85rem; }
  .svc-row-header { padding: 18px 16px 0; }
  .svc-row.open .svc-row-body { padding: 10px 16px 14px; }
  .svc-row-body { padding: 0 16px; }
}

/* ============================================
   ABOUT PAGE — section sub text
   ============================================ */
.section-sub {
  color: #555;
  font-size: 1rem;
  margin-top: -32px;
  margin-bottom: 40px;
}

/* ============================================
   CONTACT PAGE — social icons row
   ============================================ */
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.contact-socials a {
  font-size: 1.2rem;
  color: #333;
  transition: color 0.2s, transform 0.2s;
}
.contact-socials a:hover {
  color: #000;
  transform: translateY(-2px);
}

/* Hero outline button (white on dark bg) */
.hero-outline-btn {
  border-color: rgba(255,255,255,0.6) !important;
  color: #fff !important;
  background: transparent !important;
}
.hero-outline-btn:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: #fff !important;
}

@media (max-width: 768px) {
  .portfolio-card { flex-direction: column; gap: 8px; }
  .portfolio-arrow { display: none; }
  .services-quote { padding: 24px 20px; font-size: 1.3rem; }
  .footer-bottom { padding: 16px 20px; }
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-section {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}
.founder-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 36px;
  transition: 0.25s;
}
.founder-card:hover {
  border-color: #000;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.04);
}
.founder-avatar {
  font-size: 2.4rem;
  color: #444;
  border: 1px dashed #ccc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.founder-info h3 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.founder-role {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.founder-info p {
  color: #555;
  font-size: 1.15rem;
  line-height: 1.7;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.team-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 28px 20px;
  text-align: center;
  transition: 0.25s;
}
.team-card:hover {
  border-color: #000;
  transform: translateY(-4px);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.05);
}
.team-avatar {
  font-size: 1.8rem;
  color: #bbb;
  border: 1px dashed #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}
.team-card:first-child .team-avatar {
  color: #444;
  border-color: #aaa;
}
.team-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card span {
  font-size: 0.78rem;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.team-closing {
  text-align: center;
  margin-top: 40px;
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .founder-card { flex-direction: column; gap: 20px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* Service detailed card dark brushstroke background */
.service-detailed-card {
  background: #111;
  color: #eee;
  position: relative;
  overflow: hidden;
}
.service-detailed-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('Images/brushstroke.png');
  background-size: cover;
  opacity: 0.2;
  pointer-events: none;
}
.service-detailed-card h3,
.service-detailed-card p,
.service-detailed-card li {
  color: #eee;
}

/* Core Team profile grid */
.team-water {
  padding: 60px 40px;
  background-color: #fafafa;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}
.team-water::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('Images/brushstroke.png');
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0 0;
}
.team-grid .team-member {
  background: #fff;
  color: #111;
  padding: 40px 20px 30px;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  border: 2px solid #111;
  border-top: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.melt-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
.team-grid .team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.team-grid .team-member .team-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f4f4f4;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #ccc;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}
.team-grid .team-member .team-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-grid .team-member h4 {
  margin: 8px 0 4px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
}
.team-grid .team-member span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  display: block;
}

/* Neumorphic Buttons */
.nm-container {
  text-align: center;
  display: flex;
  justify-content: center;
  transform: scale(0.85);
  gap: 20px;
}
.toggle {
  margin: 4px;
  display: inline-block;
  box-shadow:
    inset 0 0 35px 5px rgba(0, 0, 0, 0.25),
    inset 0 2px 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -2px 1px 0 rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  background: #ccd0d4;
  position: relative;
  height: 140px;
  width: 140px;
  cursor: pointer;
}
.toggle:before {
  box-shadow: 0 0 17.5px 8.75px #fff;
  border-radius: 118.3px;
  background: #fff;
  position: absolute;
  margin-left: -50.4px;
  margin-top: -50.4px;
  opacity: 0.2;
  content: "";
  height: 100.8px;
  width: 100.8px;
  left: 50%;
  top: 50%;
}
.toggle .button {
  -webkit-filter: blur(1px);
  -moz-filter: blur(1px);
  filter: blur(1px);
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow:
    0 15px 25px -4px rgba(0, 0, 0, 0.5),
    inset 0 -3px 4px -1px rgba(0, 0, 0, 0.2),
    0 -10px 15px -1px rgba(255, 255, 255, 0.6),
    inset 0 3px 4px -1px rgba(255, 255, 255, 0.2),
    inset 0 0 5px 1px rgba(255, 255, 255, 0.8),
    inset 0 20px 30px 0 rgba(255, 255, 255, 0.2);
  border-radius: 96.32px;
  position: absolute;
  background: #ccd0d4;
  margin-left: -48.16px;
  margin-top: -48.16px;
  display: block;
  height: 96.32px;
  width: 96.32px;
  left: 50%;
  top: 50%;
}
.toggle .label {
  transition: color 300ms ease-out;
  text-shadow:
    1px 1px 3px #ccd0d4,
    0 0 0 rgba(0, 0, 0, 0.8),
    1px 1px 4px #fff;
  line-height: 139px;
  text-align: center;
  position: absolute;
  font-weight: 700;
  display: block;
  opacity: 0.9;
  height: 100%;
  width: 100%;
  color: rgba(0, 0, 0, 0.4);
}
.toggle input {
  opacity: 0;
  position: absolute;
  cursor: pointer;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.toggle input:active ~ .button {
  box-shadow:
    0 15px 25px -4px rgba(0, 0, 0, 0.4),
    inset 0 -8px 30px 1px rgba(255, 255, 255, 0.9),
    0 -10px 15px -1px rgba(255, 255, 255, 0.6),
    inset 0 8px 25px 0 rgba(0, 0, 0, 0.4),
    inset 0 0 10px 1px rgba(255, 255, 255, 0.6);
}
.toggle input:active ~ .label {
  color: rgba(0, 0, 0, 0.45);
}
.toggle input:checked ~ .button {
  box-shadow:
    0 15px 25px -4px rgba(0, 0, 0, 0.4),
    inset 0 -8px 25px -1px rgba(255, 255, 255, 0.9),
    0 -10px 15px -1px rgba(255, 255, 255, 0.6),
    inset 0 8px 20px 0 rgba(0, 0, 0, 0.2),
    inset 0 0 5px 1px rgba(255, 255, 255, 0.6);
}
.toggle input:checked ~ .label {
  color: rgba(0, 0, 0, 0.4);
}

/* Animated Gradient Buttons */
.btn-wrapper {
  --rad: 32px;
  --color-wrapper-border: #333;
  --color-btn-bg: #111;
  --color-btn-text: #fff;
  --color-btn-text-shadow: #000;
  --color-btn-inset-shadow: #444;
  --color-layer-a: #222;
  --color-layer-b: #ddd;
  --color-overlay-text: #fff;
  --color-overlay-glow: #000;
  --color-overlay-shadow: rgba(0,0,0,0.4);
  --color-overlay-highlight: rgba(255,255,255,0.2);

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  border: 1px solid var(--color-wrapper-border);
  border-radius: var(--rad);

  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-wrapper:hover {
  transform: translateY(-3px);
}

.gradient-btn {
  position: relative;
  z-index: -1;

  padding: 14px 32px;
  border: none;
  border-radius: var(--rad);

  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0.05rem;

  color: var(--color-btn-text);
  background-color: var(--color-btn-bg);
  background-size: 200% 200%;
  box-shadow: inset 0 0 10px 4px var(--color-btn-inset-shadow);
  text-shadow: 0 1px 3px var(--color-btn-text-shadow);

  mix-blend-mode: color-dodge;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.gradient-btn::after {
  content: "";
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--rad);
  background-size: 200% 200%;
  mix-blend-mode: difference;
  z-index: 1;
}

.gradient-layer {
  position: absolute;
  pointer-events: none;
  left: -160px;
  width: 500%;
  aspect-ratio: 1;
  background: radial-gradient(
    ellipse at 65% 180%,
    var(--color-layer-a),
    var(--color-layer-b),
    var(--color-layer-a),
    var(--color-layer-b),
    var(--color-layer-a),
    var(--color-layer-b),
    var(--color-layer-a),
    var(--color-layer-b),
    var(--color-layer-a),
    var(--color-layer-b),
    var(--color-layer-a)
  );
  mix-blend-mode: difference;
  animation: rotate 8s linear infinite;
}

.gradient-layer:last-child {
  mix-blend-mode: color-dodge;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.text-overlay {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  padding: 14px 32px;
  border-radius: var(--rad);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0.05rem;
  color: var(--color-overlay-text);
  text-shadow: 0 0 4px var(--color-overlay-glow);
  box-shadow:
    inset 0 -4px 4px 0 var(--color-overlay-shadow),
    inset 0 4px 4px 0 var(--color-overlay-highlight);
  mix-blend-mode: normal;
  transition: transform 0.3s ease;
}

.btn-wrapper:hover .text-overlay {
  transform: scale(1.05);
}
.btn-wrapper:hover .gradient-btn {
  color: transparent;
  text-shadow: none;
}
.btn-wrapper:active .text-overlay {
  transform: scale(0.95);
}

.light {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  border-radius: 50px;
  width: 80%;
  height: 1.9rem;
  aspect-ratio: 1;
  background-color: rgba(255,255,255,0.1);
  filter: blur(5px);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* 3D Founder Card */
.parent {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 20px;
  perspective: 1200px;
}

.content-box:hover .founder-image-placeholder {
  transform: translate3d(0px, 0px, 70px) scale(1.05) !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  border-color: #fff !important;
  color: #fff !important;
  background: #c9c8c8 !important;
}

.card {
  padding-top: 50px;
  border: 3px solid #000;
  transform-style: preserve-3d;
  background: linear-gradient(135deg,#0000 18.75%,#f3f3f3 0 31.25%,#0000 0),
      repeating-linear-gradient(45deg,#f3f3f3 -6.25% 6.25%,#ffffff 0 18.75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 0;
  background-color: #fff;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 30px 30px -10px;
  transition: all 0.5s ease-in-out;
}

.card:hover {
  background-position: -100px 100px, -100px 100px;
  transform: rotate3d(0.5, 1, 0, 15deg);
}

.content-box {
  background: rgba(255, 255, 255, 0.95);
  border-top: 2px solid #000;
  transition: all 0.5s ease-in-out;
  padding: 60px 35px 35px 35px;
  transform-style: preserve-3d;
}

.content-box .card-title {
  display: inline-block;
  color: #000;
  font-size: 40px;
  font-weight: 900;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 50px);
}

.content-box .card-content {
  margin-top: 15px;
  font-size: 19px;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 30px);
}

.content-box .card-content strong {
  color: #000;
  font-weight: 800;
}

.content-box .see-more {
  cursor: pointer;
  margin-top: 1.5rem;
  display: inline-block;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  padding: 0.6rem 1rem;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 20px);
  border: 1px solid #000;
}

.content-box .see-more:hover {
  transform: translate3d(0px, 0px, 60px);
  background: #fff;
  color: #000;
}

.date-box {
  position: absolute;
  top: 30px;
  right: 30px;
  height: 85px;
  width: 85px;
  background: white;
  border: 2px solid #000;
  padding: 10px;
  transform: translate3d(0px, 0px, 80px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 17px 10px -10px;
}

.date-box span {
  display: block;
  text-align: center;
}

.date-box .month {
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.date-box .date {
  font-size: 30px;
  font-weight: 900;
  color: #000;
}

/* Uiverse Mission Card */
.mission-container {
  font-family: "Trebuchet MS", sans-serif;
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1.579;
  border-radius: 1em;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in;
  font-size: 26px;
  margin: 0 auto;
}
.mission-container:hover {
  transform: rotateZ(1deg) rotateY(10deg) scale(1.1);
  box-shadow: 0 1.5em 2em #111;
}

.mission-container .m-border {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1em;
  background: linear-gradient(
    115deg,
    rgba(0, 0, 0, 0.33) 12%,
    rgba(255, 255, 255, 0.33) 27%,
    rgba(255, 255, 255, 0.33) 31%,
    rgba(0, 0, 0, 0.33) 52%
  );
}

.mission-container .m-border:after {
  position: absolute;
  content: " ";
  height: 50em;
  aspect-ratio: 1.58;
  border-radius: 1em;
  background: linear-gradient(
    45deg,
    transparent 35%,
    rgba(255, 255, 255, 0.6) 48%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.6) 52%,
    transparent 65%
  );
  z-index: 1;
  opacity: 0.45;
  pointer-events: none;
  transform: translate(-100%, -100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-container .m-border:hover:after {
  transform: translate(0, 0);
}

.mission-container .m-card {
  height: 12.5em;
  aspect-ratio: 1.586;
  border-radius: 1em;
  background-color: #888;
  opacity: 1;
  background-image: linear-gradient(to right, #666, #666 2px, #888 2px, #888);
  background-size: 4px 100%;
}

.mission-container .m-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.85em;
  border: 1px solid #bbb;
  background:
    radial-gradient(
        circle at 100% 100%,
        #ffffff 0,
        #ffffff 8px,
        transparent 8px
      )
      0% 0%/13px 13px no-repeat,
    radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 8px, transparent 8px)
      100% 0%/13px 13px no-repeat,
    radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 8px, transparent 8px)
      0% 100%/13px 13px no-repeat,
    radial-gradient(circle at 0 0, #ffffff 0, #ffffff 8px, transparent 8px) 100%
      100%/13px 13px no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 10px)
      calc(100% - 26px) no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 26px)
      calc(100% - 10px) no-repeat,
    linear-gradient(
      135deg,
      rgba(3, 3, 3, 0.5) 0%,
      transparent 22%,
      transparent 47%,
      transparent 73%,
      rgba(0, 0, 0, 0.5) 100%
    );
  box-sizing: border-box;
}

.mission-container .m-content {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 0.6em;
  border: 1px solid #aaa;
  box-shadow: -1px -1px 0 #ddd;
  transform: translate(-50%, -50%);
  height: 12em;
  aspect-ratio: 1.604;
  background-image: linear-gradient(to right, #666, #444 2px, #999 2px, #999);
  background-size: 4px 100%;
}

.mission-container .m-rev {
  top: 0.5em;
  left: 0.75em;
  color: #ffffff9f;
  font-size: 1.25em;
}

.mission-container .m-master {
  position: absolute;
  bottom: 1.25em;
  right: 0.5em;
  background: linear-gradient(
    90deg,
    rgba(75, 75, 75, 0.25) 0%,
    rgba(121, 121, 121, 1) 100%
  );
  color: #fff;
  height: 2.5em;
  width: 2.5em;
  border: 1px solid #bbb;
  border-radius: 50%;
}

.mission-container .m-master.one {
  right: 2em;
}

.mission-container .m-master-text {
  bottom: 0.25em;
  right: 0.8em;
  font-size: 0.75em;
}

.mission-container .m-ultra-text {
  top: -4px;
  right: 1.75em;
  font-size: 0.5em;
  color: rgba(255, 255, 255, 0.66);
}

.mission-container .m-ultra-text,
.mission-container .m-master-text,
.mission-container .m-rev {
  position: absolute;
  text-shadow: -1px -1px #333;
  color: #fff;
  opacity: 0.75;
}

.mission-container .m-chip {
  position: absolute;
  top: 30%;
  left: 6.5%;
  transform: scale(1.6);
}

/* Mission internal text styling */
.mission-inner-text {
  position: absolute;
  top: 50%;
  left: 63%;
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 10;
  color: #fff;
  text-shadow: -1px -1px 2px rgba(0,0,0,0.8);
  font-family: 'Inter', sans-serif;
  text-align: center;
}
.mission-inner-text .m-quote {
  font-family: 'Caveat', cursive;
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #fff;
}
.mission-inner-text .m-desc {
  font-size: 0.55em;
  line-height: 1.4;
  margin-bottom: 1em;
}
.mission-inner-text .m-details p {
  font-size: 0.5em;
  margin-bottom: 0.2em;
}
.mission-inner-text a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed #fff;
}

/* ============================================
   INDIVIDUAL NOTEBOOK PAGES — ROW LAYOUT
   ============================================ */

/* Grid: 4 columns in a single row - WIDER */
.why-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
  max-width: 100%;
}

/* Each notebook page - WIDER with more space */
.notebook-page {
  position: relative;
  background: #ffffff;
  border: 1px solid #111;
  border-radius: 16px 8px 8px 16px;
  padding: 28px 24px 28px 52px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: visible;
}

.notebook-page:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.06);
}

/* Left Spiral Binding */
.notebook-page .spiral-binding {
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 28px;
  background: #d5d5d5;
  border-radius: 30px 0 0 30px;
  border-right: 2px solid #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 5px 0;
  z-index: 2;
  box-shadow: inset -2px 0 4px rgba(0,0,0,0.05);
}

.notebook-page .spiral-binding .hole {
  width: 12px;
  height: 12px;
  background: #ffffff;
  border: 2px solid #111;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px #eaeaea;
}

/* Wire loop */
.notebook-page .spiral-binding .hole::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 11px;
  border: 2px solid #666;
  border-top: none;
  border-radius: 0 0 10px 10px;
  background: transparent;
  box-shadow: 0 2px 0 #111;
}

/* Page Content - FIXED OVERFLOW */
.notebook-page .page-content {
  position: relative;
  z-index: 1;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  text-align: left;
  width: 100%;
  overflow: visible;
  word-wrap: break-word;
}

/* Override sctech-stroke for inner content */
.notebook-page .page-content.sctech-stroke::before,
.notebook-page .page-content.sctech-stroke::after {
  display: none !important;
}

/* Icon styling */
.notebook-page .page-content i {
  color: #000;
  font-size: 1.8rem;
  border: 2px dashed #000;
  border-radius: 50%;
  padding: 14px;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: #fafafa;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.notebook-page:hover .page-content i {
  transform: scale(0.95) rotate(-5deg);
}

/* Heading with pencil underline */
.notebook-page .page-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 8px;
  line-height: 1.3;
  word-wrap: break-word;
}

.notebook-page .page-content h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #000 0px,
    #000 4px,
    transparent 4px,
    transparent 8px
  );
  transition: width 0.3s ease;
}

.notebook-page:hover .page-content h4::after {
  width: 55px;
}

/* Description - FIXED TEXT WRAPPING */
.notebook-page .page-content p {
  color: #333;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 4px;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* Make the section container wider */
.why-choose .container {
  max-width: 1400px;
  padding-left: 40px;
  padding-right: 40px;
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
  .why-grid-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .notebook-page {
    min-height: 250px;
    padding: 24px 20px 24px 48px;
  }
  .notebook-page .page-content h4 {
    font-size: 1rem;
  }
  .notebook-page .page-content p {
    font-size: 0.82rem;
  }
  .notebook-page .page-content i {
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
    padding: 12px;
  }
  .why-choose .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .why-grid-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .notebook-page {
    padding: 20px 16px 20px 42px;
    min-height: auto;
  }
  .notebook-page .spiral-binding {
    width: 22px;
    top: 10px;
    bottom: 10px;
  }
  .notebook-page .spiral-binding .hole {
    width: 10px;
    height: 10px;
  }
  .notebook-page .spiral-binding .hole::after {
    width: 6px;
    height: 9px;
    top: -2px;
  }
  .notebook-page .page-content i {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    padding: 10px;
  }
  .notebook-page .page-content h4 {
    font-size: 0.9rem;
  }
  .notebook-page .page-content p {
    font-size: 0.78rem;
    line-height: 1.5;
  }
  .why-choose .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 480px) {
  .why-grid-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .notebook-page {
    padding: 18px 14px 18px 38px;
  }
  .notebook-page .spiral-binding {
    width: 20px;
  }
  .notebook-page .spiral-binding .hole {
    width: 9px;
    height: 9px;
  }
  .notebook-page .page-content i {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    padding: 8px;
  }
  .notebook-page .page-content h4 {
    font-size: 0.85rem;
  }
  .notebook-page .page-content p {
    font-size: 0.75rem;
  }
  .why-choose .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ============================================
   GREYSCALE SPACE BUTTON (Get Started)
   ============================================ */

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 13rem;
  overflow: hidden;
  height: 3rem;
  background-size: 300% 300%;
  cursor: pointer;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
  transition: 0.5s;
  animation: gradient_301 5s ease infinite;
  border: double 4px transparent;
  
  /* Greyscale gradient border */
  background-image: 
    linear-gradient(#212121, #212121),
    linear-gradient(
      137.48deg,
      #222222 10%,
      #555555 30%,
      #888888 50%,
      #bbbbbb 70%,
      #eeeeee 87%
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
  
  background-color: transparent;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  color: #fff;
  position: relative;
}

.btn strong {
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 5px;
  color: #ffffff;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

#container-stars {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: 0.5s;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
}

#glow {
  position: absolute;
  display: flex;
  width: 12rem;
}

.circle {
  width: 100%;
  height: 30px;
  filter: blur(2rem);
  animation: pulse_3011 4s infinite;
  z-index: -1;
}

.circle:nth-of-type(1) {
  background: rgba(120, 120, 120, 0.636);
}

.circle:nth-of-type(2) {
  background: rgba(60, 60, 60, 0.704);
}

.btn:hover #container-stars {
  z-index: 1;
  background-color: #1a1a1a;
}

.btn:hover {
  transform: scale(1.1);
}

.btn:active {
  border: double 4px #888888;
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: none;
}

.btn:active .circle {
  background: #666666;
}

#stars {
  position: relative;
  background: transparent;
  width: 200rem;
  height: 200rem;
}

#stars::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -100rem;
  width: 100%;
  height: 100%;
  animation: animStarRotate 90s linear infinite;
  background-image: radial-gradient(#ffffff 1px, transparent 1%);
  background-size: 50px 50px;
}

#stars::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 170%;
  height: 500%;
  animation: animStar 60s linear infinite;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1%);
  background-size: 50px 50px;
  opacity: 0.5;
}

@keyframes animStar {
  from { transform: translateY(0); }
  to { transform: translateY(-135rem); }
}

@keyframes animStarRotate {
  from { transform: rotate(360deg); }
  to { transform: rotate(0); }
}

@keyframes gradient_301 {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse_3011 {
  0% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .btn {
    width: 11rem;
    height: 2.8rem;
  }
  .btn strong {
    font-size: 10px;
    letter-spacing: 3px;
  }
}

/* ============================================
   BLACK & WHITE ANIMATED ROCKET
   ============================================ */

.cta-sketch {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #bbb;
  padding: 0;
  overflow: visible;
}

.myRocket {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.rocket {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 10;
}

.plamya1 {
  z-index: 3;
  position: absolute;
  top: 68px;
  left: 38px;
  animation: pulse_rocket 0.05s infinite ease-in-out alternate;
  transform: rotate(45deg);
}
.plamya2 {
  z-index: 4;
  position: absolute;
  top: 65px;
  left: 44px;
  animation: pulse_rocket 0.03s infinite ease-in-out alternate;
  transform: rotate(45deg);
}

@keyframes pulse_rocket {
  from { transform: scale(0.8) rotate(45deg); }
  to { transform: scale(1.2) rotate(45deg); }
}

/* Stars */
@keyframes star_anim {
  0% { opacity: 0; transform: translate(100px, 0); }
  25% { opacity: 0.6; transform: translate(75px, 25px); }
  75% { opacity: 0.6; transform: translate(25px, 75px); }
  100% { opacity: 0; transform: translate(0, 100px); }
}

.star {
  position: absolute;
  width: 5px;
  height: 5px;
  top: 0;
  left: 0;
  background: #222;
  border-radius: 50%;
}

.star1 { animation: star_anim 4s linear both infinite; }
.star2 { width: 2px; height: 2px; left: 50px; animation: star_anim 8s linear both infinite; }
.star3 { background: rgba(0,0,0,0.3); left: -50px; animation: star_anim 1.5s linear 0.5s both infinite; }
.star4 { width: 2px; height: 2px; left: -30px; background: rgba(0,0,0,0.3); animation: star_anim 3s linear 1s both infinite; }
.star5 { left: 50px; animation: star_anim 3.5s linear 5s both infinite; }
.star6 { width: 2px; height: 2px; left: -10px; animation: star_anim 6s linear 4.5s both infinite; }
.star7 { width: 3px; height: 3px; left: 25px; animation: star_anim 2s linear 4.5s both infinite; }
.star8 { width: 2px; height: 2px; opacity: 0.2; background: #000; left: 15px; animation: star_anim 3s linear 6.5s both infinite; }
.star9 { width: 4px; height: 4px; left: -33px; background: #000; opacity: 0.5; animation: star_anim 1.6s linear 5s both infinite; }
.star10 { width: 3px; height: 3px; left: -40px; background: #000; opacity: 0.5; animation: star_anim 1.8s linear 4.5s both infinite; }

/* Responsive */
@media (max-width: 768px) {
  .cta-sketch {
    width: 90px;
    height: 90px;
    padding: 0;
  }
  .myRocket {
    width: 80px;
    height: 80px;
  }
  .rocket svg {
    width: 50px;
    height: 50px;
  }
  .rocket {
    position: absolute;
    left: 15px;
    top: 15px;
  }
  .plamya1 { top: 56px; left: 32px; }
  .plamya1 svg { width: 14px; height: 14px; }
  .plamya2 { top: 54px; left: 36px; }
  .plamya2 svg { width: 8px; height: 8px; }
}

/* ============================================
   PIXAR CARDS (No Notebook) - Greyscale
   ============================================ */

/* Pixar Card - Standalone */
.pixar-card {
  --ui-dark: #4d4c4a;
  --ui-cream: #f5f1e8;
  --ui-cream-shadow: #c7c1b5;
  --ui-green: #8a8a8a;
  --ui-green-shadow: #5a5a5a;
  --ui-red: #888888;
  --ui-red-shadow: #555555;
  --button-press-depth: 0.15em;

  background-color: var(--ui-cream);
  border-radius: 1.2em;
  padding: 0.8em;
  border: 0.2em solid var(--ui-dark);
  box-shadow: 0.3em 0.3em 0 var(--ui-dark);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pixar-card:hover {
  transform: translateY(-0.4em) rotate(-1deg);
  box-shadow: 0.5em 0.5em 0 var(--ui-dark);
}

/* Card Header */
.pixar-card .card-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.6em;
  gap: 10px;
}

/* Rounded Avatar - Pixar style in greyscale */
.pixar-card .card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d0d0d0, #b0b0b0);
  border: 2px solid #333;
  box-shadow: 0.15em 0.15em 0 #888;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pixar-card .card-avatar i {
  font-size: 1.2rem;
  color: #333;
  transition: transform 0.3s ease;
}

.pixar-card:hover .card-avatar {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0.2em 0.2em 0 #666;
}

.pixar-card:hover .card-avatar i {
  transform: scale(1.1);
}

.pixar-card .card-username {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ui-dark);
  font-family: 'Inter', sans-serif;
}

/* Card Image Area */
.pixar-card .card-image-area {
  background-color: #d8d2c6;
  border-radius: 0.8em;
  padding: 0.6em;
  border: 0.15em solid var(--ui-dark);
  box-shadow: inset 0.1em 0.1em 0 #b3ac9f;
  position: relative;
  overflow: hidden;
  min-height: 60px;
}

.pixar-card .card-image-placeholder {
  width: 100%;
  height: 2.5em;
  border-radius: 0.4em;
  background: linear-gradient(135deg, #b0b0b0, #d0d0d0);
  border: 0.15em solid var(--ui-dark);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pixar-card:hover .card-image-placeholder {
  transform: scale(1.02);
}

/* Heart icon inside placeholder - hidden by default */
.pixar-card .heart-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #333;
  stroke-width: 2;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* When liked - show the heart */
.pixar-card.liked .heart-icon {
  opacity: 1;
  transform: scale(1);
  fill: #333;
  stroke: #333;
  animation: heart-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes heart-pop {
  0% { transform: scale(0); }
  50% { transform: scale(1.4); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.pixar-card .card-caption {
  margin: 0.6em 0 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--ui-dark);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

/* Card Actions */
.pixar-card .card-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-top: 0.8em;
}

.pixar-card .action-button {
  background: var(--ui-green);
  border: 0.15em solid var(--ui-dark);
  border-radius: 0.8em;
  padding: 0.35em 0.6em;
  cursor: pointer;
  box-shadow: 0 var(--button-press-depth) 0 var(--ui-green-shadow), 0 0.25em 0 var(--ui-dark);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.pixar-card .action-button:active {
  transform: translateY(var(--button-press-depth));
  box-shadow: 0 0 0 var(--ui-green-shadow), 0 var(--button-press-depth) 0 var(--ui-dark);
}

.pixar-card .like-button {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.pixar-card .like-button:hover {
  transform: scale(1.1);
}

.pixar-card .like-button:active {
  transform: scale(0.85);
}

.pixar-card .action-button-icon {
  width: 1.4em;
  height: 1.4em;
  stroke: var(--ui-dark);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  transition: fill 0.3s ease, stroke 0.3s ease;
}

/* Liked state for the button icon */
.pixar-card.liked .action-button-icon {
  fill: #333;
  stroke: #333;
  animation: heart-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Like count */
.pixar-card .like-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ui-dark);
  font-family: 'Inter', sans-serif;
  min-width: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .why-grid-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pixar-card .card-avatar {
    width: 36px;
    height: 36px;
  }
  .pixar-card .card-avatar i {
    font-size: 1rem;
  }
  .pixar-card .card-username {
    font-size: 0.85rem;
  }
  .pixar-card .card-caption {
    font-size: 0.7rem;
  }
  .pixar-card .heart-icon {
    width: 22px;
    height: 22px;
  }
}
/* ============================================
   NEUMORPHIC BUTTONS
   ============================================ */

.btnContainer {
  /* Appearance */
  background: #e8e8e8;
  -webkit-box-shadow: 6px 6px 16px #bebebe,
                      -6px -6px 16px #ffffff9a;
  box-shadow: 6px 6px 16px #bebebe,
              -6px -6px 16px #ffffff9a;
  /* Dimensions */
  width: 160px;
  height: 60px;
  /* Border */
  border: none;
  border-radius: 16px;
  /* Content Alignment */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* Transition */
  transition: all 250ms ease-in-out;
}

.btnContainer:hover {
  -webkit-box-shadow: 8px 8px 20px #bebebe,
                      -8px -8px 20px #ffffff;
  box-shadow: 8px 8px 20px #bebebe,
              -8px -8px 20px #ffffff;
}

.btnContainer .button {
  /* Appearance */
  background: #e8e8e8;
  /* Font-Style */
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #333;
  /* Dimensions */
  height: 85%;
  width: 95%;
  /* Border */
  border: none;
  border-radius: 14px;
  /* Content Alignment */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* Transition */
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  /* Remove default link decoration */
  text-decoration: none;
  cursor: pointer;
}

.btnContainer .button:hover {
  /* Appearance */
  background: #e8e8e8;
  -webkit-box-shadow: inset 5px 5px 4px #c0c0c0,
                      inset -5px -5px 4px #dddddd;
  box-shadow: inset 5px 5px 4px #c0c0c0,
              inset -5px -5px 4px #dddddd;
  /* Font-Style */
  font-weight: 500;
  color: #222;
}

.btnContainer .button:active {
  -webkit-box-shadow: inset 6px 6px 6px #b8b8b8,
                      inset -6px -6px 6px #ffffff;
  box-shadow: inset 6px 6px 6px #b8b8b8,
              inset -6px -6px 6px #ffffff;
  transform: scale(0.97);
}

.btnContainer .button i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btnContainer:hover .button i {
  transform: translateX(4px);
}

/* Secondary variation (slightly larger for Book CTA) */
.btnContainer-secondary {
  width: 180px;
  height: 64px;
}

.btnContainer-secondary .button {
  font-size: 17px;
}

/* Responsive */
@media (max-width: 768px) {
  .btnContainer {
    width: 140px;
    height: 52px;
  }
  .btnContainer .button {
    font-size: 14px;
  }
  .btnContainer-secondary {
    width: 160px;
    height: 56px;
  }
  .btnContainer-secondary .button {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .btnContainer {
    width: 120px;
    height: 46px;
  }
  .btnContainer .button {
    font-size: 12px;
  }
  .btnContainer .button i {
    font-size: 11px;
  }
  .btnContainer-secondary {
    width: 140px;
    height: 50px;
  }
  .btnContainer-secondary .button {
    font-size: 13px;
  }
}
/* ============================================
   GLASS-MORPHISM BUTTONS (Brand Building)
   ============================================ */

.glass-btn {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
  transition: all 0.3s ease-in-out;

  padding-block: 0.7rem;
  padding-inline: 1.8rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  gap: 12px;

  outline: none;
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  letter-spacing: 0.3px;
}

/* Secondary variant for light background */
.glass-btn-secondary {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.1);
  color: #111;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.glass-btn-secondary svg path {
  fill: #111;
}

.glass-btn .icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-btn svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}

.glass-btn:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.3);
}

.glass-btn-secondary:hover {
  box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.12);
}

.glass-btn:hover svg {
  transform: translateX(6px);
}

.glass-btn:hover::before {
  animation: shine 1s ease-out infinite;
}

.glass-btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
  pointer-events: none;
}

.glass-btn-secondary::before {
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
}

@keyframes shine {
  0% {
    left: -100px;
  }
  60% {
    left: 100%;
  }
  to {
    left: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .glass-btn {
    padding-block: 0.5rem;
    padding-inline: 1.2rem;
    font-size: 13px;
    gap: 10px;
  }
  .glass-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .glass-btn {
    padding-block: 0.4rem;
    padding-inline: 1rem;
    font-size: 12px;
    gap: 8px;
  }
  .glass-btn svg {
    width: 18px;
    height: 18px;
  }
}
/* ============================================
   GLASS CARDS — Light Dark Grey + Silver Glow
   ============================================ */

.bb-glass-card {
  position: relative;
  background: linear-gradient(145deg, #d4d4d4, #b8b8b8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 32px 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ============================================
   PROCESS CARDS — Dark Background + White Text
   ============================================ */

.bb-glass-card-process {
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* White text for all process card content */
.bb-glass-card-process h3 {
  color: #ffffff !important;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.bb-glass-card-process p {
  color: #e8e8e8 !important;
}

.bb-glass-card-process .glass-step-number {
  color: rgba(255, 255, 255, 0.06);
}

.bb-glass-card-process .glass-icon-bg {
  background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
  border-color: rgba(255, 255, 255, 0.08);
}

.bb-glass-card-process .glass-icon-bg i {
  color: #eee;
}

.bb-glass-card-process .glass-divider {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.bb-glass-card-process .glass-dots span {
  background: rgba(255, 255, 255, 0.12);
}

.group:hover .bb-glass-card-process .glass-dots span {
  background: rgba(255, 255, 255, 0.35);
}

.bb-glass-card-process .glass-glow {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
}

/* Enhanced hover animation for process cards */
.group:hover .bb-glass-card-process {
  box-shadow: 0 12px 48px rgba(255, 255, 255, 0.05), 0 8px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.12);
}

.group:hover .bb-glass-card-process h3 {
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.group:hover .bb-glass-card-process p {
  color: #ffffff !important;
}

/* ============================================
   STRATEGY CARDS — Light Background + Dark Text
   ============================================ */

.bb-glass-card h3 {
  color: #111;
  transition: color 0.3s ease;
}

.bb-glass-card p {
  color: #444;
  transition: color 0.3s ease;
}

.group:hover .bb-glass-card h3 {
  color: #000;
}

.group:hover .bb-glass-card p {
  color: #222;
}

/* ============================================
   SHARED GLASS EFFECTS
   ============================================ */

.glass-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 200, 200, 0.2), transparent 70%);
  top: -80px;
  right: -80px;
  opacity: 0;
  transition: opacity 0.8s ease;
  animation: glass-pulse 4s ease-in-out infinite;
}

.group:hover .glass-glow {
  opacity: 1;
}

.glass-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.group:hover .glass-shimmer {
  transform: translateX(100%);
}

.glass-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.glass-icon-wrapper {
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
}

.glass-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  animation: glass-ring-pulse 3s ease-in-out infinite;
}

.bb-glass-card-process .glass-icon-ring {
  border-color: rgba(255, 255, 255, 0.06);
}

.glass-icon-bg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0f0f0, #e0e0e0);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.group:hover .glass-icon-bg {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.glass-icon-bg i {
  font-size: 1.6rem;
  color: #222;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bb-glass-card-process .glass-icon-bg i {
  color: #eee;
}

.group:hover .glass-icon-bg i {
  transform: rotate(180deg) scale(1.05);
}

.glass-step-number {
  font-family: 'Caveat', cursive;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -2px;
}

.bb-glass-card-process .glass-step-number {
  color: rgba(255, 255, 255, 0.06);
}

.glass-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.glass-content p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 92%;
  margin: 0 auto;
  transition: color 0.3s ease;
}

.glass-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #aaa, transparent);
  margin: 16px auto 0;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.group:hover .glass-divider {
  width: 60px;
}

.bb-glass-card-process .glass-divider {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.glass-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}

.glass-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bbb;
  transition: all 0.3s ease;
}

.glass-dots span:nth-child(2) {
  animation-delay: 0.15s;
}
.glass-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

.group:hover .glass-dots span {
  background: #888;
  animation: glass-dot-bounce 0.6s ease-in-out infinite;
}

.bb-glass-card-process .glass-dots span {
  background: rgba(255, 255, 255, 0.12);
}

.group:hover .bb-glass-card-process .glass-dots span {
  background: rgba(255, 255, 255, 0.35);
}

/* Animations */
@keyframes glass-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes glass-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0.1; }
}

@keyframes glass-dot-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); opacity: 0.5; }
}

/* Grid layouts */
.bb-strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.bb-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Responsive */
@media (max-width: 1024px) {
  .bb-strategy-grid,
  .bb-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bb-strategy-grid,
  .bb-process-grid {
    grid-template-columns: 1fr;
  }
  .bb-glass-card {
    min-height: 280px;
    padding: 24px 16px;
  }
  .glass-content h3 {
    font-size: 1.1rem;
  }
  .glass-content p {
    font-size: 0.82rem;
    max-width: 100%;
  }
  .glass-icon-bg {
    width: 52px;
    height: 52px;
  }
  .glass-icon-bg i {
    font-size: 1.3rem;
  }
  .glass-step-number {
    font-size: 2.8rem;
  }
}
/* ============================================
   ELECTRIC BORDER CARDS — Booking Page
   ============================================ */

.book-listing-electric {
  padding: 64px 0 80px;
  background: #f5f5f5;
}

.book-grid-electric {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

/* ============================================
   ELECTRIC CARD — Full Reference Style
   ============================================ */

.electric-card {
  position: relative;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    -30deg,
    rgba(0, 0, 0, 0.08),
    transparent,
    rgba(0, 0, 0, 0.08)
  );
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.electric-card:hover {
  transform: translateY(-6px);
}

/* ---- Border Outer ---- */
.electric-border-outer {
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding-right: 4px;
  padding-bottom: 4px;
}

/* ---- Main Card (with filter) ---- */
.electric-main-card {
  position: relative;
  width: 100%;
  border-radius: 18px;
  border: 2px solid #222;
  margin-top: -4px;
  margin-left: -4px;
  filter: url(#electric-border);
  background: #e8e8e8;
  min-height: 340px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.electric-card:hover .electric-main-card {
  border-color: #000;
}

/* ---- Glow Layers ---- */
.electric-glow-layer-1 {
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 18px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(1px);
  pointer-events: none;
  z-index: 1;
}

.electric-glow-layer-2 {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(4px);
  pointer-events: none;
  z-index: 1;
}

/* ---- Overlay Effects ---- */
.electric-overlay-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  opacity: 0.3;
  mix-blend-mode: overlay;
  transform: scale(1.05);
  filter: blur(12px);
  background: linear-gradient(
    -30deg,
    white,
    transparent 30%,
    transparent 70%,
    white
  );
  pointer-events: none;
  z-index: 0;
}

.electric-overlay-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  opacity: 0.15;
  mix-blend-mode: overlay;
  transform: scale(1.05);
  filter: blur(16px);
  background: linear-gradient(
    -30deg,
    white,
    transparent 30%,
    transparent 70%,
    white
  );
  pointer-events: none;
  z-index: 0;
}

/* ---- Background Glow ---- */
.electric-bg-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  filter: blur(32px);
  transform: scale(1.1);
  opacity: 0.1;
  z-index: 0;
  background: linear-gradient(
    -30deg,
    #222,
    transparent,
    #222
  );
  pointer-events: none;
}

/* ---- Content ---- */
.electric-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  min-height: 300px;
}

.electric-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d0d0d0, #b8b8b8);
  border: 2px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  position: relative;
}

.electric-card:hover .electric-icon {
  transform: scale(1.05) rotate(-3deg);
  border-color: #000;
}

.electric-icon i {
  font-size: 1.5rem;
  color: #222;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.electric-card:hover .electric-icon i {
  transform: rotate(180deg) scale(1.05);
}

/* Lightning bolt spark */
.electric-icon::after {
  content: '⚡';
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 12px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.electric-card:hover .electric-icon::after {
  opacity: 1;
  transform: scale(1);
  animation: spark-flash 1s ease-in-out infinite;
}

@keyframes spark-flash {
  0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.3) rotate(25deg); }
}

.electric-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.electric-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 14px;
}

.electric-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.electric-tags span {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.68rem;
  padding: 4px 12px;
  color: #444;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 4px;
}

/* ============================================
   DIAMOND / RHOMBUS BUTTON
   ============================================ */

.diamond-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 26px;
  background: #222;
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border: none;
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  width: fit-content;
  align-self: flex-start;
  margin-top: auto;
  position: relative;
}

.diamond-btn span {
  position: relative;
  z-index: 2;
}

.diamond-btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.diamond-btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #444, #111, #444);
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.diamond-btn:hover::after {
  opacity: 1;
}

.diamond-btn:hover {
  transform: translateX(4px) scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.diamond-btn:hover svg {
  transform: translateX(4px);
}

.diamond-btn:active {
  transform: scale(0.95);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .book-grid-electric {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .electric-main-card {
    min-height: 280px;
  }
  .electric-content {
    padding: 20px 16px 16px;
  }
  .electric-icon {
    width: 48px;
    height: 48px;
  }
  .electric-icon i {
    font-size: 1.2rem;
  }
  .electric-content h3 {
    font-size: 1.05rem;
  }
  .electric-content p {
    font-size: 0.8rem;
  }
  .diamond-btn {
    padding: 9px 20px;
    font-size: 0.75rem;
  }
  .diamond-btn svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 500px) {
  .book-grid-electric {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .electric-main-card {
    min-height: 260px;
  }
  .electric-content {
    padding: 16px 14px 14px;
  }
  .electric-icon {
    width: 42px;
    height: 42px;
  }
  .electric-icon i {
    font-size: 1rem;
  }
  .electric-content h3 {
    font-size: 0.95rem;
  }
  .electric-tags span {
    font-size: 0.6rem;
    padding: 3px 8px;
  }
}
/* ====================================================
   NEW ELECTRIC BORDER CARDS (from design sprint)
   ==================================================== */
:root {
  --electric-border-color: #a3a3a3; /* Silver */
  --electric-light-color: #000000; /* Black */
  --gradient-color: rgba(0, 0, 0, 0.05); /* Light gradient */
  --color-neutral-900: #ffffff; /* White card background */
}

.book-grid-electric {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

/* Card container */
.card-container {
  padding: 2px;
  border-radius: 24px;
  position: relative;
  background: linear-gradient(-30deg, var(--gradient-color), transparent, var(--gradient-color)),
              linear-gradient(to bottom, var(--color-neutral-900), var(--color-neutral-900));
  /* Override to make it responsive */
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: flex;
  flex-direction: column;
}

/* Inner container */
.inner-container {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Border layers */
.border-outer {
  border: 4px solid rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  padding-right: 4px;
  padding-bottom: 4px;
  width: 100%; height: 100%;
  position: absolute;
}

.main-card {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 24px;
  border: 4px solid var(--electric-border-color);
  margin-top: -4px;
  margin-left: -4px;
  filter: url(#turbulent-displace);
}

/* Glow effects */
.glow-layer-1 {
  border: 4px solid rgba(0, 0, 0, 0.4);
  border-radius: 24px;
  width: 100%; height: 100%;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  filter: blur(1px);
}

.glow-layer-2 {
  border: 2px solid var(--electric-light-color);
  border-radius: 24px;
  width: 100%; height: 100%;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  filter: blur(4px);
}

/* Overlay effects */
.overlay-1, .overlay-2 {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  mix-blend-mode: overlay;
  transform: scale(1.1);
  filter: blur(16px);
  background: linear-gradient(-30deg, white, transparent 30%, transparent 70%, white);
  pointer-events: none;
}
.overlay-1 { opacity: 1; }
.overlay-2 { opacity: 0.5; }

/* Background glow */
.background-glow {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  filter: blur(32px);
  transform: scale(1.1);
  opacity: 0.3;
  z-index: -1;
  background: linear-gradient(-30deg, var(--electric-light-color), transparent, var(--electric-border-color));
  pointer-events: none;
}

/* Content container */
.content-container {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #111111; /* Dark text for white card */
}

/* Content sections */
.content-top {
  display: flex;
  flex-direction: column;
  padding: 40px;
  padding-bottom: 16px;
}

.content-bottom {
  display: flex;
  flex-direction: column;
  padding: 40px;
  padding-top: 16px;
  flex-grow: 1;
}

/* Divider */
.divider {
  margin-top: auto;
  border: none;
  height: 1px;
  background-color: currentColor;
  opacity: 0.1;
  mask-image: linear-gradient(to right, transparent, black, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black, transparent);
}

/* Adjustments for existing content */
.electric-icon i {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--electric-border-color);
}

.title {
  font-size: 28px;
  font-weight: 600;
  margin-top: 10px;
}

.description {
  opacity: 0.7;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.electric-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.electric-tags span {
  font-size: 12px;
  background: rgba(0, 0, 0, 0.05);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.diamond-btn {
  position: relative;
  margin-top: auto;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  padding: 20px 28px;
  background: transparent;
  transform: skewX(-15deg);
  transition: all 0.3s ease;
  z-index: 1;
}

.diamond-btn > span, .diamond-btn > svg {
  transform: skewX(15deg);
  position: relative;
  z-index: 2;
}

.diamond-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 2px solid var(--electric-border-color);
  background: rgba(0, 0, 0, 0.03);
  filter: url(#turbulent-displace);
  z-index: -1;
  transition: all 0.3s ease;
}

.diamond-btn:hover {
  color: #fff;
  transform: skewX(-15deg) translateY(-2px);
}

.diamond-btn:hover::before {
  background: var(--electric-border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.diamond-btn svg {
  width: 18px;
  height: 18px;
}

.card-container:hover {
  transform: translateY(-8px);
  transition: transform 0.4s ease;
}
/* ============================================
   DARK GREY NEUMORPHIC CONTACT FORM
   ============================================ */

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
}

.form-container .form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.form-container .form-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 35px;
  border-radius: 15px;
  background: #212121;
  box-shadow: inset 2px 2px 10px rgba(0,0,0,1),
              inset -1px -1px 5px rgba(255, 255, 255, 0.6);
  width: 100%;
}

.form-container .form-details {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-container .input {
  width: 100%;
  min-height: 45px;
  color: #fff;
  outline: none;
  transition: 0.35s;
  padding: 0 14px;
  background-color: #212121;
  border-radius: 6px;
  border: 2px solid #212121;
  box-shadow: 6px 6px 10px rgba(0,0,0,1),
              1px 1px 10px rgba(255, 255, 255, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.form-container .input::placeholder {
  color: #999;
}

.form-container .input:focus {
  transform: scale(1.02);
  box-shadow: 6px 6px 10px rgba(0,0,0,1),
              1px 1px 10px rgba(255, 255, 255, 0.6),
              inset 2px 2px 10px rgba(0,0,0,1),
              inset -1px -1px 5px rgba(255, 255, 255, 0.6);
}

.form-container .input:focus::placeholder {
  opacity: 0;
  transition: 0.3s;
}

.form-container .input:hover {
  transform: scale(1.01);
}

.form-container textarea.input {
  padding: 12px 14px;
  resize: vertical;
  min-height: 80px;
}

.form-container .btn {
  padding: 12px 35px;
  cursor: pointer;
  background-color: #212121;
  border-radius: 6px;
  border: 2px solid #212121;
  box-shadow: 6px 6px 10px rgba(0,0,0,1),
              1px 1px 10px rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  transition: 0.35s;
  width: 100%;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.form-container .btn:hover {
  transform: scale(1.03);
  box-shadow: 6px 6px 10px rgba(0,0,0,1),
              1px 1px 10px rgba(255, 255, 255, 0.6),
              inset 2px 2px 10px rgba(0,0,0,1),
              inset -1px -1px 5px rgba(255, 255, 255, 0.6);
}

.form-container .btn:active {
  transform: scale(0.97);
}

/* Responsive */
@media (max-width: 768px) {
  .form-container .form-panel {
    padding: 30px 20px;
  }
  .form-container .form-details {
    font-size: 20px;
  }
  .form-container .input {
    min-height: 40px;
    font-size: 0.85rem;
  }
  .form-container .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .form-container .form-panel {
    padding: 24px 16px;
  }
  .form-container .form-details {
    font-size: 18px;
  }
}

/* ============================================
   FIX: ELECTRIC CARD ICON ALIGNMENT
   ============================================ */

/* Override the problematic margin-bottom on the icon */
.electric-icon i {
  margin-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

/* Ensure the icon container centers properly */
.electric-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
}

/* For the new electric cards, ensure proper centering */
.card-container .electric-icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: linear-gradient(145deg, #d0d0d0, #b8b8b8) !important;
  border: 2px solid #222 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
  margin-bottom: 16px !important;
  position: relative !important;
}

.card-container .electric-icon i {
  font-size: 1.5rem !important;
  color: #222 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Fix the glow layer z-index so it doesn't interfere */
.card-container .glow-layer-1,
.card-container .glow-layer-2 {
  z-index: 1 !important;
}

.card-container .content-container {
  z-index: 10 !important;
}

/* Ensure the icon is centered on hover too */
.card-container:hover .electric-icon {
  transform: scale(1.05) rotate(-3deg);
}

.card-container:hover .electric-icon i {
  transform: rotate(0deg) scale(1.05);
}
/* ============================================
   HOME — SERVICES SNIPPET (4+3 layout)
   ============================================ */
.services-snippet {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
}

.section-header.text-center {
  text-align: center;
}
.section-header.text-center .section-title:after {
  left: 50%;
  transform: translateX(-50%);
}

.section-sub {
  color: #666;
  font-size: 1rem;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 4 columns → first row 4, second row 3 */
.services-snippet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.service-snippet-card {
  background: #fff;
  border: 1px solid #ececec;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.service-snippet-card:hover {
  border-color: #000;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.service-snippet-card .snippet-icon {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 16px;
  display: inline-block;
}
.service-snippet-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-snippet-card p {
  color: #555;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============================================
   HOME — GET STARTED CTA
   ============================================ */
.get-started-cta {
  padding: 80px 0;
  background: #111;
}

.get-started-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
}

.get-started-content {
  flex: 1.2;
  color: #fff;
}
.get-started-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.get-started-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 90%;
}
.get-started-content .btn-primary {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.get-started-content .btn-primary:hover {
  background: #f0f0f0;
  color: #000;
  box-shadow: 4px 4px 0 rgba(255,255,255,0.15);
}

.get-started-sketch {
  flex: 0.5;
  text-align: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.15);
  border: 1px dashed rgba(255,255,255,0.15);
  padding: 40px 30px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .services-snippet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-snippet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .get-started-box {
    flex-direction: column;
    text-align: center;
  }
  .get-started-content p {
    max-width: 100%;
  }
  .get-started-content h2 {
    font-size: 2rem;
  }
  .get-started-sketch {
    font-size: 3.5rem;
    padding: 30px 20px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .services-snippet-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   HOME — SERVICES SNIPPET (4+3 Centered Layout)
   ============================================ */
.services-snippet {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
}

.section-header.text-center {
  text-align: center;
}
.section-header.text-center .section-title:after {
  left: 50%;
  transform: translateX(-50%);
}

.section-sub {
  color: #666;
  font-size: 1rem;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Flex layout — 4 cards top row, 3 centered bottom */
.services-snippet-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}

.service-snippet-card {
  flex: 0 0 calc(25% - 24px);
  max-width: calc(25% - 24px);
  background: #fff;
  border: 1px solid #ececec;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.service-snippet-card:hover {
  border-color: #000;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.service-snippet-card .snippet-icon {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 16px;
  display: inline-block;
}
.service-snippet-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-snippet-card p {
  color: #555;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============================================
   HOME — GET STARTED CTA
   ============================================ */
.get-started-cta {
  padding: 80px 0;
  background: #111;
}

.get-started-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
}

.get-started-content {
  flex: 1.2;
  color: #fff;
}
.get-started-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.get-started-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 90%;
}
.get-started-content .btn-primary {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.get-started-content .btn-primary:hover {
  background: #f0f0f0;
  color: #000;
  box-shadow: 4px 4px 0 rgba(255,255,255,0.15);
}

.get-started-sketch {
  flex: 0.5;
  text-align: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.15);
  border: 1px dashed rgba(255,255,255,0.15);
  padding: 40px 30px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .service-snippet-card {
    flex: 0 0 calc(33.333% - 24px);
    max-width: calc(33.333% - 24px);
  }
}

@media (max-width: 768px) {
  .service-snippet-card {
    flex: 0 0 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
  .get-started-box {
    flex-direction: column;
    text-align: center;
  }
  .get-started-content p {
    max-width: 100%;
  }
  .get-started-content h2 {
    font-size: 2rem;
  }
  .get-started-sketch {
    font-size: 3.5rem;
    padding: 30px 20px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .service-snippet-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* ============================================
   4+3 GRID LAYOUTS (Wider Side-to-Side)
   ============================================ */

/* Book Online Page - 4+3 Layout (Wider Side-to-Side) */
.book-grid-electric-4-3 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
}

.electric-row-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}

.electric-row-group.centered {
  grid-template-columns: repeat(3, 1fr);
  max-width: 82%;
  margin: 0 auto;
}

/* Make cards stretch full width */
.card-container {
  width: 100%;
  min-height: 380px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}

.card-container .content-container {
  padding: 28px 24px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-container .content-top {
  padding: 28px 24px 12px;
}

.card-container .content-bottom {
  padding: 28px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Electric icon - slightly bigger */
.card-container .electric-icon {
  width: 64px !important;
  height: 64px !important;
}

.card-container .electric-icon i {
  font-size: 1.8rem !important;
}

/* Electric card title */
.card-container .title {
  font-size: 28px;
  font-weight: 700;
  margin-top: 8px;
}

/* Electric card description */
.card-container .description {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.8;
  flex: 1;
}

/* Electric card tags */
.card-container .electric-tags {
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.card-container .electric-tags span {
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 20px;
}

/* Diamond button */
.card-container .diamond-btn {
  padding: 14px 30px;
  font-size: 0.9rem;
  gap: 10px;
  align-self: flex-start;
  margin-top: auto;
}

.card-container .diamond-btn svg {
  width: 20px;
  height: 20px;
}

/* Divider */
.card-container .divider {
  opacity: 0.12;
  margin: 0 24px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .electric-row-group {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
    gap: 24px;
  }
  .electric-row-group.centered {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
  }
  .card-container {
    min-height: 340px;
  }
  .card-container .title {
    font-size: 24px;
  }
  .card-container .description {
    font-size: 15px;
  }
  .card-container .electric-icon {
    width: 56px !important;
    height: 56px !important;
  }
  .card-container .electric-icon i {
    font-size: 1.5rem !important;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .electric-row-group,
  .electric-row-group.centered {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 18px;
  }
  .card-container {
    min-height: 300px;
  }
  .card-container .content-container {
    padding: 20px 16px;
  }
  .card-container .content-top {
    padding: 20px 16px 10px;
  }
  .card-container .content-bottom {
    padding: 20px 16px 16px;
  }
  .card-container .title {
    font-size: 20px;
  }
  .card-container .description {
    font-size: 14px;
  }
  .card-container .electric-icon {
    width: 48px !important;
    height: 48px !important;
  }
  .card-container .electric-icon i {
    font-size: 1.3rem !important;
  }
  .card-container .electric-tags span {
    font-size: 11px;
    padding: 4px 10px;
  }
  .card-container .diamond-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  .card-container .diamond-btn svg {
    width: 16px;
    height: 16px;
  }
  .card-container .divider {
    margin: 0 16px;
  }
}
/* ============================================
   GET STARTED CTA — IMPROVED STYLES
   ============================================ */
.get-started-cta {
  padding: 80px 0;
  background: #111;
}

.get-started-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
}

.get-started-content {
  flex: 1.2;
  color: #fff;
}

.get-started-content .section-label {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  font-family: 'Caveat', cursive;
  display: inline-block;
  margin-bottom: 8px;
}

.get-started-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.get-started-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 90%;
}

/* Simplified Get Started Button */
.get-started-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: #fff;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.get-started-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.get-started-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.get-started-btn:hover i {
  transform: translateX(4px);
}

/* Rocket GIF */
.get-started-sketch-gif {
  flex: 0.5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.get-started-sketch-gif img {
  max-width: 100%;
  height: auto;
  max-height: 140px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.get-started-sketch-gif img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .get-started-content h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .get-started-box {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }
  
  .get-started-content {
    flex: unset;
    width: 100%;
  }
  
  .get-started-content p {
    max-width: 100%;
  }
  
  .get-started-content h2 {
    font-size: 2rem;
  }
  
  .get-started-sketch-gif {
    flex: unset;
    width: 100%;
  }
  
  .get-started-sketch-gif img {
    max-height: 100px;
  }
}

@media (max-width: 480px) {
  .get-started-content h2 {
    font-size: 1.6rem;
  }
  
  .get-started-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}
/* ============================================
   MOBILE-FRIENDLY OVERRIDES
   ============================================ */

/* Tablet and smaller */
@media (max-width: 1024px) {
  /* General container padding */
  .container {
    padding: 0 20px;
  }

  /* Hero Section */
  .hero-section {
    padding: 80px 0 60px;
    min-height: auto;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-desc {
    max-width: 100%;
    font-size: 1rem;
  }
  .hero-stats {
    gap: 24px;
  }
  .stat-item h3 {
    font-size: 1.6rem;
  }

  /* Services Hero */
  .services-hero-grid {
    flex-direction: column;
    gap: 30px;
  }
  .services-hero-content h1 {
    font-size: 2.5rem;
  }
  .services-hero-content p {
    max-width: 100%;
  }
  .services-hero-image {
    flex: 1 !important;
    width: 100%;
  }
  .services-hero-image img {
    max-width: 80%;
  }

  /* About Page */
  .about-grid {
    flex-direction: column;
    gap: 30px;
  }
  .about-main p {
    max-width: 100%;
  }
  .about-side {
    width: 100%;
    padding: 24px;
  }

  /* Founder Card */
  .parent .card .content-box {
    padding: 40px 24px 24px 24px;
  }
  .content-box .card-title {
    font-size: 30px;
  }
  .content-box .card-content {
    font-size: 16px;
  }
  .date-box {
    width: 70px;
    height: 70px;
    top: 20px;
    right: 20px;
  }
  .date-box .date {
    font-size: 24px;
  }

  /* Team Grid */
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  /* Timeline */
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Service Cards - 4+3 becomes 2+2+? */
  .svc-row-group {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
  .svc-row-group.centered {
    gap: 20px;
  }
  .svc-row-group.centered .svc-row {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
  }
  .svc-row {
    min-height: 260px;
  }
  .svc-row.open {
    min-height: 340px;
  }

  /* Notebook Pages - 4 becomes 2 */
  .why-grid-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
  .notebook-page {
    min-height: 240px;
    padding: 24px 18px 24px 44px;
  }
  .notebook-page .page-content h4 {
    font-size: 1rem;
  }
  .notebook-page .page-content p {
    font-size: 0.82rem;
  }

  /* Electric Cards - 4+3 becomes 2+2 */
  .electric-row-group {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  .electric-row-group.centered {
    max-width: 100% !important;
  }
  .card-container {
    min-height: 320px;
  }
  .card-container .title {
    font-size: 22px;
  }
  .card-container .description {
    font-size: 14px;
  }

  /* Brand Building Glass Cards */
  .bb-strategy-grid,
  .bb-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Contact Page */
  .contact-grid {
    flex-direction: column;
    gap: 30px;
  }
  .contact-info-col h1 {
    font-size: 2.5rem;
  }
  .contact-form-col {
    padding: 24px;
    width: 100%;
  }

  /* Mission Card */
  .mission-container {
    max-width: 100%;
    font-size: 20px;
  }
  .mission-logo-wrapper img {
    width: 120px;
    height: 120px;
  }

  /* Get Started CTA */
  .get-started-content h2 {
    font-size: 2.2rem;
  }
  .get-started-content p {
    max-width: 100%;
  }
  .get-started-sketch-gif img {
    max-height: 100px;
  }

  /* Book Online Cards */
  .book-grid-electric-4-3 {
    gap: 24px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-socials {
    justify-content: center;
  }
}

/* Mobile devices (768px and below) */
@media (max-width: 768px) {
  /* General */
  body {
    font-size: 15px;
  }
  .container {
    padding: 0 16px;
  }

  /* Header / Navbar */
  .navbar {
    flex-direction: column;
    padding: 10px 16px;
    gap: 12px;
  }
  .logo {
    margin-top: -30px;
    margin-bottom: 10px;
  }
  .logo-img {
    height: 70px !important;
  }
  .nav-links {
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav-links a {
    font-size: 0.8rem;
    padding: 4px 8px;
  }

  /* Hero */
  .hero-section {
    padding: 60px 0 40px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .hero-badge {
    font-size: 0.9rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn-wrapper {
    width: 100%;
    max-width: 165px;
  }
  .gradient-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .hero-stats {
    gap: 16px;
  }
  .stat-item h3 {
    font-size: 1.4rem;
  }
  .stat-item p {
    font-size: 0.7rem;
  }

  /* Section Titles */
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }
  .section-title:after {
    width: 50px;
  }

  /* Services Snippet (Luminous Cards) */
  .services-snippet-grid {
    gap: 16px;
  }
  .luminous-card-container {
    flex: 0 0 calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
  }
  .luminous-card {
    height: 18rem;
    max-width: 100%;
    padding: 0.8rem;
    border-radius: 1.4rem;
  }
  .luminous-service-name {
    top: -9rem;
    font-size: 1.2rem;
  }
  .luminous-description {
    font-size: 0.75rem;
    max-width: 90%;
  }
  .luminous-toggle {
    width: 4rem;
    height: 1.8rem;
  }
  .luminous-handle {
    width: 1.2rem;
    height: 1.2rem;
    left: 0.4rem;
  }

  /* Service Cards - Brush Stroke */
  .svc-row-group {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .svc-row-group.centered .svc-row {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .svc-row {
    min-height: 220px;
  }
  .svc-row.open {
    min-height: 300px;
  }
  .svc-row-header {
    padding: 20px 20px 0;
  }
  .svc-row-header h3 {
    font-size: 1.3rem;
  }
  .svc-row-desc {
    font-size: 0.85rem;
  }
  .svc-row-num {
    font-size: 2.2rem;
  }
  .svc-row-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .svc-row-body {
    padding: 0 20px;
  }
  .svc-row.open .svc-row-body {
    padding: 12px 20px 16px;
  }
  .svc-switch {
    width: 48px;
    height: 24px;
  }
  .svc-switch-knob {
    width: 18px;
    height: 18px;
  }
  .svc-row.open .svc-switch-knob {
    transform: translateX(24px);
  }
  .svc-row-toggle {
    padding: 16px 18px;
  }
  .svc-tags-list li {
    font-size: 0.8rem;
    padding: 3px 10px;
  }

  /* Services Hero */
  .services-hero {
    padding: 50px 0 40px;
  }
  .services-hero-content h1 {
    font-size: 2rem;
  }
  .services-hero-image img {
    max-width: 90%;
  }

  /* Quote */
  .services-quote {
    font-size: 1.3rem;
    padding: 20px 16px;
  }

  /* Pixar Cards - 4 becomes 2 */
  .why-grid-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }
  .pixar-card {
    padding: 0.6rem;
  }
  .pixar-card .card-avatar {
    width: 36px;
    height: 36px;
  }
  .pixar-card .card-avatar i {
    font-size: 1rem;
  }
  .pixar-card .card-username {
    font-size: 0.85rem;
  }
  .pixar-card .card-caption {
    font-size: 0.7rem;
  }

  /* Notebook Pages - 4 becomes 2 */
  .why-grid-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }
  .notebook-page {
    min-height: 200px;
    padding: 18px 14px 18px 38px;
  }
  .notebook-page .spiral-binding {
    width: 20px;
    top: 10px;
    bottom: 10px;
  }
  .notebook-page .spiral-binding .hole {
    width: 9px;
    height: 9px;
  }
  .notebook-page .page-content i {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    padding: 10px;
  }
  .notebook-page .page-content h4 {
    font-size: 0.9rem;
  }
  .notebook-page .page-content p {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  /* About Page */
  .about-hero {
    padding: 50px 0 40px;
  }
  .about-main h1 {
    font-size: 2.2rem;
  }
  .about-main p {
    font-size: 0.95rem;
  }
  .about-side {
    padding: 20px;
  }

  /* Founder Section */
  .founder-section {
    padding: 50px 0;
  }
  .founder-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .parent .card .content-box {
    padding: 30px 16px 16px 16px;
  }
  .content-box .card-title {
    font-size: 24px;
  }
  .content-box .card-content {
    font-size: 14px;
  }
  .date-box {
    width: 60px;
    height: 60px;
    top: 16px;
    right: 16px;
    padding: 6px;
  }
  .date-box .date {
    font-size: 20px;
  }
  .date-box .month {
    font-size: 11px;
  }
  .founder-image-placeholder {
    width: 120px !important;
    height: 120px !important;
    font-size: 3rem !important;
  }

  /* Team Section */
  .team-section {
    padding: 50px 0;
  }
  .team-water {
    padding: 30px 16px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }
  .team-grid .team-member {
    padding: 30px 16px 20px;
  }
  .team-grid .team-member .team-photo-placeholder {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }
  .team-grid .team-member h4 {
    font-size: 1rem;
  }
  .team-grid .team-member span {
    font-size: 0.75rem;
  }

  /* Mission & Vision */
  .what-we-do {
    padding: 50px 0;
  }
  .services-mini-grid {
    gap: 24px;
  }
  .curved-card {
    padding: 1.2rem !important;
  }
  .curved-card h3 {
    font-size: 1.2rem;
  }
  .curved-card p {
    font-size: 0.9rem;
  }

  /* Timeline */
  .timeline-section {
    padding: 50px 0;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .timeline-card {
    padding: 20px 16px;
  }
  .timeline-card .year {
    font-size: 1.6rem;
  }
  .timeline-card h4 {
    font-size: 1rem;
  }

  /* Brand Building */
  .bb-hero {
    padding: 60px 0 50px;
  }
  .bb-hero-inner h1 {
    font-size: 2.2rem;
  }
  .bb-strategy,
  .bb-process {
    padding: 50px 0;
  }
  .bb-strategy-grid,
  .bb-process-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .bb-glass-card {
    min-height: 240px;
    padding: 24px 16px;
  }
  .glass-icon-bg {
    width: 48px;
    height: 48px;
  }
  .glass-icon-bg i {
    font-size: 1.2rem;
  }
  .glass-content h3 {
    font-size: 1rem;
  }
  .glass-content p {
    font-size: 0.8rem;
    max-width: 100%;
  }
  .glass-step-number {
    font-size: 2.5rem;
  }
  .bb-cta {
    padding: 50px 0;
  }
  .bb-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
  }
  .bb-cta-text h2 {
    font-size: 1.5rem;
    max-width: 100%;
  }

  /* Glass Buttons */
  .glass-btn {
    padding: 10px 16px;
    font-size: 13px;
    gap: 8px;
  }
  .glass-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Book Online */
  .book-hero {
    padding: 50px 0 30px;
  }
  .book-hero-inner h1 {
    font-size: 2.2rem;
  }
  .book-listing-electric {
    padding: 40px 0 50px;
  }
  .electric-row-group {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .electric-row-group.centered {
    max-width: 100% !important;
  }
  .card-container {
    min-height: 280px;
  }
  .card-container .content-container {
    padding: 16px;
  }
  .card-container .content-top {
    padding: 16px 16px 8px;
  }
  .card-container .content-bottom {
    padding: 16px 16px 16px;
  }
  .card-container .title {
    font-size: 18px;
  }
  .card-container .description {
    font-size: 13px;
  }
  .card-container .electric-icon {
    width: 44px !important;
    height: 44px !important;
  }
  .card-container .electric-icon i {
    font-size: 1.2rem !important;
  }
  .card-container .electric-tags span {
    font-size: 10px;
    padding: 3px 8px;
  }
  .card-container .diamond-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  .card-container .diamond-btn svg {
    width: 14px;
    height: 14px;
  }
  .card-container .divider {
    margin: 0 16px;
  }

  /* Contact Page */
  .contact-hero {
    padding: 50px 0 40px;
  }
  .contact-info-col h1 {
    font-size: 2rem;
  }
  .contact-detail strong {
    font-size: 0.9rem;
  }
  .contact-detail p,
  .contact-detail a {
    font-size: 0.9rem;
  }
  .form-container .form-panel {
    padding: 24px 16px;
  }
  .form-container .form-details {
    font-size: 18px;
  }
  .form-container .input {
    min-height: 38px;
    font-size: 0.85rem;
    padding: 0 12px;
  }
  .form-container textarea.input {
    min-height: 60px;
  }
  .form-container .btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* Get Started CTA */
  .get-started-cta {
    padding: 50px 0;
  }
  .get-started-box {
    flex-direction: column;
    text-align: center;
    padding: 0;
    gap: 24px;
  }
  .get-started-content {
    flex: unset;
    width: 100%;
  }
  .get-started-content h2 {
    font-size: 1.8rem;
  }
  .get-started-content p {
    max-width: 100%;
    font-size: 1rem;
  }
  .get-started-sketch-gif {
    flex: unset;
    width: 100%;
  }
  .get-started-sketch-gif img {
    max-height: 80px;
  }
  .btn-gen {
    padding: 8px 16px 8px 24px;
    font-size: 0.85rem;
  }
  .btn-gen .btn-svg {
    width: 18px;
    height: 18px;
  }

  /* CTA Box */
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
    gap: 20px;
  }
  .cta-content h2 {
    font-size: 1.6rem;
  }
  .cta-content p {
    font-size: 0.95rem;
  }
  .cta-sketch {
    font-size: 3rem;
    padding: 16px 20px;
  }
  .btn {
    width: 11rem;
    height: 2.8rem;
  }
  .btn strong {
    font-size: 10px;
    letter-spacing: 3px;
  }

  /* Footer */
  .footer-bottom {
    padding: 12px 16px;
  }
  .footer-bottom p {
    font-size: 0.7rem;
  }
  .footer-inner .logo .logo-img {
    height: 44px;
  }
  .footer-nav a {
    font-size: 0.75rem;
  }

  /* Mission Card */
  .mission-container {
    font-size: 16px;
  }
  .mission-logo-wrapper {
    bottom: -1.2em;
    right: -0.5em;
  }
  .mission-logo-wrapper img {
    width: 100px;
    height: 100px;
  }

  /* Book CTA Banner */
  .book-cta-banner {
    padding: 30px 0;
  }
  .book-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
    gap: 16px;
  }
  .book-cta-inner h2 {
    font-size: 1.4rem;
  }

  /* Buttons */
  .btnContainer {
    width: 140px;
    height: 52px;
  }
  .btnContainer .button {
    font-size: 14px;
  }
  .btnContainer-secondary {
    width: 160px;
    height: 56px;
  }
  .btnContainer-secondary .button {
    font-size: 15px;
  }
  .diamond-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  /* Floating Call Button */
  .float-call {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    bottom: 16px;
    right: 16px;
  }

  /* Progress Bar */
  .progress-bar {
    height: 2px;
  }

  /* 404 Page */
  .main_wrapper {
    width: 20em;
    height: 20em;
  }
  .tv {
    width: 14em;
    height: 7em;
  }
  .tv::after {
    width: 14em;
    height: 7em;
  }
  .screen {
    width: 10em;
    height: 6em;
  }
  .screenM {
    width: 10em;
    height: 6em;
  }
  .text_404 {
    column-gap: 6em;
  }
  .text_4041,
  .text_4042,
  .text_4043 {
    transform: scaleY(18) scaleX(10);
  }
  .back-home {
    bottom: 1rem;
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  /* Header */
  .logo-img {
    height: 55px !important;
  }
  .nav-links {
    gap: 8px;
  }
  .nav-links a {
    font-size: 0.7rem;
    padding: 3px 6px;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-desc {
    font-size: 0.85rem;
  }
  .hero-badge {
    font-size: 0.8rem;
  }

  /* Section Titles */
  .section-title {
    font-size: 1.4rem;
  }

  /* Luminous Cards - 4 becomes 1 */
  .services-snippet-grid {
    gap: 12px;
  }
  .luminous-card-container {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .luminous-card {
    height: 16rem;
  }
  .luminous-service-name {
    top: -8rem;
    font-size: 1rem;
  }
  .luminous-description {
    font-size: 0.7rem;
  }

  /* Notebook Pages - 4 becomes 1 */
  .why-grid-row {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .notebook-page {
    min-height: 160px;
    padding: 14px 12px 14px 34px;
  }
  .notebook-page .spiral-binding {
    width: 18px;
  }
  .notebook-page .spiral-binding .hole {
    width: 8px;
    height: 8px;
  }
  .notebook-page .page-content i {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    padding: 8px;
    margin-bottom: 0.6rem;
  }
  .notebook-page .page-content h4 {
    font-size: 0.8rem;
    padding-bottom: 4px;
  }
  .notebook-page .page-content p {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  /* Pixar Cards - 4 becomes 1 */
  .why-grid-row {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  /* Service Cards */
  .svc-row {
    min-height: 180px;
  }
  .svc-row.open {
    min-height: 260px;
  }
  .svc-row-header h3 {
    font-size: 1.1rem;
  }
  .svc-row-desc {
    font-size: 0.75rem;
  }
  .svc-row-num {
    font-size: 1.8rem;
  }
  .svc-row-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  /* Team - 4 becomes 1 */
  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  /* Electric Cards - 4 becomes 1 */
  .electric-row-group {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .card-container {
    min-height: 240px;
  }
  .card-container .title {
    font-size: 16px;
  }
  .card-container .description {
    font-size: 12px;
  }
  .card-container .electric-icon {
    width: 38px !important;
    height: 38px !important;
  }
  .card-container .electric-icon i {
    font-size: 1rem !important;
  }

  /* Brand Building Glass Cards */
  .bb-strategy-grid,
  .bb-process-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .bb-glass-card {
    min-height: 200px;
    padding: 16px 12px;
  }

  /* Contact Form */
  .form-container .form-panel {
    padding: 16px 12px;
    gap: 12px;
  }
  .form-container .form-details {
    font-size: 16px;
  }
  .form-container .input {
    min-height: 34px;
    font-size: 0.8rem;
  }
  .form-container .btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  /* Get Started */
  .get-started-content h2 {
    font-size: 1.4rem;
  }
  .get-started-content p {
    font-size: 0.85rem;
  }
  .get-started-sketch-gif img {
    max-height: 60px;
  }

  /* Buttons */
  .btnContainer {
    width: 120px;
    height: 46px;
  }
  .btnContainer .button {
    font-size: 12px;
  }
  .btnContainer .button i {
    font-size: 11px;
  }
  .btnContainer-secondary {
    width: 140px;
    height: 50px;
  }
  .btnContainer-secondary .button {
    font-size: 13px;
  }
  .glass-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .glass-btn svg {
    width: 16px;
    height: 16px;
  }

  /* Footer */
  .footer-inner .logo .logo-img {
    height: 36px;
  }
  .footer-nav {
    gap: 10px;
  }
  .footer-nav a {
    font-size: 0.65rem;
  }
  .footer-socials a {
    font-size: 1rem;
  }
  .footer-bottom p {
    font-size: 0.6rem;
  }

  /* Floating Call */
  .float-call {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    bottom: 12px;
    right: 12px;
  }

  /* 404 Page */
  .main_wrapper {
    width: 16em;
    height: 16em;
  }
  .tv {
    width: 11em;
    height: 5.5em;
  }
  .tv::after {
    width: 11em;
    height: 5.5em;
  }
  .screen {
    width: 8em;
    height: 4.8em;
  }
  .screenM {
    width: 8em;
    height: 4.8em;
  }
  .text_404 {
    column-gap: 4em;
  }
  .text_4041,
  .text_4042,
  .text_4043 {
    transform: scaleY(15) scaleX(8);
  }
  .back-home {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  /* Mission Card */
  .mission-logo-wrapper img {
    width: 70px;
    height: 70px;
  }
}

/* Extra small devices (375px and below) */
@media (max-width: 375px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .notebook-page .page-content h4 {
    font-size: 0.75rem;
  }
  .notebook-page .page-content p {
    font-size: 0.65rem;
  }
  .card-container .title {
    font-size: 15px;
  }
  .card-container .description {
    font-size: 11px;
  }
  .luminous-card {
    height: 14rem;
  }
  .luminous-service-name {
    top: -7rem;
    font-size: 0.9rem;
  }
  .nav-links a {
    font-size: 0.6rem;
    padding: 2px 4px;
  }
  .logo-img {
    height: 45px !important;
  }
}
/* ============================================
   TEAM GRID - 5 IN A ROW
   ============================================ */

.team-grid-5 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  justify-items: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: 0;
  padding: 40px 0 0;
}

.team-grid-5 .team-member {
  background: #fff;
  color: #111;
  padding: 40px 16px 30px;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  border: 2px solid #111;
  border-top: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-grid-5 .team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.team-grid-5 .team-member .team-photo-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #f4f4f4;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #ccc;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.team-grid-5 .team-member .team-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-grid-5 .team-member .melt-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.team-grid-5 .team-member h4 {
  margin: 8px 0 4px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  position: relative;
  z-index: 2;
}

.team-grid-5 .team-member span {
  font-size: 0.82rem;
  color: #666;
  font-weight: 500;
  display: block;
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 1024px) {
  .team-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .team-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px 0 0;
  }
  .team-grid-5 .team-member {
    padding: 30px 12px 20px;
  }
  .team-grid-5 .team-member .team-photo-placeholder {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  .team-grid-5 .team-member h4 {
    font-size: 1rem;
  }
  .team-grid-5 .team-member span {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .team-grid-5 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .team-grid-5 .team-member {
    padding: 20px 10px 16px;
  }
  .team-grid-5 .team-member .team-photo-placeholder {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }
  .team-grid-5 .team-member h4 {
    font-size: 0.85rem;
  }
  .team-grid-5 .team-member span {
    font-size: 0.65rem;
  }
}

@media (max-width: 375px) {
  .team-grid-5 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .team-grid-5 .team-member .team-photo-placeholder {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
  }
  .team-grid-5 .team-member h4 {
    font-size: 0.75rem;
  }
  .team-grid-5 .team-member span {
    font-size: 0.6rem;
  }
}
/* ============================================
   COMPLETE MOBILE VIEW FIXES - ALL PAGES
   ============================================ */

/* ============================================
   1. GLOBAL MOBILE OVERRIDES
   ============================================ */

/* Small devices (phones, 480px and below) */
@media (max-width: 480px) {
  
  /* ---- CONTAINER PADDING ---- */
  .container {
    padding: 0 12px !important;
  }

  /* ---- HEADER / NAVBAR ---- */
  .site-header .navbar {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 8px 12px !important;
    gap: 8px;
  }
  
  .logo {
    margin-top: -25px !important;
    margin-bottom: 5px !important;
  }
  
  .logo-img {
    height: 50px !important;
  }
  
  .nav-links {
    gap: 6px !important;
    justify-content: center;
    width: 100%;
  }
  
  .nav-links a {
    font-size: 0.6rem !important;
    padding: 3px 6px !important;
  }

  /* ---- HERO SECTION ---- */
  .hero-section {
    padding: 50px 0 30px !important;
    min-height: auto !important;
  }
  
  .hero-content h1 {
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
  }
  
  .hero-desc {
    font-size: 0.85rem !important;
    max-width: 100% !important;
  }
  
  .hero-badge {
    font-size: 0.8rem !important;
  }
  
  .hero-btns {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }
  
  .hero-btns .btn-wrapper {
    width: 100% !important;
    max-width: 220px !important;
  }
  
  .hero-stats {
    gap: 16px !important;
    margin-top: 24px !important;
  }
  
  .stat-item h3 {
    font-size: 1.2rem !important;
  }
  
  .stat-item p {
    font-size: 0.6rem !important;
  }

  /* ---- SECTION TITLES ---- */
  .section-title {
    font-size: 1.3rem !important;
    margin-bottom: 24px !important;
  }
  
  .section-title:after {
    width: 40px !important;
  }
  
  .section-sub {
    font-size: 0.85rem !important;
    margin-top: -20px !important;
    margin-bottom: 24px !important;
  }

  /* ---- BUTTONS ---- */
  .btn-primary,
  .btn-outline {
    padding: 10px 18px !important;
    font-size: 0.8rem !important;
  }
  
  .btn-glass {
    padding: 12px 18px !important;
    font-size: 0.85rem !important;
  }

  /* ---- FOOTER ---- */
  .footer-inner {
    flex-direction: column !important;
    padding: 16px !important;
    gap: 12px !important;
  }
  
  .footer-inner .logo-img {
    height: 36px !important;
  }
  
  .footer-nav {
    gap: 8px !important;
    justify-content: center !important;
  }
  
  .footer-nav a {
    font-size: 0.6rem !important;
  }
  
  .footer-socials a {
    font-size: 0.9rem !important;
  }
  
  .footer-bottom {
    padding: 10px 12px !important;
  }
  
  .footer-bottom p {
    font-size: 0.55rem !important;
    line-height: 1.6 !important;
  }
  
  .footer-tagline {
    font-size: 0.7rem !important;
  }

  /* ---- FLOATING CALL BUTTON ---- */
  .float-call {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
    bottom: 12px !important;
    right: 12px !important;
  }

  /* ---- PROGRESS BAR ---- */
  .progress-bar {
    height: 2px !important;
  }
}


/* ============================================
   2. ABOUT PAGE MOBILE FIXES
   ============================================ */

@media (max-width: 480px) {
  
  .about-hero {
    padding: 40px 0 30px !important;
  }
  
  .about-main h1 {
    font-size: 1.8rem !important;
  }
  
  .about-main p {
    font-size: 0.85rem !important;
    max-width: 100% !important;
  }
  
  .about-side {
    padding: 16px !important;
  }
  
  /* Mission Card */
  .mission-container {
    font-size: 14px !important;
  }
  
  .mission-logo-wrapper img {
    width: 60px !important;
    height: 60px !important;
  }
  
  .mission-inner-text .m-quote {
    font-size: 0.9em !important;
  }
  
  .mission-inner-text .m-desc {
    font-size: 0.45em !important;
  }
  
  .mission-inner-text .m-details p {
    font-size: 0.4em !important;
  }

  /* Founder Section */
  .founder-section {
    padding: 30px 0 !important;
  }
  
  .parent {
    padding: 10px !important;
  }
  
  .card {
    padding-top: 30px !important;
  }
  
  .content-box {
    padding: 25px 12px 16px 12px !important;
  }
  
  .content-box .card-title {
    font-size: 18px !important;
  }
  
  .content-box .card-content {
    font-size: 13px !important;
  }
  
  .date-box {
    width: 50px !important;
    height: 50px !important;
    top: 12px !important;
    right: 12px !important;
    padding: 4px !important;
  }
  
  .date-box .date {
    font-size: 16px !important;
  }
  
  .date-box .month {
    font-size: 9px !important;
  }
  
  .founder-image-placeholder {
    width: 80px !important;
    height: 80px !important;
    font-size: 2rem !important;
  }

  /* Team Section */
  .team-section {
    padding: 30px 0 !important;
  }
  
  .team-water {
    padding: 16px 12px !important;
  }
  
  .team-grid-5 {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 10px 0 0 !important;
  }
  
  .team-grid-5 .team-member {
    padding: 16px 8px 14px !important;
  }
  
  .team-grid-5 .team-member .team-photo-placeholder {
    width: 55px !important;
    height: 55px !important;
    font-size: 1.3rem !important;
  }
  
  .team-grid-5 .team-member h4 {
    font-size: 0.75rem !important;
  }
  
  .team-grid-5 .team-member span {
    font-size: 0.55rem !important;
  }

  /* Mission & Vision */
  .what-we-do {
    padding: 30px 0 !important;
  }
  
  .services-mini-grid {
    gap: 16px !important;
  }
  
  .curved-card {
    padding: 1rem !important;
  }
  
  .curved-card h3 {
    font-size: 1rem !important;
  }
  
  .curved-card p {
    font-size: 0.8rem !important;
  }
  
  .curved-card i {
    font-size: 1.8rem !important;
  }

  /* Timeline */
  .timeline-section {
    padding: 30px 0 !important;
  }
  
  .timeline-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  .timeline-card {
    padding: 14px 12px !important;
  }
  
  .timeline-card .year {
    font-size: 1.3rem !important;
  }
  
  .timeline-card h4 {
    font-size: 0.9rem !important;
  }
  
  .timeline-card p {
    font-size: 0.8rem !important;
  }

  /* Notebook Pages - Why Choose */
  .why-choose {
    padding: 30px 0 !important;
  }
  
  .why-choose .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  .why-grid-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  .notebook-page {
    min-height: 140px !important;
    padding: 12px 10px 12px 30px !important;
  }
  
  .notebook-page .spiral-binding {
    width: 16px !important;
    top: 8px !important;
    bottom: 8px !important;
  }
  
  .notebook-page .spiral-binding .hole {
    width: 7px !important;
    height: 7px !important;
  }
  
  .notebook-page .spiral-binding .hole::after {
    width: 4px !important;
    height: 7px !important;
    top: -1px !important;
  }
  
  .notebook-page .page-content i {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.9rem !important;
    padding: 6px !important;
    margin-bottom: 0.5rem !important;
  }
  
  .notebook-page .page-content h4 {
    font-size: 0.75rem !important;
    padding-bottom: 4px !important;
  }
  
  .notebook-page .page-content p {
    font-size: 0.65rem !important;
    line-height: 1.4 !important;
  }

  /* CTA Section */
  .contact-cta {
    padding: 30px 0 !important;
  }
  
  .cta-box {
    flex-direction: column !important;
    padding: 20px 16px !important;
    gap: 16px !important;
    text-align: center !important;
  }
  
  .cta-content h2 {
    font-size: 1.3rem !important;
  }
  
  .cta-content p {
    font-size: 0.85rem !important;
  }
  
  .cta-sketch {
    font-size: 2.5rem !important;
    padding: 12px 16px !important;
  }
  
  .btn {
    width: 9rem !important;
    height: 2.5rem !important;
  }
  
  .btn strong {
    font-size: 9px !important;
    letter-spacing: 2px !important;
  }
}


/* ============================================
   3. SERVICES PAGE MOBILE FIXES
   ============================================ */

@media (max-width: 480px) {
  
  .services-hero {
    padding: 40px 0 30px !important;
  }
  
  .services-hero-content h1 {
    font-size: 2rem !important;
  }
  
  .services-hero-content p {
    font-size: 0.85rem !important;
    max-width: 100% !important;
  }
  
  .services-hero-image img {
    max-width: 100% !important;
  }
  
  .services-full-grid {
    padding: 30px 0 !important;
  }
  
  /* Service Cards - Brush Stroke */
  .svc-row-group {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  .svc-row-group.centered .svc-row {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  .svc-row {
    min-height: 180px !important;
    border-radius: 12px !important;
  }
  
  .svc-row.open {
    min-height: 260px !important;
  }
  
  .svc-row-header {
    padding: 14px 14px 0 !important;
    gap: 6px !important;
  }
  
  .svc-row-header h3 {
    font-size: 1.1rem !important;
  }
  
  .svc-row-desc {
    font-size: 0.75rem !important;
  }
  
  .svc-row-num {
    font-size: 1.8rem !important;
  }
  
  .svc-row-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 1rem !important;
  }
  
  .svc-row-body {
    padding: 0 14px !important;
  }
  
  .svc-row.open .svc-row-body {
    padding: 10px 14px 14px !important;
    max-height: 300px !important;
  }
  
  .svc-tags-list {
    gap: 4px !important;
  }
  
  .svc-tags-list li {
    font-size: 0.7rem !important;
    padding: 2px 8px !important;
  }
  
  .svc-switch {
    width: 40px !important;
    height: 20px !important;
  }
  
  .svc-switch-knob {
    width: 14px !important;
    height: 14px !important;
  }
  
  .svc-row.open .svc-switch-knob {
    transform: translateX(20px) !important;
  }
  
  .svc-row-toggle {
    padding: 12px 14px !important;
  }
  
  .svc-learn-more {
    font-size: 0.85rem !important;
  }

  /* Quote */
  .services-quote {
    font-size: 1.1rem !important;
    padding: 16px 12px !important;
  }

  /* Pixar Cards - 4 becomes 1 */
  .why-grid-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  .pixar-card {
    padding: 0.6rem !important;
  }
  
  .pixar-card .card-avatar {
    width: 32px !important;
    height: 32px !important;
  }
  
  .pixar-card .card-avatar i {
    font-size: 0.8rem !important;
  }
  
  .pixar-card .card-username {
    font-size: 0.75rem !important;
  }
  
  .pixar-card .card-caption {
    font-size: 0.65rem !important;
  }
  
  .pixar-card .heart-icon {
    width: 18px !important;
    height: 18px !important;
  }
  
  .pixar-card .like-count {
    font-size: 0.7rem !important;
  }

  /* Book CTA Banner */
  .book-cta-banner {
    padding: 20px 0 !important;
  }
  
  .book-cta-inner {
    flex-direction: column !important;
    padding: 16px !important;
    gap: 12px !important;
    text-align: center !important;
  }
  
  .book-cta-inner h2 {
    font-size: 1.2rem !important;
  }
  
  .book-cta-inner p {
    font-size: 0.8rem !important;
  }
}


/* ============================================
   4. BOOK ONLINE PAGE MOBILE FIXES
   ============================================ */

@media (max-width: 480px) {
  
  .book-hero {
    padding: 30px 0 20px !important;
  }
  
  .book-hero-inner h1 {
    font-size: 1.8rem !important;
  }
  
  .book-hero-inner p {
    font-size: 0.85rem !important;
  }
  
  .book-listing-electric {
    padding: 20px 0 30px !important;
  }
  
  .electric-row-group {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  .electric-row-group.centered {
    max-width: 100% !important;
  }
  
  .card-container {
    min-height: 220px !important;
    border-radius: 16px !important;
  }
  
  .card-container .content-container {
    padding: 14px 12px !important;
  }
  
  .card-container .content-top {
    padding: 14px 12px 6px !important;
  }
  
  .card-container .content-bottom {
    padding: 12px 12px 12px !important;
  }
  
  .card-container .title {
    font-size: 14px !important;
  }
  
  .card-container .description {
    font-size: 11px !important;
    margin-bottom: 10px !important;
  }
  
  .card-container .electric-icon {
    width: 36px !important;
    height: 36px !important;
  }
  
  .card-container .electric-icon i {
    font-size: 1rem !important;
  }
  
  .card-container .electric-tags {
    gap: 4px !important;
    margin-bottom: 12px !important;
  }
  
  .card-container .electric-tags span {
    font-size: 8px !important;
    padding: 2px 6px !important;
  }
  
  .card-container .diamond-btn {
    padding: 6px 12px !important;
    font-size: 0.65rem !important;
  }
  
  .card-container .diamond-btn svg {
    width: 12px !important;
    height: 12px !important;
  }
  
  .card-container .divider {
    margin: 0 12px !important;
  }
  
  .book-disclaimer {
    font-size: 0.65rem !important;
    margin-top: 20px !important;
  }
}


/* ============================================
   5. BRAND BUILDING PAGE MOBILE FIXES
   ============================================ */

@media (max-width: 480px) {
  
  .bb-hero {
    padding: 40px 0 30px !important;
  }
  
  .bb-hero-inner h1 {
    font-size: 1.8rem !important;
  }
  
  .bb-hero-inner p {
    font-size: 0.85rem !important;
  }
  
  .bb-strategy {
    padding: 30px 0 !important;
  }
  
  .bb-strategy-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  .bb-process {
    padding: 30px 0 !important;
  }
  
  .bb-process-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  .bb-process-sub {
    font-size: 0.85rem !important;
    margin-top: -20px !important;
    margin-bottom: 24px !important;
  }
  
  .bb-glass-card {
    min-height: 180px !important;
    padding: 16px 12px !important;
  }
  
  .glass-content h3 {
    font-size: 0.95rem !important;
  }
  
  .glass-content p {
    font-size: 0.75rem !important;
    max-width: 100% !important;
  }
  
  .glass-icon-bg {
    width: 44px !important;
    height: 44px !important;
  }
  
  .glass-icon-bg i {
    font-size: 1.1rem !important;
  }
  
  .glass-step-number {
    font-size: 2.2rem !important;
  }
  
  .glass-divider {
    width: 30px !important;
    margin: 10px auto 0 !important;
  }
  
  .glass-dots span {
    width: 4px !important;
    height: 4px !important;
  }
  
  .bb-cta {
    padding: 30px 0 !important;
  }
  
  .bb-cta-inner {
    flex-direction: column !important;
    padding: 16px !important;
    gap: 16px !important;
    text-align: center !important;
  }
  
  .bb-cta-text h2 {
    font-size: 1.2rem !important;
    max-width: 100% !important;
  }
  
  .bb-cta-text p {
    font-size: 0.85rem !important;
  }
  
  .glass-btn {
    padding: 8px 14px !important;
    font-size: 11px !important;
    gap: 6px !important;
  }
  
  .glass-btn svg {
    width: 16px !important;
    height: 16px !important;
  }
}


/* ============================================
   6. BOOKING PAGE MOBILE FIXES
   ============================================ */

@media (max-width: 480px) {
  
  .booking-page-wrapper {
    min-height: 100vh !important;
  }
  
  .booking-hero {
    padding: 30px 0 20px !important;
  }
  
  .booking-hero-inner .logo-img {
    height: 55px !important;
  }
  
  .booking-hero-inner h1 {
    font-size: 1.6rem !important;
  }
  
  .booking-hero-inner p {
    font-size: 0.8rem !important;
  }
  
  .booking-form-section {
    padding: 20px 0 30px !important;
  }
  
  .booking-form-wrapper {
    padding: 18px 12px !important;
    margin: 0 8px !important;
    border-radius: 16px !important;
  }
  
  .booking-form-wrapper .form-title {
    font-size: 1.2rem !important;
  }
  
  .booking-form-wrapper .form-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 20px !important;
  }
  
  .booking-form .form-group {
    margin-bottom: 12px !important;
  }
  
  .booking-form label {
    font-size: 0.65rem !important;
  }
  
  .booking-form input,
  .booking-form textarea {
    padding: 10px 12px !important;
    font-size: 0.8rem !important;
    border-radius: 8px !important;
  }
  
  .booking-form .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  .booking-form textarea {
    min-height: 80px !important;
  }
  
  .booking-form .submit-btn {
    padding: 12px 16px !important;
    font-size: 0.85rem !important;
  }
  
  .booking-form .security-text {
    font-size: 0.6rem !important;
    margin-top: 10px !important;
  }

  /* Service Buttons */
  .service-buttons-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
  }
  
  .service-btn {
    padding: 8px 10px !important;
    font-size: 0.7rem !important;
    border-radius: 8px !important;
  }
  
  .service-btn .icon {
    font-size: 0.8rem !important;
  }
  
  .service-btn.selected::after {
    width: 16px !important;
    height: 16px !important;
    font-size: 9px !important;
    top: -5px !important;
    right: -5px !important;
  }
  
  .selected-count {
    font-size: 0.65rem !important;
    padding: 4px 12px !important;
    margin-top: 6px !important;
  }
  
  .diamond-btn {
    padding: 8px 16px !important;
    font-size: 0.75rem !important;
  }

  /* Success Message */
  .success-message {
    padding: 20px 12px !important;
  }
  
  .success-message i {
    font-size: 2.5rem !important;
  }
  
  .success-message h3 {
    font-size: 1.3rem !important;
  }
  
  .success-message p {
    font-size: 0.8rem !important;
  }
  
  .stars {
    display: block !important;
  }
  
  .nebula-1,
  .nebula-2 {
    width: 150px !important;
    height: 150px !important;
  }
}


/* ============================================
   7. CONTACT PAGE MOBILE FIXES
   ============================================ */

@media (max-width: 480px) {
  
  .contact-hero {
    padding: 30px 0 !important;
  }
  
  .contact-info-col h1 {
    font-size: 1.8rem !important;
  }
  
  .contact-info-col p {
    font-size: 0.85rem !important;
  }
  
  .contact-detail strong {
    font-size: 0.8rem !important;
  }
  
  .contact-detail p,
  .contact-detail a {
    font-size: 0.8rem !important;
  }
  
  .contact-socials a {
    font-size: 1rem !important;
  }
  
  .contact-form-col {
    padding: 0 !important;
  }
  
  .form-container .form-panel {
    padding: 18px 14px !important;
    gap: 12px !important;
  }
  
  .form-container .form-details {
    font-size: 16px !important;
  }
  
  .form-container .input {
    min-height: 34px !important;
    font-size: 0.8rem !important;
    padding: 0 10px !important;
  }
  
  .form-container textarea.input {
    min-height: 60px !important;
  }
  
  .form-container .btn {
    padding: 10px 16px !important;
    font-size: 13px !important;
  }
}


/* ============================================
   8. INDEX PAGE MOBILE FIXES
   ============================================ */

@media (max-width: 480px) {
  
  /* Luminous Cards - 4+3+2 becomes 1+1+1 */
  .services-snippet {
    padding: 30px 0 !important;
  }
  
  .services-snippet-grid {
    gap: 12px !important;
  }
  
  .luminous-card-container {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  .luminous-card {
    height: 14rem !important;
    max-width: 100% !important;
    padding: 0.6rem !important;
    border-radius: 1.4rem !important;
  }
  
  .luminous-service-name {
    top: -6rem !important;
    font-size: 0.9rem !important;
  }
  
  .luminous-description {
    font-size: 0.65rem !important;
    max-width: 60% !important;
  }
  
  .luminous-toggle {
    width: 3.5rem !important;
    height: 1.5rem !important;
  }
  
  .luminous-handle {
    width: 1rem !important;
    height: 1rem !important;
    left: 0.3rem !important;
  }
  
  .luminous-toggle-input:checked ~ .luminous-content .luminous-toggle .luminous-handle {
    transform: translateX(1.2rem) !important;
  }

  /* Get Started CTA */
  .get-started-cta {
    padding: 30px 0 !important;
  }
  
  .get-started-content h2 {
    font-size: 1.4rem !important;
  }
  
  .get-started-content p {
    font-size: 0.8rem !important;
    max-width: 100% !important;
  }
  
  .get-started-sketch-gif img {
    max-height: 60px !important;
  }
  
  .btn-gen {
    padding: 6px 12px 6px 18px !important;
    font-size: 0.75rem !important;
  }
  
  .btn-gen .btn-svg {
    width: 16px !important;
    height: 16px !important;
  }
}


/* ============================================
   9. EXTRA SMALL DEVICES (375px and below)
   ============================================ */

@media (max-width: 375px) {
  
  .hero-content h1 {
    font-size: 1.4rem !important;
  }
  
  .section-title {
    font-size: 1.1rem !important;
  }
  
  .nav-links a {
    font-size: 0.5rem !important;
    padding: 2px 4px !important;
  }
  
  .logo-img {
    height: 40px !important;
  }
  
  .notebook-page .page-content h4 {
    font-size: 0.65rem !important;
  }
  
  .notebook-page .page-content p {
    font-size: 0.55rem !important;
  }
  
  .card-container .title {
    font-size: 12px !important;
  }
  
  .card-container .description {
    font-size: 10px !important;
  }
  
  .luminous-card {
    height: 12rem !important;
  }
  
  .luminous-service-name {
    top: -6rem !important;
    font-size: 0.8rem !important;
  }
  
  .team-grid-5 .team-member .team-photo-placeholder {
    width: 45px !important;
    height: 45px !important;
    font-size: 1rem !important;
  }
  
  .team-grid-5 .team-member h4 {
    font-size: 0.65rem !important;
  }
  
  .team-grid-5 .team-member span {
    font-size: 0.5rem !important;
  }
  
  .service-btn {
    font-size: 0.6rem !important;
    padding: 6px 8px !important;
  }
}


/* ============================================
   10. TABLET FIXES (481px - 768px)
   ============================================ */

@media (min-width: 481px) and (max-width: 768px) {
  
  .container {
    padding: 0 20px !important;
  }
  
  .hero-content h1 {
    font-size: 2.2rem !important;
  }
  
  .section-title {
    font-size: 1.6rem !important;
  }
  
  .team-grid-5 {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }
  
  .team-grid-5 .team-member .team-photo-placeholder {
    width: 80px !important;
    height: 80px !important;
  }
  
  .why-grid-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  .electric-row-group {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  .bb-strategy-grid,
  .bb-process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  .services-snippet-grid {
    gap: 16px !important;
  }
  
  .luminous-card-container {
    flex: 0 0 calc(50% - 16px) !important;
    max-width: calc(50% - 16px) !important;
  }
  
  .svc-row-group {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  .svc-row-group.centered .svc-row {
    flex: 0 0 calc(50% - 16px) !important;
    max-width: calc(50% - 16px) !important;
  }
  
  .service-buttons-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
}
/* ============================================
   HAMBURGER MENU - MOBILE NAVIGATION FIX
   ============================================ */

/* Hide checkbox */
.nav-toggle {
  display: none;
}

/* Hamburger icon */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer; 
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #1a1d23;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger animation when checked */
.nav-toggle:checked ~ .nav-hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle:checked ~ .nav-hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle:checked ~ .nav-hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Dropdown */
@media (max-width: 768px) {
  
  .nav-hamburger {
    display: flex !important;
  }
  
  .navbar {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8px 16px !important;
    flex-wrap: nowrap !important;
  }
  
  .logo {
    margin-top: -5px !important;
    margin-bottom: 0 !important;
  }
  
  .logo-img {
    height: 50px !important;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    gap: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
    border-radius: 0 0 12px 12px;
  }
  
  .nav-toggle:checked ~ .nav-links {
    max-height: 500px;
    padding: 12px 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .nav-links a {
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
    font-weight: 500;
    color: #1a1d23;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
    position: relative;
  }
  
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .nav-links a:hover {
    background: rgba(0, 0, 0, 0.04);
    padding-left: 30px !important;
  }
  
  .nav-links a::after {
    display: none !important;
  }
  
  .nav-links a.active {
    background: rgba(0, 0, 0, 0.04);
    color: #000;
    font-weight: 600;
  }
  
  .nav-links a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: #1a1d23;
    border-radius: 0 3px 3px 0;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-hamburger {
    display: none !important;
  }
  
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    position: static !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    gap: 20px !important;
  }
  
  .nav-links a {
    padding: 4px 0 !important;
    font-size: 0.85rem !important;
    border-bottom: none !important;
    text-align: center !important;
    width: auto !important;
  }
  
  .nav-links a:hover {
    padding-left: 0 !important;
    background: transparent !important;
  }
  
  .nav-links a.active::before {
    display: none !important;
  }
  
  .nav-links a::after {
    display: block !important;
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .nav-hamburger {
    display: none !important;
  }
  
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    position: static !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    gap: 28px !important;
  }
  
  .nav-links a {
    padding: 4px 0 !important;
    font-size: 0.9rem !important;
    border-bottom: none !important;
    text-align: center !important;
    width: auto !important;
  }
  
  .nav-links a:hover {
    padding-left: 0 !important;
    background: transparent !important;
  }
  
  .nav-links a.active::before {
    display: none !important;
  }
  
  .nav-links a::after {
    display: block !important;
  }
}

/* Site header sticky fix */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
}
