/* ==========================================================================
   Yadira Decoparty - Premium CSS Design System
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Design Tokens & Variables */
:root {
  --primary: #F4DCD6;         /* Soft Blush Rose Gold */
  --primary-dark: #E2A699;    /* Deeper Blush */
  --primary-light: #FAF0ED;   /* Extremely soft blush */
  --accent-gold: #D4AF37;     /* Metallic Gold */
  --accent-gold-dark: #B5901F;
  --accent-gold-light: #F9E8B2;
  --bg-gradient: linear-gradient(135deg, #FAF0ED 0%, #FFFFFF 50%, #F5ECFD 100%);
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --white: #ffffff;
  --dark: #2A2524;            /* Soft charcoal */
  --text-main: #4A3E3C;       /* Body text color */
  --text-muted: #8E7A77;
  --border-color: rgba(244, 220, 214, 0.5);
  
  /* Layout */
  --font-titles: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-round: 50%;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 4px 6px -1px rgba(74, 62, 60, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(74, 62, 60, 0.08), 0 4px 6px -2px rgba(74, 62, 60, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(74, 62, 60, 0.1), 0 10px 10px -5px rgba(74, 62, 60, 0.04);
  --shadow-gold: 0 8px 20px rgba(170, 119, 28, 0.2);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: blur(12px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-gradient);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

li {
  list-style: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--primary-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-dark);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography & Titles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titles);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  letter-spacing: 2px;
  background-color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  border: 1px solid var(--border-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 10px;
}

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

/* Top Utility Bar */
.top-bar {
  background-color: var(--dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
  font-weight: 400;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar-left span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-right a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.top-bar-right a:hover {
  color: var(--accent-gold-light);
  transform: translateY(-2px);
}

/* Main Navigation */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  padding: 8px 0;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 50px;
  width: 50px;
  border-radius: var(--radius-round);
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.logo-text {
  font-family: var(--font-titles);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

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

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

/* Call to Action Button */
.btn-header {
  background: var(--gold-gradient);
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
  color: #000;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(26, 21, 20, 0.45), rgba(26, 21, 20, 0.45)), url('assets/hero-bg.jpg') no-repeat center center/cover;
  padding: 80px 0;
  color: var(--white);
}

.hero-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  max-width: 680px;
  animation: fadeInUp 1s ease;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag i {
  color: var(--accent-gold-light);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  font-weight: 300;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* General Button Styles */
.btn-primary {
  background: var(--gold-gradient);
  color: var(--dark);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-md), var(--shadow-gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 12px 24px rgba(170, 119, 28, 0.4);
  color: #000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Hero Badge Cards */
.hero-badges-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInRight 1s ease;
}

.hero-badge-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.hero-badge-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-badge-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark);
}

.hero-badge-info h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-badge-info p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ==========================================================================
   Trust Statistics Bar
   ========================================================================== */
.stats-bar {
  background-color: var(--white);
  padding: 30px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: var(--radius-md);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-color);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-color);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   Sections Layout & Structure
   ========================================================================== */
.section {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Catalog & Category Filtration (Services Grid)
   ========================================================================== */
.category-filter-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3rem;
}

.filter-btn {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: var(--dark);
  border-color: transparent;
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

/* Services / Packages Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.service-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  letter-spacing: 0.5px;
  z-index: 10;
}

.service-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

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

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li i {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.service-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-card-details {
  background-color: var(--primary-light);
  color: var(--text-main);
  text-align: center;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-card-details:hover {
  background-color: var(--primary);
  color: var(--dark);
}

.btn-card-quote {
  background: var(--gold-gradient);
  color: var(--dark);
  text-align: center;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.btn-card-quote:hover {
  box-shadow: 0 4px 10px rgba(170, 119, 28, 0.3);
  transform: translateY(-1px);
}

/* ==========================================================================
   How It Works Section (Process)
   ========================================================================== */
.process-section {
  background-color: var(--primary-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.process-grid::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 15%;
  width: 70%;
  height: 2px;
  background: dashed var(--primary-dark);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-number {
  width: 70px;
  height: 70px;
  background: var(--white);
  border: 3px solid var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-family: var(--font-titles);
  font-weight: 800;
  color: var(--dark);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  border-color: var(--accent-gold);
  background: var(--gold-gradient);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 280px;
  margin: 0 auto;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: var(--primary-light);
  line-height: 1;
}

.rating {
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 20px;
  flex-grow: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.client-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.client-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Interactive Quote Form Section
   ========================================================================== */
.quote-section {
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('assets/hero-bg.jpg') no-repeat center center/cover;
  position: relative;
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.quote-container label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.quote-form-header {
  text-align: center;
  margin-bottom: 30px;
}

.quote-form-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.quote-form-header p {
  color: var(--text-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-input {
  background-color: var(--primary-light);
  border: 1px solid var(--border-color);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  color: var(--dark);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-input:focus {
  background-color: var(--white);
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  background: var(--gold-gradient);
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-md), var(--shadow-gold);
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 8px 18px rgba(170, 119, 28, 0.3);
  color: #000;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 20px;
  border-top: 4px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-about p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-btn:hover {
  background: var(--gold-gradient);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold-light);
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info-item {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
}

.contact-info-item i {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   Interactive Floating WhatsApp Widget (JoinChat style)
   ========================================================================== */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.wa-bubble {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: wa-pulse 2s infinite;
  z-index: 1001;
}

.wa-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.wa-chat-window {
  width: 320px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: slideUp 0.3s ease;
  z-index: 1000;
}

.wa-chat-window.active {
  display: flex;
}

.wa-header {
  background-color: #097e35;
  color: var(--white);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  object-fit: cover;
}

.wa-avatar-info h4 {
  color: var(--white);
  font-size: 0.95rem;
}

.wa-avatar-info p {
  font-size: 0.75rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-avatar-info p::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #4bdf16;
  border-radius: 50%;
}

.wa-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--white);
  opacity: 0.7;
  cursor: pointer;
  font-size: 1.1rem;
}

.wa-close-btn:hover {
  opacity: 1;
}

.wa-body {
  padding: 18px;
  background-color: #efeae2;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wa-msg {
  background-color: var(--white);
  padding: 10px 14px;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  font-size: 0.88rem;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  color: var(--dark);
  line-height: 1.4;
}

.wa-msg-meta {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
}

.wa-footer {
  padding: 10px 15px;
  background-color: #f0f0f0;
  border-top: 1px solid #e0e0e0;
}

.btn-wa-action {
  background-color: #25d366;
  color: var(--white);
  font-weight: 700;
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  font-size: 0.9rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-wa-action:hover {
  background-color: #20ba59;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   Details Modal Popup Window
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 21, 20, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

.modal-window {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  animation: scaleUp 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 480px;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--dark);
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background-color: var(--primary-light);
  transform: rotate(90deg);
}

.modal-img-col {
  position: relative;
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content-col {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-category {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.modal-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dark);
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.modal-section-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}

.modal-includes {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-includes li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-includes li i {
  color: var(--accent-gold);
}

.btn-modal-quote {
  background: var(--gold-gradient);
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-md), var(--shadow-gold);
  transition: all 0.3s ease;
}

.btn-modal-quote:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 6px 15px rgba(170, 119, 28, 0.3);
}

/* ==========================================================================
   Keyframes & Animations
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   Responsive Media Queries (Mobile First)
   ========================================================================== */

/* Up to Tablet (Landscape) */
@media (max-width: 992px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-badges-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    margin-top: 20px;
  }
  
  .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .stat-item:nth-child(2n)::after {
    display: none;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .process-grid::after {
    display: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .modal-window {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .modal-img-col {
    height: 200px;
  }
  
  .modal-content-col {
    padding: 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Up to Tablet (Portrait) & Mobile Devices */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .top-bar {
    display: none; /* Hide top utility bar on mobile to save space */
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background-color: var(--white);
    flex-direction: column;
    padding: 40px 0;
    gap: 24px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .btn-header {
    display: none; /* Hide header CTA button on mobile, let them use hero/float */
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-badges-wrapper {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .quote-container {
    padding: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-item::after {
    display: none !important;
  }
  
  .category-filter-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-btn {
    justify-content: center;
  }
  
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
}
