/* ============================================================
   GlowUp Studio - Beauty Parlor & Bridal Makeup Studio
   Main Stylesheet
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:wght@300;400;500;600&family=Lato:wght@300;400;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary:     #c8847a;   /* dusty rose */
  --primary-dark:#b06860;
  --secondary:   #e8c8b8;   /* blush peach */
  --accent:      #8e6b5e;   /* warm mocha */
  --gold:        #c9a96e;   /* warm gold */
  --gold-light:  #f0dfc0;
  --dark:        #2c1a16;   /* deep espresso */
  --text-muted:  #7a6060;
  --bg-cream:    #fdf6f0;
  --bg-soft:     #faf2ee;
  --white:       #ffffff;
  --shadow-soft: 0 4px 30px rgba(200,132,122,0.12);
  --shadow-md:   0 8px 40px rgba(200,132,122,0.18);
  --radius:      12px;
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Base Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

p { line-height: 1.8; color: var(--text-muted); }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; }

/* ---------- Utility ---------- */
.text-primary-custom { color: var(--primary) !important; }
.text-gold           { color: var(--gold)   !important; }
.text-accent         { color: var(--accent) !important; }
.bg-cream            { background-color: var(--bg-cream); }
.bg-soft             { background-color: var(--bg-soft); }
.section-pad         { padding: 90px 0; }
.section-pad-sm      { padding: 60px 0; }

/* ---------- Section Heading ---------- */
.section-heading {
  text-align: center;
  margin-bottom: 55px;
}
.section-heading .subtitle {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-heading h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 18px;
}
.section-heading p {
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
}
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.divider-ornament span {
  display: block;
  height: 1px;
  width: 55px;
  background: var(--gold);
}
.divider-ornament i { color: var(--gold); font-size: 0.75rem; }

/* ---------- Buttons ---------- */
.btn-glowup {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(200,132,122,0.35);
  position: relative;
  overflow: hidden;
}
.btn-glowup::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-20deg);
  transition: var(--transition);
}
.btn-glowup:hover::after { left: 150%; }
.btn-glowup:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,132,122,0.45);
}

.btn-outline-glowup {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 34px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  background: transparent;
}
.btn-outline-glowup:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(200,132,122,0.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8884e);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #b8884e, var(--gold));
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar-glowup {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(44,26,22,0.08);
  padding: 12px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.navbar-glowup.scrolled {
  box-shadow: 0 4px 32px rgba(44,26,22,0.14);
}

.navbar-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark) !important;
  letter-spacing: -0.3px;
  line-height: 1;
}
.navbar-brand-text span { color: var(--primary); }
.navbar-brand-sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.navbar-nav .nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--dark) !important;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 1.5px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary) !important; }

.navbar-toggler {
  border: none;
  padding: 6px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c8847a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.pexels.com/photos/29548006/pexels-photo-29548006.jpeg') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,26,22,0.78) 0%, rgba(142,107,94,0.55) 60%, rgba(200,132,122,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,169,110,0.25);
  border: 1px solid rgba(201,169,110,0.55);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInLeft 1s ease 0.2s both;
}
.hero-title em { color: var(--primary); font-style: normal; }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 38px;
  line-height: 1.8;
  max-width: 480px;
  animation: fadeInLeft 1s ease 0.4s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInLeft 1s ease 0.6s both;
}
.hero-scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll-down a {
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
}
.hero-stats {
  position: absolute;
  right: 5%;
  bottom: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInRight 1s ease 0.8s both;
}
.hero-stat-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  min-width: 110px;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ---------- Services Cards ---------- */
.service-card {
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}
.service-icon-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(200,132,122,0.12), rgba(201,169,110,0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--gold));
}
.service-icon-wrap i {
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap i { color: var(--white); }
.service-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p { font-size: 0.9rem; margin-bottom: 0; }

/* ---------- Image Carousel ---------- */
.carousel-glowup .carousel-item img {
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}
.carousel-glowup .carousel-caption {
  background: rgba(44,26,22,0.65);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 22px 28px;
  bottom: 36px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: max-content;
  max-width: 90%;
  text-align: center;
}
.carousel-glowup .carousel-indicators [data-bs-target] {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
}
.carousel-glowup .carousel-indicators .active { background: var(--gold); }
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

/* ---------- Special Offers ---------- */
.offer-card {
  background: linear-gradient(135deg, #fff9f7, #fdf0eb);
  border: 1px solid rgba(200,132,122,0.2);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.offer-card::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(201,169,110,0.08);
}
.offer-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}
.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.offer-title { font-size: 1.15rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.offer-price-wrap { margin: 16px 0; }
.offer-old-price { font-size: 0.9rem; color: #aaa; text-decoration: line-through; }
.offer-new-price { font-size: 1.7rem; font-weight: 700; color: var(--primary); line-height: 1; }
.offer-new-price small { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201,169,110,0.1);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(200,132,122,0.12);
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; }
.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); margin-bottom: 2px; }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- Counters ---------- */
.counter-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
  padding: 70px 0;
}
.counter-item { text-align: center; padding: 20px; }
.counter-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.counter-number span { color: var(--gold); }
.counter-label {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}
.counter-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
  margin: 0 auto;
}

/* ---------- Pricing / Service Page Cards ---------- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201,169,110,0.12);
  transition: var(--transition);
  height: 100%;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.pricing-card .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}
.pricing-card:hover .card-img-top { transform: scale(1.04); }
.pricing-card-img-wrap { overflow: hidden; }
.pricing-card .card-body { padding: 24px; }
.pricing-card .card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.pricing-card .card-text { font-size: 0.88rem; margin-bottom: 16px; }
.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(200,132,122,0.1), rgba(201,169,110,0.1));
  border: 1px solid rgba(200,132,122,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}
.price-tag.price-featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  color: var(--white);
}
.category-pill {
  display: inline-block;
  background: rgba(201,169,110,0.12);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* ---------- Bridal Section ---------- */
.bridal-hero {
  background: url('https://images.unsplash.com/photo-1621801306185-8c0ccf9c8eb8?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
}
.bridal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,26,22,0.85) 0%, rgba(44,26,22,0.4) 100%);
}
.bridal-hero .hero-content { position: relative; z-index: 2; color: var(--white); }

.bridal-package-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.bridal-package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.package-header {
  padding: 28px 26px;
  position: relative;
}
.package-header.silver { background: linear-gradient(135deg, #e8e8e8, #c8c8c8); }
.package-header.gold-pkg { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.package-header.platinum { background: linear-gradient(135deg, var(--dark), var(--accent)); }
.package-header.diamond { background: linear-gradient(135deg, #e8d5e0, #d4a0b8); }

.package-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}
.package-header.platinum .package-name,
.package-header.platinum .package-price { color: var(--white); }
.package-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.package-price small { font-size: 0.8rem; font-weight: 400; font-family: 'Lato', sans-serif; }
.package-body { background: var(--white); padding: 24px; border: 1px solid rgba(201,169,110,0.12); border-top: none; border-radius: 0 0 var(--radius) var(--radius); }
.package-feature { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.88rem; }
.package-feature i { color: var(--gold); font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }
.popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.gallery-item { overflow: hidden; border-radius: var(--radius); position: relative; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,26,22,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay i { color: var(--white); font-size: 1.5rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- About Page ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--accent));
  background:url(https://images.pexels.com/photos/31832651/pexels-photo-31832651.jpeg) center/cover no-repeat;
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(200,132,122,0.08);
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 12px auto 0; position: relative; z-index: 1; }
.breadcrumb-custom { justify-content: center; position: relative; z-index: 1; }
.breadcrumb-custom .breadcrumb-item a { color: var(--gold); }
.breadcrumb-custom .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.team-img-wrap { position: relative; overflow: hidden; }
.team-img-wrap img { height: 280px; width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-social {
  position: absolute;
  bottom: 14px; right: 14px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.team-card:hover .team-social { opacity: 1; transform: translateY(0); }
.team-social a {
  width: 34px; height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.82rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.team-info { padding: 22px; }
.team-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; color: var(--dark); }
.team-role { font-size: 0.78rem; color: var(--primary); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.achievement-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(200,132,122,0.12), rgba(201,169,110,0.12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.achievement-icon i { color: var(--gold); font-size: 1.2rem; }

/* ---------- Contact Page ---------- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201,169,110,0.12);
}
.contact-info-item { display: flex; gap: 18px; margin-bottom: 26px; align-items: flex-start; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(200,132,122,0.1), rgba(201,169,110,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--primary); font-size: 1.1rem; }
.contact-label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 3px; }
.contact-value { font-size: 0.92rem; color: var(--dark); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201,169,110,0.12);
}
.form-control-glowup {
  border: 1.5px solid rgba(201,169,110,0.25);
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--bg-cream);
  color: var(--dark);
}
.form-control-glowup:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,132,122,0.1);
  background: var(--white);
  outline: none;
}
.form-control-glowup.is-invalid { border-color: #dc3545; }
.form-control-glowup::placeholder { color: #b8a0a0; }
.form-label-glowup { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }

.map-container iframe {
  width: 100%; height: 380px;
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow-soft);
}

.social-links-bar { display: flex; gap: 14px; flex-wrap: wrap; }
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(201,169,110,0.2);
}
.social-link:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.75);
}
.footer-brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-title span { color: var(--primary); }
.footer-brand-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.footer-tagline { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.footer h5 {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--primary); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.88rem; align-items: flex-start; }
.footer-contact-item i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-divider { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 50px; padding: 22px 0; }
.footer-bottom { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

/* ---------- Alert / Toast ---------- */
.form-toast {
  display: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-top: 18px;
}
.form-toast.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-toast.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.invalid-feedback { font-size: 0.78rem; color: #dc3545; display: none; margin-top: 4px; }
.form-control-glowup.is-invalid + .invalid-feedback { display: block; }

/* ---------- Keyframe Animations ---------- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}

/* ---------- Scroll reveal utility ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Back to Top ---------- */
#backToTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 18px rgba(200,132,122,0.4);
  z-index: 9999;
  transition: var(--transition);
  cursor: pointer;
}
#backToTop.show { display: flex; }
#backToTop:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero-stats { display: none; }
  .hero-title { font-size: 2.4rem; }
  .section-pad { padding: 65px 0; }
}
@media (max-width: 767.98px) {
  .hero { min-height: 92vh; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-glowup, .hero-actions .btn-outline-glowup { width: 100%; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .contact-form-card { padding: 26px 20px; }
}
@media (max-width: 575.98px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2rem; }
}
