/*
 * Global stylesheet for Agata Kowalska permanent makeup website.
 *
 * The design uses a dark background with pink accents to evoke
 * elegance and femininity. Modern Google fonts provide a clean,
 * contemporary look and the layout is fully responsive with a
 * mobile‑first approach. Simple animations fade sections into view
 * as the user scrolls, and smooth scrolling improves the user
 * experience when navigating between pages.
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --primary: #ff99d8;
  --background: #000000;
  --text: #ffffff;
  --muted: #aaaaaa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

/* Sticky header with navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(6px);
}

.logo {
  display: flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 48px;
  width: 48px;
  margin-right: 10px;
  border-radius: 50%;
}

.logo-content {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.2;
  margin-top: 2px;
}

/* Floating phone button */
.floating-phone {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px) scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.4s ease;
  pointer-events: none;
  -webkit-transform: translateY(80px) scale(0.9);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.4s ease;
}

.floating-phone.visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: all !important;
  visibility: visible !important;
}

.floating-phone.hidden {
  display: none !important;
}

.floating-phone-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: #1a1a1a;
  border: 2px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
  padding: 0;
}

.floating-phone-close:hover {
  background: var(--primary);
  color: #1a1a1a;
  transform: rotate(90deg);
}

.floating-phone-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid var(--primary);
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 10px 40px rgba(255, 153, 216, 0.3), 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.floating-phone-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 153, 216, 0.4), 0 6px 20px rgba(0, 0, 0, 0.5);
  border-color: #fff;
}

.floating-phone-icon {
  font-size: 2rem;
  animation: phone-pulse 2s ease-in-out infinite;
}

@keyframes phone-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.floating-phone-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-phone-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-phone-number {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

/* Elegant call button */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, #ff66cc 100%);
  border: none;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  color: #1a1a1a;
  box-shadow: 0 8px 30px rgba(255, 153, 216, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 153, 216, 0.5);
}

.btn-call-icon {
  font-size: 2.2rem;
  filter: grayscale(1) brightness(0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-call-icon svg {
  width: 28px;
  height: 28px;
  fill: #1a1a1a;
}

.btn-call-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.btn-call-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.btn-call-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.5px;
}

.navbar {
  position: relative;
}

.navbar .nav-menu {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.navbar .nav-menu li a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 500;
}

.navbar .nav-menu li a:hover,
.navbar .nav-menu li a:focus {
  background-color: var(--primary);
  color: var(--background);
}

/* Highlight current page in navigation */
.navbar .nav-menu li a.active {
  background-color: var(--primary);
  color: var(--background);
}

/* Hamburger menu button - hidden on desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Main container spacing to account for fixed header */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 60px;
}

section {
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease both;
}

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

h1, h2, h3, h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

p {
  margin-bottom: 20px;
}

a.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--background);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

a.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 153, 216, 0.4);
}

/* Hero section with image and text */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
  min-height: calc(100vh - 200px);
  padding: 40px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.2), rgba(255, 102, 204, 0.1));
  border: 1px solid rgba(255, 153, 216, 0.4);
  color: var(--primary);
  padding: 8px 20px;
  margin:0;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  width: fit-content;
  text-transform: uppercase;
}
.hero-badge
 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, var(--primary), #ff66cc, #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0;
}

.hero-location svg {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.8;
  margin: 10px 0 0 0;
}

.hero-subtitle strong {
  color: var(--primary);
  font-weight: 600;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 5px 0;
}

.hero-service-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 153, 216, 0.25);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.hero-service-tag:hover {
  background: rgba(255, 153, 216, 0.15);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
 
}

.hero-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 153, 216, 0.05));
  border: 1px dashed rgba(255, 215, 0, 0.4);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text);
  width: fit-content;
}

.coming-soon-badge {
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: #1a1a1a;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta {
  margin-top: 10px;
  width: fit-content;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  max-width: 450px;
  width: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 153, 216, 0.1);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 35px 80px rgba(255, 153, 216, 0.25), 0 0 0 1px rgba(255, 153, 216, 0.3);
}

.hero-image-decoration {
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  z-index: 1;
  opacity: 0.4;
  transition: all 0.4s ease;
}

.hero-image-wrapper:hover .hero-image-decoration {
  top: 25px;
  right: -25px;
  bottom: -25px;
  left: 25px;
  opacity: 0.6;
}

/* Tables for offers */
/*
 * Table styling
 *
 * The table uses a subtle background colour and rounded corners. Alternate
 * rows are shaded for easier reading and hovering over a row highlights
 * it to guide the user's focus. Borders have been removed for a cleaner
 * aesthetic, relying instead on spacing and background colours to
 * separate cells.
 */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 12px;
  background-color: rgba(255, 153, 216, 0.05);
}

table thead {
  background-color: rgba(255, 153, 216, 0.2);
}

table th, table td {
  padding: 16px 20px;
  text-align: left;
  color: var(--text);
}

table th {
  font-weight: 600;
  letter-spacing: 0.5px;
}

table tbody tr:nth-child(even) {
  background-color: rgba(255, 153, 216, 0.05);
}

table tbody tr:hover {
  background-color: rgba(255, 153, 216, 0.15);
}

/* Gallery styling */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(255, 153, 216, 0.4);
}

/* Testimonials styling */
blockquote {
  border-left: 4px solid var(--primary);
  margin: 20px 0;
  padding-left: 20px;
  color: var(--text);
}

blockquote p {
  font-style: italic;
  margin-bottom: 10px;
}

blockquote footer {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact page specific styles */
.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), #ff66cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.contact-card {
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.1), rgba(255, 102, 204, 0.05));
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 153, 216, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff66cc);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 153, 216, 0.3);
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.15), rgba(255, 102, 204, 0.1));
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(255, 153, 216, 0.3));
}

.contact-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-info {
  color: var(--text);
  line-height: 1.8;
  margin: 0;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  font-size: 1.1rem;
}

.contact-link:hover {
  color: #ff66cc;
  text-decoration: underline;
}

.map-section {
  margin-bottom: 60px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
}

.map-wrapper:hover {
  box-shadow: 0 12px 35px rgba(255, 153, 216, 0.2);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
  max-width: 100%;
}

/* Call to action panel */
.cta {
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.15), rgba(255, 102, 204, 0.1));
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 153, 216, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.cta p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer styling */
footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 40px 4%;
  color: var(--muted);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-content div {
  flex: 1 1 200px;
}

footer a {
  color: var(--primary);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 3%;
  }

  /* Floating phone button responsive - ALWAYS VISIBLE on mobile */
  .floating-phone {
    bottom: 15px;
    right: 15px;
    /* Force visible on mobile - no JS needed */
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    -webkit-transform: translateY(0) scale(1) !important;
    pointer-events: all !important;
  }

  .floating-phone.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .floating-phone-link {
    padding: 12px 18px;
    gap: 12px;
  }

  .floating-phone-icon {
    font-size: 1.6rem;
  }

  .floating-phone-number {
    font-size: 1rem;
  }

  .btn-call {
    padding: 14px 22px;
    gap: 12px;
  }

  .btn-call-icon {
    font-size: 1.8rem;
  }

  .btn-call-icon svg {
    width: 24px;
    height: 24px;
  }

  /* Show hamburger button on mobile */
  .menu-toggle {
    display: flex;
  }

  /* Hide menu by default on mobile */
  .navbar .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 0;
    margin: 0;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
  }

  /* Show menu when active */
  .navbar .nav-menu.active {
    right: 0;
  }

  .navbar .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 153, 216, 0.2);
  }

  .navbar .nav-menu li a {
    display: block;
    padding: 15px 10px;
    width: 100%;
    border-radius: 0;
  }

  .navbar .nav-menu li a:hover,
  .navbar .nav-menu li a:focus {
    background-color: rgba(255, 153, 216, 0.1);
    color: var(--primary);
  }

  /* Overlay when menu is open */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .menu-overlay.active {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 20px 0;
  }

  .hero-content {
    order: 1;
    text-align: center;
    align-items: center;
  }

  .hero-image {
    order: 0;
  }

  .hero h1 {
    font-size: 0.7rem;
  }

  .hero-badge {
    font-size: 2rem;
   
  }

  .hero-location {
    font-size: 1rem;
    justify-content: center;
  }

  .hero-subtitle {
    font-size: 1rem;
    text-align: center;
  }

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

  .hero-service-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .hero-description {
    text-align: center;
  }

  .hero-coming-soon {
    font-size: 0.85rem;
    padding: 10px 16px;
  }

  .hero-cta {
    align-self: center;
  }

  .hero-image-wrapper {
    max-width: 320px;
  }

  .hero-image-decoration {
    top: 15px;
    right: -15px;
    bottom: -15px;
    left: 15px;
  }

  .gallery img {
    max-width: 100%;
  }

  .contact-intro h1 {
    font-size: 2rem;
  }

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

  .contact-card {
    padding: 25px 20px;
  }

  .contact-icon {
    font-size: 2.5rem;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .cta {
    padding: 35px 25px;
  }

  .cta h2 {
    font-size: 1.6rem;
  }

}

/* Hero section improvements - additional styles */

/* Intro section */
.intro-section {
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.1), rgba(255, 102, 204, 0.05));
  padding: 50px 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 153, 216, 0.2);
  margin-bottom: 60px;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-section h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.intro-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 30px;
}

/* Feature sections */
.feature-section {
  margin-bottom: 60px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.1), rgba(255, 102, 204, 0.05));
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 153, 216, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff66cc);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 153, 216, 0.3);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(255, 153, 216, 0.3));
}

.feature-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.feature-card p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feature-details {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 12px;
  margin: 25px auto;
  max-width: 500px;
}

.feature-details p {
  margin: 0;
  color: var(--text);
}

/* Services section */
.services-section {
  margin-bottom: 80px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  background: linear-gradient(135deg, var(--primary), #ff66cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-intro {
  text-align: center;
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Home page services grid */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.home-service-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.08), rgba(255, 102, 204, 0.03));
  border-radius: 16px;
  border: 1px solid rgba(255, 153, 216, 0.15);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 153, 216, 0.25);
}

.home-service-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.home-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-service-card:hover .home-service-image img {
  transform: scale(1.05);
}

.home-service-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-service-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.home-service-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 15px 0;
  flex: 1;
}

.home-service-link {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.home-service-card:hover .home-service-link {
  color: #ff66cc;
}

/* Card section styling for home page */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.card {
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.1), rgba(255, 102, 204, 0.05));
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 153, 216, 0.2);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff66cc);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 153, 216, 0.3);
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.15), rgba(255, 102, 204, 0.1));
}

.card img {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(255, 153, 216, 0.3);
  transition: border-color 0.3s ease;
}

.card:hover img {
  border-color: var(--primary);
}

.card h3 {
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 1.3rem;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  min-height: 50px;
}

@media (max-width: 768px) {
  .card {
    flex: 1 1 100%;
  }
}

/* Lightbox for gallery */
/* Professional Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

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

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-title {
  color: #fff;
  font-size: 1.1rem;
  margin-top: 20px;
  text-align: center;
  padding: 0 40px;
  line-height: 1.5;
  max-width: 600px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2001;
}

.lightbox-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.lightbox-close::before,
.lightbox-close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2001;
}

.lightbox-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.lightbox-nav::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.lightbox-nav.prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.lightbox-nav.next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

.lightbox-nav.hidden {
  display: none;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
}

/* Prevent background scroll when lightbox is open */
body.noscroll {
  overflow: hidden;
}

/* Responsive lightbox */
@media (max-width: 768px) {
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .lightbox-close::before,
  .lightbox-close::after {
    width: 18px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }

  .lightbox-nav::before {
    width: 10px;
    height: 10px;
  }

  .lightbox-title {
    font-size: 0.95rem;
    padding: 0 20px;
  }

  .lightbox-content img {
    max-height: 65vh;
  }
}

/* Consultation page styles */
.consultation-details {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
}

.consultation-details h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.consultation-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.consultation-list li {
  padding: 12px 0;
  color: var(--text);
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 153, 216, 0.2);
}

.consultation-list li:last-child {
  border-bottom: none;
}

.consultation-info {
  background: rgba(255, 153, 216, 0.1);
  padding: 20px;
  border-radius: 12px;
  margin-top: 25px;
}

.consultation-info p {
  margin: 0;
  color: var(--text);
}

/* Offer page styles */
.offer-intro {
  text-align: center;
  margin-bottom: 60px;
}

.offer-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), #ff66cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.1), rgba(255, 102, 204, 0.05));
  border-radius: 16px;
  border: 1px solid rgba(255, 153, 216, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 153, 216, 0.3);
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-content {
  flex: 1;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(255, 153, 216, 0.3));
}

.service-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.service-image img:hover {
  transform: scale(1.05);
}

/* New Offer page styles */
.offer-category {
  margin-bottom: 80px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 153, 216, 0.3);
}

.category-icon {
  font-size: 3rem;
  filter: drop-shadow(0 2px 4px rgba(255, 153, 216, 0.3));
}

.category-header h2 {
  font-size: 2.2rem;
  margin: 0;
  background: linear-gradient(135deg, var(--primary), #ff66cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-description {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
}

/* Offer service - full width with gallery */
.offer-service {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.08), rgba(255, 102, 204, 0.03));
  border-radius: 20px;
  border: 1px solid rgba(255, 153, 216, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 153, 216, 0.2);
}

.offer-service-reverse {
  flex-direction: row-reverse;
}

.offer-service-content {
  flex: 1;
  min-width: 0;
}

.offer-service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.offer-service-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

.offer-styles {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px;
  border-radius: 12px;
  margin-top: 25px;
}

.offer-styles h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.offer-styles ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-styles li {
  padding: 10px 0;
  color: var(--text);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 153, 216, 0.1);
  line-height: 1.6;
}

.offer-styles li:last-child {
  border-bottom: none;
}

.offer-styles li strong {
  color: var(--primary);
}

.offer-service-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-shrink: 0;
}

.offer-gallery-row {
  display: flex;
  gap: 15px;
}

.offer-service-gallery img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid rgba(255, 153, 216, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.offer-service-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 153, 216, 0.4);
  border-color: var(--primary);
}

/* Offer services grid - for smaller services */
.offer-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offer-service-card {
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.08), rgba(255, 102, 204, 0.03));
  border-radius: 20px;
  border: 1px solid rgba(255, 153, 216, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 153, 216, 0.25);
}

.offer-card-image {
  position: relative;
  overflow: hidden;
}

.offer-card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offer-service-card:hover .offer-card-image img {
  transform: scale(1.05);
}

.offer-card-content {
  padding: 25px;
}

.offer-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.offer-card-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* Offer gallery image cursor */
.offer-gallery-img {
  cursor: pointer;
}

.why-choose {
  margin-bottom: 60px;
  text-align: center;
}

.why-choose h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--primary), #ff66cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.benefit-item {
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.1), rgba(255, 102, 204, 0.05));
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 153, 216, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.benefit-item p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

/* Gallery page styles */
.gallery-intro {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), #ff66cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-section {
  margin-bottom: 60px;
}

/* New Gallery Grid - 4 columns desktop, 2 mobile */
.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid rgba(255, 153, 216, 0.2);
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 153, 216, 0.4);
  border-color: var(--primary);
}

/* Legacy gallery support */
.gallery img {
  width: 100%;
  max-width: 600px;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid rgba(255, 153, 216, 0.2);
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 153, 216, 0.4);
  border-color: var(--primary);
}

/* Testimonials page styles */
.testimonials-intro {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), #ff66cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.1), rgba(255, 102, 204, 0.05));
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 153, 216, 0.2);
  border-left: 4px solid var(--primary);
  margin: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 153, 216, 0.3);
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.testimonial-text.testimonial-preview {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-toggle {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.testimonial-toggle:hover {
  background: var(--primary);
  color: var(--background);
}

.testimonial-card footer {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  font-style: normal;
  margin-top: 15px;
}

/* Reviews links section */
.reviews-links {
  margin-bottom: 60px;
  text-align: center;
}

.reviews-links h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary);
}

.reviews-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 600px;
  margin: 0 auto;
}

.review-link-card {
  background: linear-gradient(135deg, rgba(255, 153, 216, 0.1), rgba(255, 102, 204, 0.05));
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 153, 216, 0.2);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 153, 216, 0.3);
  border-color: var(--primary);
}

.review-link-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(255, 153, 216, 0.3));
}

.review-link-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.review-link-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Voucher page styles */
.voucher-features {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
}

.voucher-features h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.voucher-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.voucher-list li {
  padding: 15px 0;
  color: var(--text);
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 153, 216, 0.2);
}

.voucher-list li:last-child {
  border-bottom: none;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
  .service-item {
    flex-direction: column !important;
    padding: 25px;
  }

  .service-item.reverse {
    flex-direction: column !important;
  }

  .service-image {
    width: 100%;
  }

  .service-image img {
    max-width: 100%;
  }

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

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

  .reviews-links-grid {
    grid-template-columns: 1fr;
  }

  .gallery img {
    max-width: 100%;
    height: 400px;
  }

  /* Gallery grid responsive - 2 columns on mobile */
  .gallery-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-grid {
    gap: 15px;
  }

  .consultation-list {
    max-width: 100%;
  }

  /* Offer page responsive */
  .offer-service {
    flex-direction: column !important;
    padding: 25px;
  }

  .offer-service-gallery {
    flex-direction: column;
    align-items: center;
  }

  .offer-gallery-row {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .offer-service-gallery img {
    width: 100%;
    max-width: 280px;
    height: 280px;
  }

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

  .offer-card-image img {
    height: 220px;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .category-header h2 {
    font-size: 1.8rem;
  }

  /* Home services grid responsive */
  .home-services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  .home-service-card {
    min-width: 0;
  }

  .home-service-content {
    padding: 18px;
  }

  .home-service-content h3 {
    font-size: 1.1rem;
  }

  .home-service-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero {
    gap: 30px;
  }

  .hero h1 {
    font-size: 0.7rem;
  }

  .hero-badge {
    font-size: 2rem;
    padding: 5px 12px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-services {
    gap: 8px;
  }

  .hero-service-tag {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-coming-soon {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 0.8rem;
  }

  .hero-image-wrapper {
    max-width: 280px;
  }

  .hero-image-decoration {
    top: 10px;
    right: -10px;
    bottom: -10px;
    left: 10px;
  }

  .floating-phone {
    bottom: 12px;
    right: 12px;
    left: auto;
    /* Force visible on small mobile - no JS needed */
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    -webkit-transform: translateY(0) scale(1) !important;
    pointer-events: all !important;
  }

  .floating-phone.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .floating-phone-close {
    width: 24px;
    height: 24px;
    font-size: 16px;
    top: -6px;
    right: -6px;
  }

  .floating-phone-link {
    padding: 10px 14px;
    gap: 10px;
    border-radius: 40px;
  }

  .floating-phone-icon {
    font-size: 1.4rem;
  }

  .floating-phone-label {
    font-size: 0.7rem;
  }

  .floating-phone-number {
    font-size: 0.95rem;
  }

  .btn-call {
    padding: 12px 18px;
    gap: 10px;
  }

  .btn-call-icon {
    font-size: 1.6rem;
  }

  .btn-call-icon svg {
    width: 22px;
    height: 22px;
  }

  .btn-call-label {
    font-size: 0.9rem;
  }

  .btn-call-number {
    font-size: 0.8rem;
  }

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

  .home-service-card {
    width: 100%;
  }

  .home-service-image {
    width: 100%;
  }

  .home-service-content {
    padding: 15px;
  }

  .home-service-content h3 {
    font-size: 1rem;
  }

  .home-service-content p {
    font-size: 0.85rem;
  }
}