/* =============================================
   ReserveNow — Main Stylesheet
   Color Palette:
     #F2D22F  Yellow
     #F4BC2D  Golden Yellow
     #EAA929  Amber
     #DD8B26  Dark Amber
     #CF5525  Orange-Red
     #656565  Gray
============================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Dancing+Script:wght@700&display=swap');

/* ── CSS Variables ── */
:root {
  --yellow:       #F2D22F;
  --golden:       #F4BC2D;
  --amber:        #EAA929;
  --dark-amber:   #DD8B26;
  --orange-red:   #CF5525;
  --gray:         #656565;
  --gray-light:   #f5f5f5;
  --gray-dark:    #333333;
  --white:        #ffffff;

  --gradient-primary: linear-gradient(135deg, #F2D22F 0%, #EAA929 40%, #CF5525 100%);
  --gradient-warm:    linear-gradient(135deg, #F4BC2D 0%, #DD8B26 100%);
  --gradient-hero:    linear-gradient(160deg, #F2D22F 0%, #EAA929 35%, #DD8B26 65%, #CF5525 100%);

  --shadow-sm:  0 2px 8px rgba(207, 85, 37, .15);
  --shadow-md:  0 8px 30px rgba(207, 85, 37, .20);
  --shadow-lg:  0 20px 60px rgba(207, 85, 37, .25);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --font-main: 'Poppins', sans-serif;
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ── Utility ── */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(242, 210, 47, .15);
  border: 1px solid rgba(242, 210, 47, .4);
  color: var(--dark-amber);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

/* ── Buttons ── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary-custom:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--white); }
.btn-primary-custom:hover::after { opacity: 1; }
.btn-primary-custom:active { transform: translateY(0); }

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}


.btn-outline-custom2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-warm);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-custom2:hover {
/*   background: rgba(255,255,255,.15); */
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}




.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--orange-red);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  background: var(--orange-red);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ── Navbar ── */
#mainNavbar {
  padding: 10px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

#mainNavbar .nav-link { color: var(--gray-dark) !important; }
#mainNavbar .nav-link:hover { color: var(--orange-red) !important; }
#mainNavbar .navbar-brand .logo-text { color: var(--gray-dark); }

.navbar-brand { display: flex; align-items: center; gap: 10px; }
.navbar-brand img { height: 48px; width: auto; }
.navbar-brand .logo-text {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gray-dark);
  transition: var(--transition);
}
.navbar-brand .logo-text span { font-family: 'Dancing Script', cursive; font-size: 1.6rem; }

.nav-link {
  color: var(--gray-dark) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler { border: 2px solid var(--amber); }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255,255,255,.12) 0%, transparent 70%),
    radial-gradient(circle at 10% 80%, rgba(207,85,37,.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: blobPulse 8s ease-in-out infinite alternate;
}

.hero-blob-1 {
  width: 500px; height: 500px;
  background: rgba(242, 210, 47, .25);
  top: -150px; right: -100px;
}

.hero-blob-2 {
  width: 350px; height: 350px;
  background: rgba(207, 85, 37, .2);
  bottom: -80px; left: -80px;
  animation-delay: 3s;
}

@keyframes blobPulse {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(20px, -20px); }
}

.hero-content { position: relative; z-index: 2; padding-top: 80px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-title .accent {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 1.1em;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 400;
  line-height: 1.75;
}

.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat .label {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero phone mockup */
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; overflow: visible; }

.phone-mockup-wrapper {
  position: relative;
  width: 500px;
  display: flex;
  justify-content: center;
  animation: floatPhone 5s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-20px) rotate(2deg); }
}

.phone-mockup {
  width: 280px;
  background: var(--gray-dark);
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 40px 100px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
}

.phone-notch {
  width: 110px; height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 12px;
  position: relative;
}

.phone-notch::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #2a2a2a;
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 2px rgba(255,255,255,.05);
}

.phone-screen {
  background: #1c1c2e;
  border-radius: 34px;
  overflow: hidden;
  min-height: 520px;
}

.phone-header {
  background: var(--gradient-hero);
  padding: 22px 20px 28px;
  position: relative;
}

.phone-header::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 0; right: 0;
  height: 40px;
  background: #1c1c2e;
  border-radius: 20px 20px 0 0;
}

.phone-header-text { color: var(--white); font-size: .7rem; opacity: .8; }
.phone-header-loc {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.phone-search {
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.phone-search-text { color: rgba(255,255,255,.7); font-size: .75rem; }

.phone-body { padding: 28px 16px 16px; }

.phone-section-title {
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-section-title span { color: var(--amber); font-size: .7rem; font-weight: 500; }

.phone-categories {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 20px;
}

.phone-cat-item {
  flex-shrink: 0;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
  min-width: 62px;
}

.phone-cat-item .icon { font-size: 1.3rem; }
.phone-cat-item .name { color: rgba(255,255,255,.7); font-size: .6rem; margin-top: 4px; }

.phone-card {
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.phone-card-img {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.phone-card-title { color: var(--white); font-size: .75rem; font-weight: 600; }
.phone-card-sub { color: rgba(255,255,255,.5); font-size: .65rem; margin-top: 2px; }
.phone-card-rating { color: var(--amber); font-size: .65rem; margin-top: 4px; }

/* Floating badges on phone */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 9999;
}

.float-badge-1 {
  top: 18%;
  right: -80px;
  color: var(--orange-red);
  animation-delay: 1s;
}

.float-badge-2 {
  bottom: 22%;
  left: -30px;
  color: var(--dark-amber);
  animation-delay: 2.5s;
}

.float-badge .sub { color: var(--gray); font-size: .68rem; font-weight: 400; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Section Titles ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow { margin-bottom: 12px; }
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Features ── */
#features { background: var(--gray-light); }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon-wrap {
  width: 68px; height: 68px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.feature-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-dark);
}

.feature-card p {
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* ── How it Works ── */
#how-it-works { background: var(--white); }

.step-wrapper { position: relative; }

.step-connector {
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--orange-red));
  opacity: .25;
  display: none;
}

@media (min-width: 992px) { .step-connector { display: block; } }

.step-card {
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-number-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.step-number-wrap::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px dashed var(--amber);
  opacity: .4;
  animation: rotateDash 15s linear infinite;
}

@keyframes rotateDash {
  to { transform: rotate(360deg); }
}

.step-card:hover .step-number-wrap { transform: scale(1.12); box-shadow: var(--shadow-lg); }

.step-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.step-card p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* ── Categories ── */
#categories { background: var(--gray-light); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 16px 22px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover {
  border-color: var(--amber);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.category-card:hover::before { opacity: .05; }

.category-card .cat-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
  transition: var(--transition);
}

.category-card:hover .cat-icon { transform: scale(1.2); }

.category-card h6 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 4px;
  position: relative;
}

.category-card p {
  font-size: .75rem;
  color: var(--gray);
  margin: 0;
  position: relative;
}

/* ── For Businesses ── */
#for-business {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

#for-business::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(255,255,255,.1) 0%, transparent 70%);
  pointer-events: none;
}

.business-feature-list { list-style: none; padding: 0; }

.business-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  color: rgba(255,255,255,.9);
  font-size: .97rem;
  line-height: 1.6;
}

.business-feature-list li .check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 1.5px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .75rem;
  color: var(--white);
  margin-top: 1px;
}

.business-card-visual {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  color: var(--white);
}

.business-card-visual h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.metric-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.metric-item:last-of-type { border-bottom: none; }

.metric-label { font-size: .85rem; opacity: .8; }
.metric-value { font-size: 1.1rem; font-weight: 700; }

.metric-bar-wrap { margin-top: 6px; }
.metric-bar-bg { background: rgba(255,255,255,.15); border-radius: 50px; height: 6px; overflow: hidden; }
.metric-bar { height: 100%; border-radius: 50px; background: var(--yellow); transition: width 1.5s ease; }

/* ── Testimonials ── */
#testimonials { background: var(--white); }

.testimonial-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  border: 1px solid rgba(0,0,0,.04);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--amber);
  opacity: .18;
  line-height: 1;
}

.testimonial-stars { color: var(--amber); font-size: .85rem; margin-bottom: 14px; }
.testimonial-text { font-size: .95rem; color: var(--gray-dark); line-height: 1.75; margin-bottom: 22px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-main);
  flex-shrink: 0;
}
.testimonial-author .name { font-weight: 700; font-size: .92rem; color: var(--gray-dark); }
.testimonial-author .role { font-size: .78rem; color: var(--gray); }

/* ── Download ── */
#download {
  background: var(--gray-dark);
  position: relative;
  overflow: hidden;
}

#download::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(234,169,41,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 70% at 100% 50%, rgba(207,85,37,.12) 0%, transparent 60%);
  pointer-events: none;
}

#download .section-title { color: var(--white); }
#download .section-subtitle { color: rgba(255,255,255,.6); }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  color: var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.store-btn:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--amber);
  transform: translateY(-3px);
  color: var(--white);
}

.store-btn .store-icon { font-size: 2rem; }
.store-btn .store-copy { text-align: left; }
.store-btn .store-small { font-size: .7rem; opacity: .7; display: block; }
.store-btn .store-name { font-size: 1.05rem; font-weight: 700; display: block; margin-top: 1px; }

/* ── Contact ── */
#contact { background: var(--gray-light); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-floating label { font-size: .88rem; color: var(--gray); }

.form-control, .form-select {
  border-radius: var(--radius-sm) !important;
  border-color: #e0e0e0;
  font-size: .92rem;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--amber) !important;
  box-shadow: 0 0 0 3px rgba(234,169,41,.15) !important;
}

.contact-info-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h4 { font-weight: 800; font-size: 1.5rem; margin-bottom: 12px; }
.contact-info-card p { opacity: .85; font-size: .95rem; line-height: 1.7; margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-item .icon-wrap {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item .text small { opacity: .75; font-size: .75rem; display: block; }
.contact-item .text strong { font-size: .9rem; }

.social-links { display: flex; gap: 12px; margin-top: 28px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  transition: var(--transition);
}

.social-link:hover { background: rgba(255,255,255,.3); transform: translateY(-3px); color: var(--white); }

/* ── Footer ── */
footer {
  background: #1a1a1a;
  color: rgba(255,255,255,.7);
  padding: 70px 0 30px;
}

footer .footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
footer .footer-brand img { height: 44px; }
footer .footer-brand .name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
footer .footer-brand .name span { font-family: 'Dancing Script', cursive; font-size: 1.45rem; }

footer .footer-desc { font-size: .88rem; line-height: 1.7; max-width: 280px; }

.footer-heading {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--amber); padding-left: 4px; }

.footer-divider {
  border-color: rgba(255,255,255,.08);
  margin: 40px 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}

.footer-bottom a { color: var(--amber); }
.footer-bottom a:hover { color: var(--yellow); }

/* ── Alert / Toast ── */
#formAlert {
  border-radius: var(--radius-sm);
  font-size: .9rem;
  display: none;
}

/* ── Scroll To Top ── */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}

#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── AOS-like reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Map placeholder ── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
  background: linear-gradient(135deg, #1c1c2e 0%, #2d2d44 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-overlay {
  text-align: center;
  color: rgba(255,255,255,.7);
}

.map-overlay i { font-size: 3rem; margin-bottom: 12px; color: var(--amber); }
.map-overlay p { font-size: .9rem; }

.map-pin {
  position: absolute;
  animation: mapPulse 2.5s ease-in-out infinite;
}

.map-pin-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange-red);
  box-shadow: 0 0 0 6px rgba(207,85,37,.25);
}

@keyframes mapPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}

/* ── Responsiveness ── */
@media (max-width: 991px) {
  .section-padding { padding: 72px 0; }
  .hero-content { padding-top: 100px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 48px; }
  .phone-mockup-wrapper { width: 100%; justify-content: center; }
  .phone-mockup { width: 240px; }
  .float-badge-1 { right: 0; top: 10%; }
  .float-badge-2 { left: 0; bottom: 15%; }
}

@media (max-width: 575px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-stat .number { font-size: 1.55rem; }
}
