/* Variables - GISUGO Modern Dark Theme */
:root {
  --primary-color: #1e2533;
  --primary-dark: #151a24;
  --secondary-color: #f0f4f8;
  --accent-color: #10b981;
  --accent-dark: #059669;
  --accent-glow: rgba(16, 185, 129, 0.3);
  --background-color: #1a202c;
  --background-gradient: linear-gradient(180deg, #1a202c 0%, #242936 50%, #1e2533 100%);
  --card-background: #2d3748;
  --card-hover: #3d4a5c;
  --text-primary: #f0f4f8;
  --text-secondary: #9ca3af;
  --border-subtle: rgba(255, 255, 255, 0.1);
  --font-family: 'Arial', sans-serif;
  --container-max-width: 1200px;
  
  /* Spacing and sizing variables */
  --header-gap: clamp(0.66rem, 1.9vw, 0.9rem);
  --logo-size-ref: clamp(58px, 9.5vw, 96px);
  --header-height: calc(var(--logo-size-ref) + (2 * var(--header-gap)));
  --borderline-height: 6px;
}

/* Optional fine-tune: slightly smaller gap on ultra-small phones */
@media (max-width: 380px) {
  :root {
    --header-gap: clamp(0.6rem, 1.8vw, 0.85rem);
  }
}

/* Tighten header and slightly enlarge items on small phones (<=491px) */
@media (max-width: 491px) {
  :root {
    --header-gap: clamp(0.45rem, 1.2vw, 0.7rem);
    --header-height: calc(var(--logo-size-ref) + (var(--header-gap) * 1.4));
  }
  .header__title {
    font-size: clamp(1.72rem, 7.3vw, 3rem);
  }
  .header__subtitle {
    font-size: clamp(0.94rem, 3.2vw, 1.12rem);
  }
  .header__menu img {
    width: clamp(36px, 6.2vw, 48px);
    height: clamp(36px, 6.2vw, 48px);
  }
  .header__menu-caption {
    font-size: clamp(calc(0.95rem - 1px), calc(3vw - 1px), calc(1.08rem - 1px));
  }
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  -webkit-tap-highlight-color: transparent; /* Disable tap highlight on mobile */
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
  display: none;
}

/* Ensure all interactive elements have tap highlight disabled */
a, button, [role="button"], .header__menu, .service-card, .menu-list a, .footer a {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

html {
  width: 100%;
  overflow-x: hidden;
  background-color: #1a202c; /* Fallback for overscroll */
  overscroll-behavior-x: none; /* Prevent horizontal bounce */
  overscroll-behavior-y: auto; /* Allow pull-to-refresh */
}

body {
  font-family: var(--font-family);
  background: var(--background-gradient);
  background-color: #1a202c; /* Fallback for overscroll */
  background-attachment: fixed;
  line-height: 1.6;
  padding-top: 0;
  overscroll-behavior-x: none; /* Prevent horizontal bounce */
  overscroll-behavior-y: auto; /* Allow pull-to-refresh */
  width: 100%;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Ensure all sections don't overflow */
section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Enhanced Flexbox Service Grid - Constrained to 3 per row max */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(0.5rem, 2vw, 1.5rem);
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
 
/* Enhanced Service Card - Modern Dark Theme */
.service-card {
  background-color: transparent;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 auto;
  width: clamp(90px, 28vw, 180px);
  min-width: 90px;
  max-width: 180px;
  margin: 0;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  filter: brightness(1.1);
}

.service-card__image-container {
  background: linear-gradient(145deg, #d4d4d4 0%, #c0c0c0 100%);
  border-radius: 12px;
  padding: clamp(0.4rem, 1.2vw, 0.6rem);
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid var(--border-subtle);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-card__image-container {
  background: linear-gradient(145deg, #e0e0e0 0%, #d4d4d4 100%);
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.service-card__image {
  width: 100%;
  max-width: 100px;
  height: clamp(70px, 12vw, 100px);
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-card__title {
  color: var(--text-primary);
  font-weight: 600;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  margin: 0;
  line-height: 1.2;
  text-decoration: none;
  word-wrap: break-word;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.service-card:hover .service-card__title {
  color: var(--accent-color);
}

/* Remove underlines from any links inside service cards */
.service-card a,
.service-card a:hover,
.service-card a:visited,
.service-card a:active {
  text-decoration: none;
  color: var(--text-primary);
}

/* Accent Line - Metallic Emerald Green with Shimmer */
.accent-line1 {
  margin-top: 0;
  height: var(--borderline-height);
  background: 
    linear-gradient(90deg, 
      transparent 0%,
      rgba(255, 255, 255, 0.4) 45%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0.4) 55%,
      transparent 100%
    ),
    linear-gradient(180deg, 
      #6ee7b7 0%,
      #34d399 15%,
      #10b981 35%,
      #059669 55%,
      #047857 75%,
      #065f46 100%
    );
  background-size: 200% 100%, 100% 100%;
  background-position: -100% 0, 0 0;
  width: 100%;
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.6), 
              inset 0 1px 0 rgba(255, 255, 255, 0.5),
              inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  animation: metalShimmer 4s ease-in-out infinite;
}

@keyframes metalShimmer {
  0%, 100% {
    background-position: -100% 0, 0 0;
  }
  50% {
    background-position: 200% 0, 0 0;
  }
}

/* First accent line in header */
.header-wrapper .accent-line1 {
  display: block;
}

/* Footer - Modern Dark */
.footer {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-secondary);
  text-align: center;
  padding: clamp(1rem, 3vw, 1.5rem);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  border-top: 1px solid var(--border-subtle);
  margin-top: 2rem;
}

.footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* Invisible backdrop that closes the menu on outside tap (iOS Safari fix) */
.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999998;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

.menu-backdrop.active {
  display: block;
}

/* Menu Overlay - Graphic Card Grid */
.menu-overlay {
  position: fixed;
  top: calc(var(--header-height) + var(--borderline-height));
  right: clamp(6px, 2vw, 10px);
  width: min(290px, calc(100vw - 20px));
  height: auto;
  background: linear-gradient(160deg, #1e2533 0%, #151c28 100%);
  display: none;
  z-index: 999999;
  border: 2px solid var(--accent-color);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 24px var(--accent-glow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
  animation: slideDown 0.4s cubic-bezier(.77,0,.18,1);
}

@keyframes slideDown {
  from { 
    opacity: 0; 
    transform: translateY(-15px) scale(0.95); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

/* Grid container replacing the old ul */
.home-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(6px, 2vw, 10px);
  padding: clamp(10px, 3vw, 16px);
}

/* Individual nav card */
.home-menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 2vw, 10px);
  padding: clamp(12px, 4vw, 20px) clamp(6px, 2vw, 10px) clamp(10px, 3vw, 16px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  min-height: clamp(80px, 22vw, 100px);
}

.home-menu-card:hover,
.home-menu-card:active {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.04);
}

.home-menu-card-icon {
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  line-height: 1;
  transition: filter 0.2s ease;
}

.home-menu-card-label {
  font-size: clamp(0.58rem, 2vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  line-height: 1.3;
}

/* Color variants — border glow on hover */
.home-menu-card[data-color="amber"]:hover  { border-color: #f59e0b; }
.home-menu-card[data-color="cyan"]:hover   { border-color: #06b6d4; }
.home-menu-card[data-color="green"]:hover  { border-color: #10b981; }
.home-menu-card[data-color="purple"]:hover { border-color: #8b5cf6; }
.home-menu-card[data-color="teal"]:hover   { border-color: #14b8a6; }
.home-menu-card[data-color="orange"]:hover { border-color: #f97316; }
.home-menu-card[data-color="blue"]:hover   { border-color: #3b82f6; }
.home-menu-card[data-color="pink"]:hover   { border-color: #ec4899; }
.home-menu-card[data-color="gray"]:hover   { border-color: #94a3b8; }

.home-menu-card[data-color="amber"]:hover  .home-menu-card-icon { filter: drop-shadow(0 0 8px #f59e0b); }
.home-menu-card[data-color="cyan"]:hover   .home-menu-card-icon { filter: drop-shadow(0 0 8px #06b6d4); }
.home-menu-card[data-color="green"]:hover  .home-menu-card-icon { filter: drop-shadow(0 0 8px #10b981); }
.home-menu-card[data-color="purple"]:hover .home-menu-card-icon { filter: drop-shadow(0 0 8px #8b5cf6); }
.home-menu-card[data-color="teal"]:hover   .home-menu-card-icon { filter: drop-shadow(0 0 8px #14b8a6); }
.home-menu-card[data-color="orange"]:hover .home-menu-card-icon { filter: drop-shadow(0 0 8px #f97316); }
.home-menu-card[data-color="blue"]:hover   .home-menu-card-icon { filter: drop-shadow(0 0 8px #3b82f6); }
.home-menu-card[data-color="pink"]:hover   .home-menu-card-icon { filter: drop-shadow(0 0 8px #ec4899); }
.home-menu-card[data-color="gray"]:hover   .home-menu-card-icon { filter: drop-shadow(0 0 8px #94a3b8); }

/* Logout row — full-width at bottom */
.home-menu-logout-row {
  padding: 0 14px 14px;
}

.home-menu-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 12px;
  color: #f87171;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.home-menu-logout-btn:hover {
  background: rgba(239, 68, 68, 0.18);
  border-color: #ef4444;
}

.home-menu-logout-btn .logout-icon {
  font-size: 1.2rem;
}

/* Full-width card spanning both columns */
.home-menu-card--full {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: center;
  gap: 14px;
  min-height: 64px;
  padding: 16px 20px;
}

.home-menu-card--full .home-menu-card-label {
  font-size: 0.78rem;
}

/* Menu section label */
.home-menu-section-label {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0 2px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 2px;
  text-align: center;
}

/* Loading state inside new grid */
.home-menu-grid .menu-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* Keep old .menu-list fallback hidden */
.menu-list {
  display: none;
}

/* --- Custom Listing Header Styles --- */
.listheader {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 110px;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  background-color: #363f4f;
}

.servicemenu {
  position: relative;
  width: 456px;
  height: 56px;
  border-style: solid;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.3);
  margin-left: -10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: #363f4f;
  border-radius: 4px 4px 0 0;
}

.servicename {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  width: 100%;
  padding-left: 16px;
  padding-right: 12px;
  line-height: 1.3;
}

.servicename > div:last-child {
  font-size: 1.0625rem;
  font-weight: 400;
  margin-right: 8px;
}

.servicemenu-overlay {
  position: absolute;
  top: 56px;
  left: 0;
  width: 456px;
  background-color: #363f4f;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: none;
  border-radius: 0 0 4px 4px;
  z-index: 10;
  display: none;
  max-height: 300px;
  overflow-y: auto;
}

.servicemenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servicemenu-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.servicemenu-list a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  line-height: 1.3;
}

.servicemenu-list a.active,
.servicemenu-list a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.headerbuttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-right: 16px;
}

.headerbutton {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  color: rgb(188, 206, 212);
  font-size: clamp(9px, 2vw, 10.5px);
  cursor: pointer;
  margin-left: 8px;
  user-select: none;
  transition: transform 0.15s ease;
}

.headerbutton:hover {
  transform: scale(1.05);
}

.headerbutton img {
  width: 64px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 2px;
  transition: transform 0.15s;
  flex-shrink: 0;
}

.headerbutton img:hover {
  transform: scale(1.12);
}

.headerbutton .posttext {
  font-size: clamp(9px, 2vw, 11px);
  line-height: 1.2;
  text-align: center;
}

.borderline {
  width: 100vw;
  left: 0;
  right: 0;
  position: absolute;
  min-width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 4px;
  background-color: #ff7bd5;
}

.accent-line2 {
  height: var(--borderline-height);
  background: 
    linear-gradient(90deg, 
      transparent 0%,
      rgba(255, 255, 255, 0.4) 45%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0.4) 55%,
      transparent 100%
    ),
    linear-gradient(180deg, 
      #6ee7b7 0%,
      #34d399 15%,
      #10b981 35%,
      #059669 55%,
      #047857 75%,
      #065f46 100%
    );
  background-size: 200% 100%, 100% 100%;
  background-position: -100% 0, 0 0;
  width: 100%;
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.6), 
              inset 0 1px 0 rgba(255, 255, 255, 0.5),
              inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  animation: metalShimmer 4s ease-in-out infinite;
  animation-delay: 2s; /* Offset from header line */
}

/* Enhanced Desktop Styles */


/* Enhanced Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) { 
  .header, .listheader {
    height: clamp(7rem, 10vh, 8rem);
    min-height: clamp(6.5rem, 9vh, 7.5rem);
  }

  .header-wrapper {
    height: clamp(7.5rem, 11vh, 8.5rem); /* Responsive tablet wrapper */
  }

  .header-spacer {
    height: clamp(7.5rem, 11vh, 8.5rem); /* Matches wrapper */
  }

  .header__logo {
    width: clamp(75px, 10vw, 88px);
    height: clamp(75px, 10vw, 88px);
  }

  .header__title {
    font-size: clamp(2.5rem, 7vw, 3rem);
  }

  .header__subtitle {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
  }

  .header__menu img {
    width: clamp(35px, 6vw, 45px);
    height: clamp(35px, 6vw, 45px);
  }

  .category-header {
    font-size: clamp(1.4rem, 4vw, 1.5rem);
  }

  .service-card {
    width: clamp(120px, 28vw, 160px);
    min-width: 120px;
    max-width: 160px;
  }

  .service-grid {
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1rem, 2vw, 1.5rem);
  }

  .service-card__title {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }

  .video-container {
    margin: 0;
  }

  .accent-line1 {
    width: 100%;
  }

  .menu-overlay {
    width: 260px;
    margin: 12px;
  }
}

/* Mobile Responsive Media Queries */
@media (max-width: 600px) {
  .header, .listheader {
    height: clamp(2.8rem, 7vh, 3.5rem);
    min-height: clamp(2.5rem, 6vh, 3rem);
  }

  .header-wrapper {
    height: clamp(3.2rem, 8vh, 4rem); /* Responsive mobile wrapper */
  }

  .header-spacer {
    height: clamp(3.2rem, 8vh, 4rem); /* Matches wrapper */
  }

  .header {
    padding: clamp(0.2rem, 1vw, 0.4rem);
  } 

  .header__logo {
    width: clamp(32px, 6vw, 40px);
    height: clamp(32px, 6vw, 40px);
  }

  .header__title {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
    line-height: 1.1;
  }

  .header__subtitle {
    font-size: clamp(0.65rem, 2.2vw, 0.8rem);
  }

  .header__menu img {
    width: clamp(22px, 4vw, 28px);
    height: clamp(22px, 4vw, 28px);
  }

  .category-header {
    font-size: clamp(1.25rem, 4vw, 1.4rem);
    padding: clamp(0.5rem, 2vw, 0.75rem);
  }

  .service-card {
    width: clamp(100px, 30vw, 125px);
    min-width: 100px;
    max-width: 125px;
  }

  .service-grid {
    gap: clamp(0.8rem, 3vw, 1.2rem);
    padding: clamp(1rem, 3vw, 1.5rem) clamp(0.2rem, 1vw, 0.6rem);
  } 

  .service-card__title {
    font-size: clamp(0.85rem, 3.2vw, 1.1rem);
  }

  .service-card__image {
    height: clamp(75px, 14vw, 100px);
  }

  .menu-overlay {
    width: 220px;
    margin: 8px;
    top: clamp(3.2rem, 8vh, 4rem); /* Matches header-wrapper height */
  }

  .menu-list a {
    font-size: clamp(0.9rem, 3vw, 1rem);
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
  }

  .servicemenu {
    width: 220px;
    height: 32px;
    border-width: 1px;
    margin-left: -5px;
  }

  .servicename {
    font-size: clamp(0.9rem, 3vw, 1rem);
    padding-left: 8px;
    padding-right: 4px;
  }

  .servicename > div:last-child {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    margin-right: 4px;
  }

  .servicemenu-overlay {
    top: 33px;
    width: 220px;
  }

  .servicemenu-list a {
    font-size: clamp(0.9rem, 3vw, 1rem);
    padding: 8px 12px;
  }

  .headerbuttons {
    margin-right: 4px;
  }

  .headerbutton {
    width: clamp(32px, 6vw, 40px);
    height: clamp(32px, 6vw, 40px);
    font-size: clamp(6px, 2vw, 7px);
  }

  .headerbutton img {
    width: clamp(20px, 4vw, 28px); 
    height: clamp(16px, 3.5vw, 24px);
  }

  .headerbutton .posttext {
    font-size: clamp(6px, 2vw, 7px);
  }
}

/* Smaller Mobile Screens (400px and below) */
@media (max-width: 400px) {
  .header, .listheader {
    height: clamp(3.2rem, 7.5vh, 3.8rem); /* Increased min height for better spacing */
    min-height: clamp(2.8rem, 6.5vh, 3.4rem);
  }

  .header-wrapper {
    height: clamp(3.6rem, 8.5vh, 4.2rem); /* Increased for better spacing */
  }

  .header-spacer {
    height: clamp(3.6rem, 8.5vh, 4.2rem); /* Matches wrapper */
  }

  .header {
    padding: clamp(0.15rem, 1vw, 0.3rem);
  }

  .header__logo {
    width: clamp(30px, 7vw, 36px);
    height: clamp(30px, 7vw, 36px);
  }

  .header__title {
    font-size: clamp(1rem, 5.5vw, 1.3rem);
  }

  .header__subtitle {
    font-size: clamp(0.6rem, 2.8vw, 0.75rem);
  }

  .header__menu img {
    width: clamp(20px, 4.5vw, 25px);
    height: clamp(20px, 4.5vw, 25px);
  }

  .category-header {
    font-size: clamp(1.1rem, 5vw, 1.25rem);
    padding: clamp(0.4rem, 2vw, 0.6rem);
  }

  .service-card {
    width: clamp(95px, 30vw, 110px);
    min-width: 95px;
    max-width: 110px;
  }

  .service-grid {
    gap: clamp(0.6rem, 3vw, 1rem);
    padding: clamp(1.1rem, 3vw, 1.4rem) clamp(0.1rem, 1vw, 0.3rem);
  }

  .service-card__title {
    font-size: clamp(0.75rem, 3vw, 0.9rem);
  }

  .service-card__image {
    height: clamp(60px, 14vw, 85px);
  }

  .menu-overlay {
    width: 200px;
    margin: 6px;
    top: clamp(2.8rem, 7.5vh, 3.6rem); /* Matches header-wrapper height */
  }

  .menu-list a {
    font-size: clamp(0.8rem, 3.5vw, 0.9rem);
    padding: clamp(0.3rem, 1vw, 0.4rem) clamp(0.6rem, 2vw, 0.8rem);
  }

  .headerbutton {
    width: clamp(28px, 5.5vw, 36px);
    height: clamp(28px, 5.5vw, 36px);
    font-size: clamp(5px, 2vw, 6px);
  }

  .headerbutton img {
    width: clamp(18px, 3.5vw, 24px); 
    height: clamp(14px, 3vw, 20px);
  }

  .headerbutton .posttext {
    font-size: clamp(5px, 2vw, 6px);
  }
}

/* iPhone 7 and Similar Devices (375px and below) */
@media (max-width: 375px) {
  .header, .listheader {
    height: clamp(3rem, 7vh, 3.6rem); /* Increased for iPhone 7 comfort */
    min-height: clamp(2.6rem, 6vh, 3.2rem);
  }

  .header-wrapper {
    height: clamp(3.4rem, 8vh, 4rem); /* Increased for better iPhone 7 spacing */
  }

  .header-spacer {
    height: clamp(3.4rem, 8vh, 4rem); /* Matches wrapper */
  }

  .header {
    padding: clamp(0.1rem, 1vw, 0.25rem);
  }

  .header__logo {
    width: clamp(28px, 8vw, 34px);
    height: clamp(28px, 8vw, 34px);
  }

  .header__title {
    font-size: clamp(0.95rem, 6vw, 1.2rem);
  }

  .header__subtitle {
    font-size: clamp(0.55rem, 3vw, 0.7rem);
  }

  .header__menu img {
    width: clamp(18px, 5vw, 22px);
    height: clamp(18px, 5vw, 22px);
  }

  .category-header {
    font-size: clamp(1rem, 5.5vw, 1.15rem);
    padding: clamp(0.35rem, 2vw, 0.5rem);
  }

  .service-card {
    width: clamp(90px, 32vw, 105px);
    min-width: 90px;
    max-width: 105px;
  }

  .service-grid {
    gap: clamp(0.5rem, 3vw, 0.8rem);
    padding: clamp(1.2rem, 3vw, 1.5rem) clamp(0.05rem, 0.5vw, 0.2rem);
  }

  .service-card__title {
    font-size: clamp(0.7rem, 3vw, 0.85rem);
  }

  .service-card__image {
    height: clamp(55px, 16vw, 80px);
  }

  .menu-overlay {
    width: 180px;
    margin: 5px;
    top: clamp(3.4rem, 8vh, 4rem); /* Matches header-wrapper height */
  }

  .menu-list a {
    font-size: clamp(0.75rem, 4vw, 0.85rem);
    padding: clamp(0.25rem, 1vw, 0.35rem) clamp(0.5rem, 2vw, 0.7rem);
  }

  .headerbutton {
    width: clamp(24px, 5vw, 32px);
    height: clamp(24px, 5vw, 32px);
    font-size: clamp(4px, 2vw, 5px);
  }

  .headerbutton img {
    width: clamp(16px, 3vw, 22px); 
    height: clamp(12px, 2.5vw, 18px);
  }

  .headerbutton .posttext {
    font-size: clamp(4px, 2vw, 5px);
  }
}

/* Ultra Small Screens (320px and below) */
@media (max-width: 320px) {
  .header, .listheader {
    height: clamp(2.8rem, 6.5vh, 3.2rem); /* Increased for ultra-small comfort */
    min-height: clamp(2.4rem, 5.5vh, 2.8rem);
  }

  .header-wrapper {
    height: clamp(3.2rem, 7.5vh, 3.6rem); /* Increased for better ultra-small spacing */
  }

  .header-spacer {
    height: clamp(3.2rem, 7.5vh, 3.6rem); /* Matches wrapper */
  }

  .header {
    padding: clamp(0.1rem, 1vw, 0.2rem);
  }

  .header__logo {
    width: clamp(24px, 9vw, 30px);
    height: clamp(24px, 9vw, 30px);
  }

  .header__title {
    font-size: clamp(0.85rem, 7vw, 1.1rem);
  }

  .header__subtitle {
    font-size: clamp(0.5rem, 3.5vw, 0.65rem);
  }

  .header__menu img {
    width: clamp(16px, 5vw, 20px);
    height: clamp(16px, 5vw, 20px);
  }

  .category-header {
    font-size: clamp(0.9rem, 6vw, 1rem);
    padding: clamp(0.3rem, 2vw, 0.4rem);
  }

  .service-card {
    width: clamp(80px, 32vw, 90px);
    min-width: 80px;
    max-width: 90px;
  }

  .service-grid {
    gap: clamp(0.4rem, 3vw, 0.6rem);
    padding: clamp(1rem, 2.5vw, 1.2rem) clamp(0.05rem, 0.5vw, 0.15rem);
  }

  .service-card__title {
    font-size: clamp(0.6rem, 3vw, 0.75rem);
    line-height: 1.1;
  }

  .service-card__image {
    height: clamp(45px, 16vw, 60px);
  }

  .service-card__image-container {
    padding: clamp(0.2rem, 1vw, 0.3rem);
  }

  .menu-overlay {
    width: 160px;
    margin: 4px;
    top: clamp(3.2rem, 7.5vh, 3.6rem); /* Matches header-wrapper height */
  }

  .menu-list {
    padding: 0.5rem;
  }

  .menu-list a {
    font-size: clamp(0.65rem, 4vw, 0.75rem);
    padding: clamp(0.2rem, 1vw, 0.3rem) clamp(0.4rem, 2vw, 0.6rem);
  }

  .headerbutton {
    width: clamp(20px, 4.5vw, 28px);
    height: clamp(20px, 4.5vw, 28px);
    font-size: clamp(3px, 2vw, 4px);
    margin-left: 4px;
  }

  .headerbutton img {
    width: clamp(14px, 2.8vw, 20px); 
    height: clamp(10px, 2.2vw, 16px);
  }

  .headerbutton .posttext {
    font-size: clamp(3px, 2vw, 4px);
  }

  .footer {
    padding: clamp(0.3rem, 1vw, 0.5rem);
    font-size: clamp(0.6rem, 2vw, 0.7rem);
  }
}

.accent-line2 {
  height: var(--borderline-height);
  background: 
    linear-gradient(90deg, 
      transparent 0%,
      rgba(255, 255, 255, 0.4) 45%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0.4) 55%,
      transparent 100%
    ),
    linear-gradient(180deg, 
      #6ee7b7 0%,
      #34d399 15%,
      #10b981 35%,
      #059669 55%,
      #047857 75%,
      #065f46 100%
    );
  background-size: 200% 100%, 100% 100%;
  background-position: -100% 0, 0 0;
  width: 100%;
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.6), 
              inset 0 1px 0 rgba(255, 255, 255, 0.5),
              inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  animation: metalShimmer 4s ease-in-out infinite;
  animation-delay: 2s; /* Offset from header line */
}

/* Header Styles - Modern Dark Theme */
.header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 200;
  background: linear-gradient(180deg, #2d3748 0%, var(--primary-color) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  height: var(--header-height);
  min-height: clamp(2.5rem, 6vh, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
  box-sizing: border-box;
  flex-wrap: wrap;
}

.header__logo {
  width: clamp(58px, 9.5vw, 96px);
  height: clamp(58px, 9.5vw, 96px);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--accent-color);
  box-shadow: 0 0 12px var(--accent-glow);
  position: relative;
  z-index: 1;
}

/* Rotating light trace ring behind logo */
.header__logo-wrapper {
  position: relative;
  display: inline-block;
}

.header__logo-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 300deg,
    var(--accent-color) 320deg,
    #38bdf8 340deg,
    #7dd3fc 350deg,
    transparent 360deg
  );
  animation: logoTraceRotate 3s linear infinite;
  z-index: 0;
}

@keyframes logoTraceRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.header__logo-text {
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-decoration: none;
}

.header__title-group {
  flex: 1 1 auto;
  padding-left: clamp(0.5rem, 2vw, 1rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: calc(var(--header-gap) * 0.25);
  min-width: 0;
}

.header__title {
  font-size: clamp(1.42rem, 5.6vw, 2.85rem);
  font-weight: bold;
  color: var(--text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header__subtitle {
  font-size: clamp(0.76rem, 2.3vw, 1rem);
  color: var(--accent-color);
  line-height: 1.3;
  margin: 0;
  font-weight: 500;
}

.header__menu {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: clamp(6px, 1vw, 10px);
  cursor: pointer;
  color: var(--text-primary);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: clamp(8px, 2vw, 12px);
  transition: all 0.3s ease;
  animation: menuButtonPulse 2.5s ease-out infinite;
}

@keyframes menuButtonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.1);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
  }
}

.header__menu:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--accent-color);
  transform: scale(1.05);
  animation-play-state: paused;
} 

.header__menu-emoji {
  display: block;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--accent-color);
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.header__menu:hover .header__menu-emoji {
  filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.5));
} 

/* Keep img styling for backwards compatibility */
.header__menu img {
  display: block;
  width: clamp(28px, 5vw, 40px);
  height: clamp(28px, 5vw, 40px);
  object-fit: contain;
  filter: brightness(1.5) invert(0.9);
  border: none;
  border-radius: 0;
}

.header__menu-caption {
  display: block;
  margin-top: 4px;
  font-size: clamp(0.65rem, 2vw, 0.8rem);
  color: var(--text-secondary);
  line-height: 1;
  font-weight: 500;
}

/* Header wrapper - Dark Theme */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, #2d3748 0%, var(--primary-color) 100%);
  height: calc(var(--header-height) + var(--borderline-height));
}

/* Header spacer with synchronized responsive height */
.header-spacer {
  height: calc(var(--header-height) + var(--borderline-height)); /* Matches header-wrapper */
}

/* Video Section - Enhanced */
.video-container {
  width: 100%;
  max-width: 100vw;
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  padding: 0;
  position: relative;
  padding-top: 56.25%;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video Wrapper for Overlay */
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Custom Thumbnail Overlay */
.video-thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: all 0.3s ease;
}

.video-thumbnail-overlay:hover {
  filter: brightness(1.1);
}

/* Custom Thumbnail Image */
.custom-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play Button Overlay */
.play-button {
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: all 0.3s ease;
  padding-left: 5px;
}

.video-thumbnail-overlay:hover .play-button {
  transform: scale(1.15);
  box-shadow: 0 6px 30px var(--accent-glow);
}

/* Category Section - Distinct Style */
.category-header {
  background: linear-gradient(135deg, #3d4a5c 0%, #4a5568 50%, #3d4a5c 100%);
  color: var(--text-primary);
  padding: clamp(0.9rem, 2.5vw, 1.4rem);
  text-align: center;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  border: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 
              inset 0 -1px 0 rgba(0, 0, 0, 0.2),
              0 4px 12px rgba(0, 0, 0, 0.3);
}

.category-header::before {
  content: '✦';
  position: absolute;
  left: clamp(10px, 3vw, 25px);
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: clamp(0.8rem, 2vw, 1rem);
  text-shadow: 0 0 10px var(--accent-glow);
}

.category-header::after {
  content: '✦';
  position: absolute;
  right: clamp(10px, 3vw, 25px);
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: clamp(0.8rem, 2vw, 1rem);
  text-shadow: 0 0 10px var(--accent-glow);
}

/* ===== TIER-BASED COLOR SCHEMES ===== */

/* BASIC HELPER - Steel Blue/Teal (Entry Level) - Subtle dual peak */
.category-header.tier-basic {
  background: linear-gradient(135deg, 
    #1a3a4a 0%, 
    #1f4555 8%, 
    #255060 15%, 
    #2d5d70 22%, 
    #357080 30%, 
    #2d5d70 38%, 
    #255060 45%, 
    #1a3a4a 50%, 
    #1f4555 58%, 
    #255060 65%, 
    #2d5d70 72%, 
    #357080 80%, 
    #2d5d70 88%, 
    #255060 95%, 
    #1a3a4a 100%);
  border-left: 4px solid #357080;
  border-right: 4px solid #357080;
  border-top: 1px solid rgba(53, 112, 128, 0.4);
  border-bottom: 1px solid rgba(26, 58, 74, 0.8);
  box-shadow: 
    inset 0 2px 4px rgba(53, 112, 128, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3),
    0 5px 16px rgba(53, 112, 128, 0.3);
}

.category-header.tier-basic::before,
.category-header.tier-basic::after {
  color: #357080;
  text-shadow: 0 0 14px rgba(53, 112, 128, 0.9), 0 0 25px rgba(45, 93, 112, 0.5);
}

/* SKILLED WORKER - Sapphire Blue (Technical) - Subtle dual peak */
.category-header.tier-skilled {
  background: linear-gradient(135deg, 
    #0d1f3c 0%, 
    #122850 8%, 
    #173260 15%, 
    #1d3c70 22%, 
    #2952a3 30%, 
    #1d3c70 38%, 
    #173260 45%, 
    #0d1f3c 50%, 
    #122850 58%, 
    #173260 65%, 
    #1d3c70 72%, 
    #2952a3 80%, 
    #1d3c70 88%, 
    #173260 95%, 
    #0d1f3c 100%);
  border-left: 4px solid #2952a3;
  border-right: 4px solid #2952a3;
  border-top: 1px solid rgba(41, 82, 163, 0.4);
  border-bottom: 1px solid rgba(13, 31, 60, 0.8);
  box-shadow: 
    inset 0 2px 4px rgba(41, 82, 163, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3),
    0 5px 16px rgba(41, 82, 163, 0.3);
}

.category-header.tier-skilled::before,
.category-header.tier-skilled::after {
  color: #2952a3;
  text-shadow: 0 0 14px rgba(41, 82, 163, 0.9), 0 0 25px rgba(29, 60, 112, 0.5);
}

/* PROFESSIONAL - Rich Metallic Gold (Elite/Premium) - Subtle dual peak */
.category-header.tier-professional {
  background: linear-gradient(135deg, 
    #3d3010 0%, 
    #4a3a15 8%, 
    #58451a 15%, 
    #6b5520 22%, 
    #9a7a30 30%, 
    #6b5520 38%, 
    #58451a 45%, 
    #3d3010 50%, 
    #4a3a15 58%, 
    #58451a 65%, 
    #6b5520 72%, 
    #9a7a30 80%, 
    #6b5520 88%, 
    #58451a 95%, 
    #3d3010 100%);
  border-left: 4px solid #9a7a30;
  border-right: 4px solid #9a7a30;
  border-top: 1px solid rgba(154, 122, 48, 0.4);
  border-bottom: 1px solid rgba(61, 48, 16, 0.8);
  box-shadow: 
    inset 0 2px 4px rgba(154, 122, 48, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3),
    0 5px 16px rgba(154, 122, 48, 0.3);
}

.category-header.tier-professional::before,
.category-header.tier-professional::after {
  content: '★';
  color: #9a7a30;
  text-shadow: 0 0 14px rgba(154, 122, 48, 0.9), 0 0 25px rgba(107, 85, 32, 0.5);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* Subtle shimmer animation for tier headers - smooth back and forth */
@keyframes tierShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

.category-header.tier-basic,
.category-header.tier-skilled,
.category-header.tier-professional {
  background-size: 200% 200%;
  animation: tierShimmer 8s ease-in-out infinite alternate !important;
}

/* Desktop Media Query - Must come after base styles */
@media (min-width: 1024px) {
  .header {
    padding: 0 clamp(1rem, 2vw, 2rem) !important;
    height: clamp(10rem, 14vh, 11rem) !important;
    min-height: clamp(9.5rem, 13vh, 10.5rem) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
    flex-wrap: nowrap !important;
    position: relative !important;
  }

  .header-wrapper {
    height: clamp(10.5rem, 15vh, 11.5rem) !important;
  }

  .header-spacer {
    height: clamp(10.5rem, 15vh, 11.5rem) !important;
  }

  .header__logo {
    width: clamp(120px, 14vw, 140px) !important;
    height: clamp(120px, 14vw, 140px) !important;
  }

  .header__title {
    font-size: clamp(3.5rem, 9vw, 4rem) !important;
    line-height: 1.1 !important;
  }

  .header__subtitle {
    font-size: clamp(1.5rem, 3.5vw, 1.75rem) !important;
    line-height: 1.2 !important;
  }

  .header__menu {
    padding: clamp(0.75rem, 1.5vw, 1rem) !important;
    border-radius: 12px !important;
  }

  .header__menu img {
    width: clamp(40px, 6vw, 50px) !important;
    height: clamp(40px, 6vw, 50px) !important;
  }

  .video-container {
    width: 100% !important;
    max-width: 900px !important;
    margin: 2rem auto !important;
    padding-top: 30% !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  .category-header {
    font-size: clamp(1.75rem, 4.5vw, 2rem) !important;
  }

  .service-card {
    width: clamp(160px, 18vw, 180px) !important;
    min-width: 160px !important;
    max-width: 180px !important;
  }

  .service-grid {
    gap: clamp(1.5rem, 3vw, 2rem) !important;
    padding: clamp(1.5rem, 3vw, 2rem) !important;
    max-width: 900px !important;
  }

  .service-card__title {
    font-size: clamp(0.95rem, 2vw, 1.05rem) !important;
  }

  .menu-overlay {
    width: 300px !important;
    margin: 20px !important;
    top: clamp(10.5rem, 15vh, 11.5rem) !important;
  }
  
  .play-button {
    width: 90px !important;
    height: 90px !important;
    font-size: 36px !important;
  }
}

/* Final mobile overrides placed at end (rollback to prior desired sizes) */
@media (max-width: 491px) {
  .header__title {
    font-size: clamp(1.72rem, 7.3vw, 3rem);
  }
  .header__subtitle {
    font-size: clamp(0.94rem, 3.2vw, 1.12rem);
  }
}

/* Enhanced Tablet Styles (768px - 1023px) - More responsive clamps */
@media (min-width: 768px) and (max-width: 1023px) { 
  /* original tablet styles without new height changes */
}

/* Lower starting heights for 492-766px */
@media (min-width: 492px) and (max-width: 766px) {
  :root {
    --header-height: clamp(3rem, 6vh + 2vw, 5.5rem);
  }
}

/* Remove item clamp overrides to restore original behavior */

/* Update selectors to use new variables */
.header, .listheader {
  height: var(--header-height);
}

.header-wrapper, .header-spacer {
  height: calc(var(--header-height) + var(--borderline-height));
}

/* Ensure borderline fills bottom with no gap */
.accent-line1 {
  margin-top: 0;
  height: var(--borderline-height);
  background: 
    linear-gradient(90deg, 
      transparent 0%,
      rgba(255, 255, 255, 0.4) 45%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0.4) 55%,
      transparent 100%
    ),
    linear-gradient(180deg, 
      #6ee7b7 0%,
      #34d399 15%,
      #10b981 35%,
      #059669 55%,
      #047857 75%,
      #065f46 100%
    );
  background-size: 200% 100%, 100% 100%;
  background-position: -100% 0, 0 0;
  width: 100%;
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.6), 
              inset 0 1px 0 rgba(255, 255, 255, 0.5),
              inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  animation: metalShimmer 4s ease-in-out infinite;
}

/* Keep existing media queries but override only if needed for extremes */


/* ========================== EMOJI ICON SUPPORT ========================== */
/* For service cards that use emojis instead of PNG images */

.service-card__emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #d4d4d4 0%, #c0c0c0 100%);
  border-radius: 12px;
}

.service-card__emoji-icon {
  font-size: 64px;
  line-height: 1;
}

