/* 
 * PRINTVERSA Premium Stylesheet
 * Brand Theme: Playful, elegant, magical, celebration-focused
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Design Tokens & Variables --- */
:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #fffaf6; /* soft cream background */
  
  --color-pink: #ffeef3;
  --color-pink-medium: #ffd1dc;
  --color-pink-dark: #b86273;
  
  --color-lavender: #f6f0ff;
  --color-lavender-medium: #e0d0fc;
  --color-lavender-dark: #7a61a0;
  
  --color-peach: #fff2e8;
  --color-peach-medium: #ffd6bd;
  --color-peach-dark: #b56c3c;
  
  --color-blue: #eef8fc;
  --color-blue-medium: #c7ebf9;
  --color-blue-dark: #4d849e;
  
  --color-gold: #edd182;
  --color-gold-dark: #af9241;
  --color-text-main: #3d3537;
  --color-text-muted: #7d7073;
  
  /* Layout & Accents */
  --font-title: 'Playfair Display', Georgia, serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-soft: 0 10px 30px rgba(224, 204, 210, 0.25);
  --shadow-hover: 0 15px 45px rgba(224, 204, 210, 0.45);
  --shadow-glow-pink: 0 0 30px rgba(255, 209, 220, 0.6);
  --shadow-glow-lavender: 0 0 30px rgba(224, 208, 252, 0.6);
  
  --border-radius-lg: 32px;
  --border-radius-md: 20px;
  --border-radius-sm: 12px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Base & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--bg-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background sprinkles/decorations */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(var(--color-pink-medium) 1.5px, transparent 1.5px),
    radial-gradient(var(--color-lavender-medium) 1.5px, transparent 1.5px),
    radial-gradient(var(--color-peach-medium) 1.5px, transparent 1.5px);
  background-size: 80px 80px, 90px 90px, 100px 100px;
  background-position: 0 0, 40px 40px, 20px 70px;
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
}

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

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

/* --- Typography System --- */
.text-serif {
  font-family: var(--font-title);
  font-style: italic;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--color-pink-dark) 10%, var(--color-lavender-dark) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.tagline {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0.5rem auto 2rem auto;
  position: relative;
}

/* --- Layout Components --- */

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 250, 246, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 209, 220, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--color-pink-dark) 10%, var(--color-lavender-dark) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-main);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-pink-dark), var(--color-lavender-dark));
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-pink-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-pink-dark);
  font-weight: 600;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  margin: 5px 0;
  background-color: var(--color-text-main);
  transition: var(--transition-smooth);
}

/* Hero Section (Homepage) */
.hero {
  text-align: center;
  padding: 5rem 2rem 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-sparkle {
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23edd182'%3E%3Cpath d='M12 0l3 9 9 3-9 3-3 9-3-9-9-3 9-3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  animation: float-sparkle 4s infinite ease-in-out;
  opacity: 0.7;
}

.hero-sparkle-1 { top: 15%; left: 10%; animation-delay: 0s; }
.hero-sparkle-2 { top: 20%; right: 12%; animation-delay: 1.5s; width: 18px; height: 18px; }
.hero-sparkle-3 { bottom: 25%; left: 8%; animation-delay: 2.5s; width: 14px; height: 14px; }
.hero-sparkle-4 { bottom: 15%; right: 15%; animation-delay: 0.8s; }

/* Main Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 2rem auto 5rem auto;
  padding: 0 2rem;
}

.service-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 209, 220, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--border-radius-lg);
  border: 3px solid transparent;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.service-card.card-edible::before {
  background: linear-gradient(135deg, var(--color-pink-medium), var(--color-peach-medium)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0.4;
}

.service-card.card-3d::before {
  background: linear-gradient(135deg, var(--color-lavender-medium), var(--color-blue-medium)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0.4;
}

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

.service-card.card-edible:hover {
  box-shadow: var(--shadow-glow-pink), var(--shadow-hover);
}

.service-card.card-3d:hover {
  box-shadow: var(--shadow-glow-lavender), var(--shadow-hover);
}

.service-image-container {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-image {
  transform: scale(1.08);
}

.service-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text-main);
  transition: var(--transition-smooth);
}

.service-card.card-edible:hover .service-title {
  color: var(--color-pink-dark);
}

.service-card.card-3d:hover .service-title {
  color: var(--color-lavender-dark);
}

.service-description {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.card-edible .service-btn {
  background-color: var(--color-pink);
  color: var(--color-pink-dark);
}

.card-3d .service-btn {
  background-color: var(--color-lavender);
  color: var(--color-lavender-dark);
}

.service-card:hover .service-btn {
  transform: translateX(5px);
}

/* Contact Info Box on Homepage */
.home-contact-section {
  max-width: 800px;
  margin: 2rem auto 6rem auto;
  padding: 3rem 2rem;
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 1px solid rgba(255, 209, 220, 0.15);
  position: relative;
  overflow: hidden;
}

.home-contact-section::after {
  content: '★';
  position: absolute;
  font-size: 3rem;
  color: rgba(237, 209, 130, 0.15);
  bottom: -10px;
  right: 15px;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}

.contact-detail {
  font-size: 1.15rem;
  margin: 0.5rem 0;
  font-weight: 500;
}

.contact-note {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 1.5rem auto;
  line-height: 1.5;
}

/* Subpages - Inner Hero */
.inner-hero {
  text-align: center;
  padding: 4.5rem 2rem 3.5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.inner-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}

.inner-intro {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 750px;
  margin: 0 auto;
}

/* Category Grid & Cards (Subpages) */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin: 4rem 0 2.5rem 0;
  position: relative;
}

.categories-container {
  max-width: 1200px;
  margin: 0 auto 5rem auto;
  padding: 0 2rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 209, 220, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
}

/* Background gradient highlights for subpage cards */
.theme-pink .category-card {
  background: linear-gradient(to bottom, #ffffff, var(--bg-secondary));
}
.theme-pink .category-card:hover {
  box-shadow: 0 10px 30px rgba(255, 209, 220, 0.4);
  transform: translateY(-5px);
  border-color: rgba(255, 209, 220, 0.4);
}

.theme-lavender .category-card {
  background: linear-gradient(to bottom, #ffffff, var(--bg-secondary));
}
.theme-lavender .category-card:hover {
  box-shadow: 0 10px 30px rgba(224, 208, 252, 0.4);
  transform: translateY(-5px);
  border-color: rgba(224, 208, 252, 0.4);
}

.category-icon-container {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  transition: var(--transition-bounce);
}

.theme-pink .category-icon-container {
  background: var(--color-pink);
  color: var(--color-pink-dark);
}

.theme-lavender .category-icon-container {
  background: var(--color-lavender);
  color: var(--color-lavender-dark);
}

.category-card:hover .category-icon-container {
  transform: scale(1.15) rotate(5deg);
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-text-main);
}

.category-description {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Dynamic Gallery (Masonry & Grid) */
.gallery-section {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(61, 53, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-zoom-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  transition: var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-zoom-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text-main);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

.gallery-item-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 1rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  transform: translateY(40px);
  opacity: 0;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
  opacity: 1;
}

/* Call To Action (Subpages Bottom) */
.cta-section {
  max-width: 900px;
  margin: 5rem auto;
  padding: 4rem 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.theme-pink .cta-section {
  background: linear-gradient(135deg, var(--color-pink) 0%, #ffffff 100%);
  border: 1px solid rgba(255, 209, 220, 0.3);
}

.theme-lavender .cta-section {
  background: linear-gradient(135deg, var(--color-lavender) 0%, #ffffff 100%);
  border: 1px solid rgba(224, 208, 252, 0.3);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* Buttons */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-pink-dark), var(--color-lavender-dark));
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(184, 98, 115, 0.3);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-phone {
  background-color: #ffffff;
  color: var(--color-text-main);
  border: 2px solid var(--color-pink-medium);
}

.btn-phone:hover {
  background-color: var(--color-pink);
  transform: translateY(-3px);
}

/* Contact Page specific styles */
.contact-page-container {
  max-width: 900px;
  margin: 3rem auto 6rem auto;
  padding: 0 2rem;
}

.contact-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 209, 220, 0.15);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-block-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  font-size: 1.5rem;
}

.contact-info-text {
  font-size: 1.05rem;
}

.contact-info-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  display: block;
}

.contact-info-value {
  font-weight: 500;
  color: var(--color-text-main);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 20, 22, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(5px);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

/* Footer */
footer {
  background-color: var(--color-pink);
  border-top: 1px solid rgba(255, 209, 220, 0.25);
  padding: 4rem 2rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--color-pink-dark) 10%, var(--color-lavender-dark) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 320px;
}

.footer-section-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--color-pink-dark);
  transform: translateX(3px);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(220, 200, 210, 0.3);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Animations */
@keyframes float-sparkle {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-15px) rotate(45deg) scale(1.2);
    opacity: 1;
  }
}

/* Scroll Animation classes */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */

@media (max-width: 1024px) {
  .lightbox-prev {
    left: -40px;
  }
  .lightbox-next {
    right: -40px;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    gap: 2.5rem;
  }
  
  .service-image-container {
    height: 320px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .brand-title {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.15rem;
  }
  
  .inner-title {
    font-size: 2.2rem;
  }
  
  .inner-intro {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin: 3rem 0 2rem 0;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 75px;
    left: 0;
        transform: translateX(100%);
    width: 100%;
    height: calc(100vh - 75px);
    background-color: var(--bg-secondary);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    align-items: center;
  }
  
  .nav-menu.active {
      transform: translateX(0);
  }
  
  /* Hamburger animation */
  .mobile-nav-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .mobile-nav-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
  
  .lightbox-prev, .lightbox-next {
    display: none;
  }
  
  .cta-section {
    padding: 3rem 1.5rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 2rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .service-content {
    padding: 1.75rem;
  }
  
  .service-title {
    font-size: 1.5rem;
  }
  
  .home-contact-section {
    padding: 2rem 1.5rem;
  }
  
  .contact-info-title {
    font-size: 1.5rem;
  }
  
  .contact-card {
    padding: 2rem 1.5rem;
  }
  
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
