    /* ======================================================
       ROOT VARIABLES
    ====================================================== */
    :root {
      --color-gold: #c9a24d;
      --color-charcoal: #1f1f1f;
      --color-gray: #5f5f5f;
      --color-light: #f7f7f7;
      --color-red: #e63946;
      --font-primary: 'Inter', system-ui, sans-serif;
      --radius: 12px;
      --transition: 0.3s ease;
      --header-height: 90px;
    }

    /* ======================================================
       BASE
    ====================================================== */
    *, *::before, *::after { box-sizing: border-box; }
    body { margin:0; font-family: var(--font-primary); color: var(--color-charcoal); background: var(--color-light); overflow-x:hidden; }
    h1,h2,h3,h4 { margin:0; font-weight:700; color: var(--color-charcoal); }
    p { margin:0 0 1.5rem; color: var(--color-gray); }
    a { text-decoration:none; color: inherit; transition: color var(--transition);}
    a:hover { color: var(--color-gold); }
    .container { max-width: 1200px; margin:0 auto; padding:0 1.5rem; }
/* ======================================================
   LANDING MENU BUTTON (CENTERED FLOATING)
====================================================== */
.landing-header {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000; /* above hero */
  pointer-events: none;
}

.landing-menu-toggle {
  pointer-events: all;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.landing-menu-toggle:hover {
  background: rgba(0,0,0,0.55);
  transform: scale(1.05);
}

/* ======================================================
   LANDING SLIDE-IN MENU
====================================================== */
.landing-menu {
  position: fixed;
  inset: 0; /* full screen */
  background: rgba(20, 20, 20, 0.96);
  z-index: 2500; /* above everything */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.7,.1,.2,1);
  pointer-events: all;
}

/* Menu open */
.landing-menu.is-open {
  transform: translateX(0);
}

/* Close button X */
.landing-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2600; /* above menu links */
  transition: transform 0.2s ease, color 0.2s ease;
}

.landing-menu-close:hover {
  color: var(--color-gold);
  transform: scale(1.1);
}

/* Menu links with slide-in animation */
.landing-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  z-index: 2550;
}

.landing-menu-nav a {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  pointer-events: auto;
  opacity: 0;
  transform: translateX(-50px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.landing-menu.is-open .landing-menu-nav a {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delay for links */
.landing-menu.is-open .landing-menu-nav a:nth-child(1) { transition-delay: 0.1s; }
.landing-menu.is-open .landing-menu-nav a:nth-child(2) { transition-delay: 0.2s; }
.landing-menu.is-open .landing-menu-nav a:nth-child(3) { transition-delay: 0.3s; }
.landing-menu.is-open .landing-menu-nav a:nth-child(4) { transition-delay: 0.4s; }

.landing-menu-nav a:hover {
  color: var(--color-gold);
  transform: translateX(6px);
}

/* Social icons with slide-up animation */
.landing-menu-socials {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  z-index: 2550;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition-delay: 0.5s; /* after links */
}

.landing-menu.is-open .landing-menu-socials {
  opacity: 1;
  transform: translateY(0);
}

.landing-menu-socials a {
  font-size: 2rem;
  color: var(--color-gold);
  transition: transform 0.3s ease, color 0.3s ease;
}

.landing-menu-socials a:hover {
  transform: scale(1.3);
  color: #e63946;
}

/* Prevent hero interaction while menu is open */
body.menu-open {
  overflow: hidden;
}

/* HERO */
/* HERO */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 90vh;
  overflow: hidden;
  color: white;
  background-image: url('/images/lap.jpg'); /* your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay for pink blur */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255,105,180,0.3); /* pink with 20% opacity */
  backdrop-filter: blur(20px);
  transition: opacity 3s ease-out, backdrop-filter 3s ease-out;
  z-index: 0;
}

/* Remove overlay after 3 seconds */
.hero.visible::before {
  opacity: 0;
  backdrop-filter: blur(0px);
}

/* Hero text */
.hero-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

    /* ======================================================
       FOOTER
    ====================================================== */
    footer {
      background: #141414;
      color: #e6e6e6;
      padding: 4rem 1.5rem;
    }
    .footer-inner { display:flex; flex-wrap:wrap; gap:3rem; max-width:1200px; margin:0 auto; }
    .footer-left, .footer-right { flex:1 1 300px; min-width:280px; }
    .footer-left h3, .footer-right h3 { color: var(--color-gold); margin-bottom:1rem; }
    .footer-left p { color:#aaa; margin-bottom:0.5rem; }
    .footer-social { display:flex; gap:1rem; margin:0.5rem 0 1rem 0; }
    .footer-social a { font-size:1.8rem; color: #c9a24d; transition: transform 0.3s, color 0.3s; }
    .footer-social a:hover { transform:scale(1.2); color:#fff; }
    .contact-form { display:flex; flex-direction:column; gap:1rem; margin-top:1rem; }
    .contact-form input, .contact-form textarea { padding:0.75rem 1rem; border-radius:8px; border:1px solid #333; background:#1f1f1f; color:#fff; font-size:1rem; width:100%; }
    .contact-form input::placeholder, .contact-form textarea::placeholder { color:#aaa; }
    .contact-form button { padding:0.75rem 1.5rem; background: #c9a24d; border:none; border-radius:8px; color:#141414; font-weight:600; cursor:pointer; transition: background 0.3s, transform 0.2s; align-self:flex-start; }
    .contact-form button:hover { background:#a58436; transform: translateY(-2px); }
    .footer-legal { margin-top:1.5rem; font-size:0.875rem; color:#aaa; }
    .footer-legal a { color:#aaa; text-decoration:none; margin-right:0.5rem; transition: color 0.3s; }
    .footer-legal a:hover { color:var(--color-gold); }
    .footer-right a { display:block; color:#e6e6e6; margin-bottom:0.75rem; transition: color 0.3s; }
    .footer-right a:hover { color: var(--color-gold); }
    .footer-right .copy { margin-top:2rem; font-size:0.875rem; color:#aaa; }
    @media(max-width:768px){
      .footer-inner { flex-direction:column; gap:2rem; }
      .footer-left, .footer-right { flex:1 1 100%; }
      .footer-social { justify-content:flex-start; }
      .footer-legal, .footer-right .copy { text-align:left; }
    }

    /* DISABLE TEXT SELECTION */
    body, * { user-select:none; -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; }

    /* HERO ANIMATION */
    .hero-content { opacity:0; transform: translateY(30px); transition: opacity 1s ease-out, transform 1s ease-out; }
    .hero-content.visible { opacity:1; transform: translateY(0); }


                              /* MOBILE MENU SOCIAL ICONS */
.mobile-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  justify-content: center;
}

.mobile-social a {
  font-size: 2rem;
  color: #c9a24d;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-social a:hover {
  transform: scale(1.3);
  color: #e63946; /* nice contrast on hover */
}
html,
body {
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .reveal {
    transform: translateX(60px) scale(0.95);
    filter: blur(8px);
  }

  .reveal.active {
    transform: translateX(0) scale(1);
  }
}

/* Responsive */
@media(max-width:768px) {
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
                              
/* Responsive */
@media(max-width:768px){
  .cta-buttons-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Services Section */
.services-section {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-section .section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
  color: var(--color-charcoal);
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media(max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Card Styles */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 28px rgba(0,0,0,0.15);
}

/* Card Image */
.service-card .card-image {
  overflow: hidden;
}

.service-card .card-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Card Header */
.service-card header h3 {
  margin: 1rem 0 0.75rem 0;
  font-size: 1.3rem;
  color: var(--color-charcoal);
}

/* Card Text */
.service-card p {
  padding: 0 1rem 1.5rem 1rem;
  font-size: 1rem;
  color: var(--color-gray);
}

/* Reveal Animation */
.service-card.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.service-card.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* center horizontally */
  gap: 1.5rem;
}
.hero-logo-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-logo-btn img {
  width: 60%;
  height: auto;
}

.hero-logo-btn:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.2);
}

/* Bottom CTA button */
.hero-cta-btn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 105, 180, 0.2); /* soft pink */
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-cta-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 105, 180, 0.4); /* darker pink on hover */
}

.hero-logo-btn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.hero-logo-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* logo completely fills the circle */
  border-radius: 50%;
}

/* Bottom CTA button */
.hero-cta-btn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 105, 180, 0.2); /* pink fill */
  color: white;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-cta-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 105, 180, 0.4);
}

/* ===============================
   FIX: Disable blur for services cards on mobile
================================ */
@media (max-width: 768px) {
  .services-section .service-card.reveal {
    filter: none !important;
    transform: translateY(30px) scale(0.97);
  }

  .services-section .service-card.reveal.active {
    filter: none !important;
    transform: translateY(0) scale(1);
  }
}
/* Logo button inside the expanded menu */
/* Logo button inside the expanded menu */
.menu-logo-btn {
  width: 100px;
  aspect-ratio: 1 / 1;       /* π forces perfect square */
  border-radius: 50%;
  border: none;
  margin: 0 auto 2rem auto;
  display: grid;             /* safer than flex here */
  place-items: center;
  background: none;
  cursor: pointer;
  overflow: hidden;          /* π clips image */
  padding: 0;
  flex-shrink: 0;            /* π prevents flex squeeze */
  transition: transform 0.3s ease;
}

.menu-logo-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* fills the circle */
  border-radius: 50%;
  display: block;
}

.menu-logo-btn:hover {
  transform: scale(1.05);
}

#contactMessage {
    display: block !important;        /* ensure its not hidden */
    opacity: 0 !important;            /* start invisible for fade */
    padding: 10px 20px !important;
    border-radius: 8px !important;
    text-align: center !important;
    margin-top: 10px !important;
    font-weight: bold !important;
    background-color: #4caf50 !important; /* green for success */
    color: #fff !important;
    transition: opacity 0.5s ease !important;
    pointer-events: none; /* avoid blocking clicks */
    z-index: 9999; /* above everything */
    position: relative;
}

#contactMessage.show {
    opacity: 1 !important;            /* fade in */
}

#contactMessage {
    display: block !important;
    opacity: 0 !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    text-align: center !important;
    margin-top: 8px !important;      /* ensures space below button */
    font-weight: bold !important;
    background-color: #4caf50 !important; /* green for success */
    color: #fff !important;
    transition: opacity 0.5s ease !important;
    pointer-events: none;
    z-index: 10;                      /* above nearby elements */
    position: relative;
    width: 100%;                       /* full width of form */
    box-sizing: border-box;
}
#contactMessage {
    transition: opacity 0.8s ease !important;  /* slightly slower fade */
}


