/* =============================================
   COLORFUL NAIL BAR — Main Stylesheet
   ============================================= */

/* --- Google Fonts imported in HTML --- */

:root {
  --dark:        #0d0d0d;
  --dark-2:      #161616;
  --dark-3:      #1e1e1e;
  --white:       #ffffff;
  --off-white:   #f5f5f5;
  --muted:       #b0b0b0;
  --purple:      #8B5CF6;
  --purple-light:#a78bfa;
  --blue:        #6366f1;
  --btn-blue:    #4F46E5;
  --btn-hover:   #4338ca;
  --grad-start:  #e8e0f8;
  --grad-mid:    #f3e8f8;
  --grad-end:    #e0ecf8;
  --footer-bg:   #0a0a0a;
  --font-script: 'Great Vibes', cursive;
  --font-sans:   'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--white);
  background: var(--dark);
  overflow-x: hidden;
  cursor: url('../images/cursor-drop.png') 19 4, auto;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- LOGO IMAGE ---- */
.logo-img         { height: 56px; width: auto; display: block; }
.footer-logo-img  { height: 60px; width: auto; display: block; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 12px; }
.script-heading { font-family: var(--font-script); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; line-height: 1.1; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
  border: none;
}
.btn-primary {
  background: var(--btn-blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--btn-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-1px); }


/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 10px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 100%);
  transition: background .3s, box-shadow .3s, padding .3s, transform .35s ease;
}
.nav.nav-hidden {
  transform: translateY(-100%);
}
.nav.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  padding: 8px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-top {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo .logo-top .logo-o {
  background: linear-gradient(135deg, #a855f7, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo .logo-sub {
  font-size: .65rem;
  letter-spacing: .35em;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
  text-transform: uppercase;
}
/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--purple-light);
  transition: width .25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
/* Social icons in nav */
.nav-social { display: flex; gap: 14px; align-items: center; }
.nav-social a { color: rgba(255,255,255,.7); font-size: 1rem; transition: color .2s; }
.nav-social a:hover { color: var(--white); }
/* Right side */
.nav-right { display: flex; align-items: center; gap: 20px; }
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--purple-light); }
.mobile-menu .mobile-btn { margin-top: 8px; }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}


/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Hero slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.68);
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.25);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.38) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-slides {
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
  margin: 0 auto 0 8vw;
}
.hero-tag { font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.3);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}


/* ================================================
   SERVICES OVERVIEW (CARDS)
   ================================================ */
.services-overview {
  background: #fff;
  padding: 80px 0;
}
.services-overview-header {
  text-align: left;
  margin-bottom: 48px;
}
.services-overview-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
}
.services-overview-header h2 span {
  color: var(--purple);
}
.services-overview-header p {
  margin-top: 10px;
  color: #555;
  font-size: .95rem;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
/* Inner link fills the whole card; Book Now sits outside it */
.service-card-inner {
  display: block;
  position: absolute;
  inset: 0;
}
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-card-img { transform: scale(1.07); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  color: var(--white);
}
.service-card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.service-card-content p {
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
/* Slide-up "Book Now" hover strip */
.service-card-book {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--btn-blue);
  color: var(--white);
  text-align: center;
  padding: 14px 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform .3s ease, background .2s;
  z-index: 4;
  pointer-events: auto;
  cursor: pointer;
}
.service-card:hover .service-card-book {
  transform: translateY(0);
}
.service-card:hover .service-card-book:hover {
  background: var(--btn-hover);
}


/* ================================================
   FULL-WIDTH IMAGE BAND
   ================================================ */
.image-band {
  height: 60vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.image-band-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6);
  transform: scale(1.02);
}
.image-band-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.image-band-text .script-heading { color: var(--white); }
.image-band-text p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  max-width: 500px;
  padding: 0 24px;
}


/* ================================================
   TICKER / MARQUEE
   ================================================ */
.ticker-wrap {
  background: var(--dark-3);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  flex-shrink: 0;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  padding: 0 32px;
}
.ticker-item span { color: var(--purple-light); margin: 0 12px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ================================================
   GOOGLE REVIEWS PLACEHOLDER
   ================================================ */
.reviews-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-mid), var(--grad-end));
}
.reviews-section .section-tag { color: var(--purple); }
.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--dark); }
.reviews-header p { color: #666; margin-top: 10px; font-size: .95rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.review-stars { color: #FBBF24; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text {
  font-size: .9rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author { font-size: .82rem; font-weight: 700; color: var(--dark); }
.reviews-cta { text-align: center; margin-top: 40px; }
.reviews-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .05em;
  border-bottom: 1.5px solid var(--purple);
  padding-bottom: 2px;
  transition: opacity .2s;
}
.reviews-cta a:hover { opacity: .75; }
.reviews-placeholder-note {
  text-align: center;
  margin-top: 16px;
  font-size: .75rem;
  color: #999;
}


/* ================================================
   OUR STORY
   ================================================ */
.our-story {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.our-story-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/svc-story.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.25);
}
.our-story-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.our-story-text h2.script-heading { margin-bottom: 24px; }
.our-story-text p {
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  font-size: .95rem;
  margin-bottom: 16px;
}
.our-story-text .btn { margin-top: 16px; }
.our-story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.6); letter-spacing: .1em; text-transform: uppercase; }


/* ================================================
   HOURS & LOCATION
   ================================================ */
.info-section {
  padding: 80px 0;
  background: var(--dark-2);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.info-block h3 {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 20px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,.07); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 12px 0;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}
.hours-table td:last-child { text-align: right; color: var(--white); }
.hours-table tr.today td { color: var(--purple-light); font-weight: 600; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(139,92,246,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-item-text strong {
  display: block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 4px;
}
.contact-item-text span, .contact-item-text a {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
  transition: color .2s;
}
.contact-item-text a:hover { color: var(--white); }
.map-embed {
  margin-top: 32px;
  border-radius: 10px;
  overflow: hidden;
  height: 240px;
  border: 1px solid rgba(255,255,255,.08);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) invert(5%);
}


/* ================================================
   INSTAGRAM GALLERY
   ================================================ */
.instagram-section {
  padding: 80px 0;
  background: var(--dark);
  text-align: center;
}
.instagram-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 4px;
}
.instagram-handle {
  color: var(--purple-light);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 36px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.insta-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}
.insta-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s, filter .3s;
  filter: brightness(.9);
}
.insta-thumb:hover img { transform: scale(1.08); filter: brightness(1); }


/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--footer-bg);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .logo-top { font-size: 1.3rem; }
.footer-tagline {
  margin-top: 16px;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social a:hover {
  background: rgba(139,92,246,.3);
  border-color: var(--purple-light);
  color: var(--white);
}
.footer-col h4 {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: .875rem;
  color: var(--muted);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
}
.footer-col address a { color: var(--muted); transition: color .2s; }
.footer-col address a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}


/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.25);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: .05em;
}
.page-hero p { color: rgba(255,255,255,.7); margin-top: 12px; font-size: 1rem; }


/* ================================================
   SERVICES PAGE
   ================================================ */
.services-page { background: #fff; padding: 80px 0; }
.services-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 24px;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #999;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.tab-btn.active, .tab-btn:hover { color: var(--purple); border-color: var(--purple); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.services-category { margin-bottom: 48px; }
.services-category h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.services-category .cat-sub {
  font-size: .85rem;
  color: #888;
  margin-bottom: 20px;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s;
}
.price-table tr:last-child { border-bottom: none; }
.price-table tr:hover { background: #faf8ff; }
.price-table td {
  padding: 14px 8px;
  font-size: .9rem;
  color: #333;
}
.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--purple);
  white-space: nowrap;
}
.price-table td.service-desc {
  font-size: .8rem;
  color: #888;
  display: block;
  margin-top: 2px;
  font-weight: 400;
}
.price-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: #faf8ff;
  border-left: 3px solid var(--purple);
  border-radius: 0 6px 6px 0;
  font-size: .85rem;
  color: #666;
}


/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-page { background: #fff; padding: 80px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-block h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-info-block p { font-size: .95rem; color: #666; line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(139,92,246,.12), rgba(99,102,241,.12));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); margin-bottom: 4px; }
.contact-detail-text span, .contact-detail-text a { font-size: .9rem; color: #444; line-height: 1.6; }
.contact-detail-text a:hover { color: var(--purple); }
.hours-card {
  background: linear-gradient(135deg, #faf8ff, #f3f0ff);
  border-radius: 12px;
  padding: 28px;
}
.hours-card h3 { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--purple); margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(139,92,246,.08); font-size: .88rem; color: #444; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 600; color: var(--dark); }
.contact-map { border-radius: 12px; overflow: hidden; height: 480px; box-shadow: 0 8px 40px rgba(0,0,0,.1); }
.contact-map iframe { width: 100%; height: 100%; border: none; }


/* ================================================
   GIFT CARDS SECTION
   ================================================ */
.gift-page { padding: 80px 0; background: #fff; text-align: center; }
.gift-page h2 { font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.gift-page p { font-size: .95rem; color: #666; max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.gift-card-visual {
  display: inline-block;
  width: 340px;
  max-width: 100%;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  position: relative;
  overflow: hidden;
  margin: 0 auto 40px;
}
.gift-card-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(139,92,246,.4), transparent 70%);
  border-radius: 50%;
}
.gift-card-visual .gc-logo { font-size: 1.1rem; font-weight: 800; letter-spacing: .1em; color: #fff; margin-bottom: 60px; text-align: left; }
.gift-card-visual .gc-logo span { background: linear-gradient(135deg, #a855f7, #6366f1, #ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gift-card-visual .gc-amount { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 4px; text-align: left; }
.gift-card-visual .gc-label { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.5); text-align: left; }


/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .our-story-content { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-social, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .nav-right { gap: 12px; }
  .hero-content { margin: 0 auto; text-align: center; }
  .hero-ctas { justify-content: center; }
  .services-overview-header { text-align: center; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .our-story-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-map { height: 300px; }
}

@media (max-width: 480px) {
  .service-cards { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .services-tabs { overflow-x: auto; flex-wrap: nowrap; }
}
