@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* --- CUSTOM VARIABLES (CONCIERGE LUXE) --- */
:root {
  /* --- BACKGROUND TOKENS --- */
  --bg-primary: #f8fafc; /* Crisp Slate-50 */
  --bg-dark: #0f172a; /* Corporate Slate Navy-900 */
  --bg-white: #ffffff;
  
  /* --- TYPOGRAPHY CONTRAST TOKENS --- */
  --text-dark: #0f172a; /* Slate Navy-900 */
  --text-medium: #475569; /* Slate-600 */
  --text-light: #94a3b8; /* Slate-400 */
  --text-white: #ffffff;
  
  /* --- BRAND ACCENT TOKENS --- */
  --primary-navy: #1e293b; /* Corporate Slate Navy-800 */
  --primary-navy-dark: #0f172a; /* Deep Structural Navy */
  --accent-emerald: #16a34a; /* Fresh Emerald Green-600 */
  --accent-emerald-hover: #15803d; /* Emerald Green-700 */
  --accent-emerald-bright: #22c55e; /* Vibrant Emerald-500 */
  --accent-emerald-light: rgba(22, 163, 74, 0.12); /* Badge & Container overlays */

  /* Legacy Aliases for Safety */
  --accent-gold: var(--accent-emerald);
  --accent-gold-hover: var(--accent-emerald-hover);
  --accent-olive: var(--accent-emerald);

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --border-color: #e2e8f0; /* Crisp architectural border */
  --border-light: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.1);
  --shadow-emerald: 0 12px 30px rgba(22, 163, 74, 0.25);
  --shadow-gold: var(--shadow-emerald);
  --shadow-navy: 0 15px 40px rgba(15, 23, 42, 0.15);

  --transition-fast: 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  --transition-normal: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.9s cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 32px;
}

/* --- RESET & BASIC STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

h1 {
  font-size: 4.5rem;
}

h2 {
  font-size: 3.5rem;
}

h3 {
  font-size: 2.2rem;
}

p {
  color: var(--text-medium);
  font-size: 1.05rem;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--text-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-emerald);
}

/* --- UTILITIES --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-padding {
  padding: 140px 0;
}

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

.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-emerald);
  display: inline-block;
  margin-bottom: 20px;
}

.section-title {
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--accent-emerald);
  font-weight: 300;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 90px;
  color: var(--text-medium);
  font-size: 1.2rem;
  font-weight: 300;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  gap: 12px;
  border-radius: 0; /* Minimalist sharp edges */
}

.btn-primary {
  background-color: var(--accent-emerald);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--text-dark);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-emerald);
}

.btn-secondary {
  background-color: var(--text-dark);
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.06);
}

.btn-secondary:hover {
  background-color: var(--primary-navy);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--accent-emerald);
  color: var(--accent-emerald);
}

.btn-outline:hover {
  background-color: var(--accent-emerald);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* --- HEADER / NAVIGATION (FLOATING GLASS) --- */
header {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 10px 35px;
  background-color: rgba(251, 250, 247, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
}

header.scrolled {
  top: 15px;
  padding: 10px 25px;
  background-color: rgba(15, 20, 26, 0.95);
  border-color: rgba(255,255,255,0.04);
  box-shadow: var(--shadow-lg);
}

header.scrolled .logo-text {
  color: var(--text-white);
}

header.scrolled .nav-links a {
  color: rgba(255,255,255,0.7);
}

header.scrolled .nav-links a:hover {
  color: var(--text-white);
}

header.scrolled .phone-link {
  color: var(--text-white);
}

header.scrolled .menu-toggle {
  color: var(--text-white);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

header.scrolled .header-logo-img {
  height: 52px;
  filter: brightness(1.2) contrast(1.1);
}

.footer-logo-img {
  height: 90px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
  font-family: var(--font-body);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-emerald);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-dark);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}

.phone-link i {
  color: var(--accent-emerald);
}

.phone-link:hover {
  color: var(--accent-emerald);
}

.menu-toggle {
  display: none;
  font-size: 1.3rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* --- HERO SECTION (FULLSCREEN & SPACIOUS) --- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-sub-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-emerald);
  background-color: var(--accent-emerald-light);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.22;
  margin-bottom: 22px;
  color: var(--primary-navy);
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-emerald);
}

.hero-desc {
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-medium);
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-bullet-list {
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--primary-navy);
}

.hero-bullet-item i {
  color: var(--accent-emerald);
  font-size: 1rem;
  flex-shrink: 0;
}

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

/* Hero Asymmetrical Images */
.hero-image-side {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-single-frame {
  width: 100%;
  height: 100%;
  border-radius: 120px 120px 0 0;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.hero-single-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hero-image-side:hover .hero-single-frame img {
  transform: scale(1.03);
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-navy);
  z-index: 5;
  transition: var(--transition-fast);
}

.hero-float-card i {
  color: var(--accent-emerald);
  font-size: 1.1rem;
}

.hero-float-card.card-top {
  top: 40px;
  left: -20px;
}

.hero-float-card.card-bottom {
  bottom: 50px;
  right: -15px;
}

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--bg-white);
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.trust-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.trust-item-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-emerald);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.trust-item:hover .trust-item-icon {
  background-color: var(--accent-emerald);
  color: var(--text-dark);
}

.trust-item-text h4 {
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.trust-item-text p {
  font-size: 0.95rem;
  color: var(--text-medium);
  font-weight: 300;
  line-height: 1.5;
}

/* --- 3. MINIMAL SERVICES CARDS --- */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card-minimal {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.service-card-minimal:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-emerald);
}

.service-card-img {
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.service-card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.service-card-body h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.service-price {
  font-size: 0.8rem;
  color: var(--text-medium);
}

.service-price strong {
  font-size: 1.25rem;
  color: var(--accent-emerald);
  display: block;
}

.service-card-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card-btn:hover {
  color: var(--accent-emerald);
}

/* --- 4. MINIMAL SINGLE-COLUMN CALCULATOR --- */
.minimal-calc-wrapper {
  max-width: 680px;
  margin: 40px auto 0;
}

.minimal-calc-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.calc-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.calc-total-bar {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.calc-total-text {
  display: flex;
  flex-direction: column;
}

.calc-total-text span {
  font-size: 0.75rem;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calc-total-text strong {
  font-size: 2.2rem;
  color: var(--accent-emerald);
  font-family: var(--font-heading);
  line-height: 1.1;
}

.calc-total-bar .whatsapp-submit-btn {
  margin-top: 0;
  width: auto;
  padding: 16px 28px;
  border-radius: 8px;
}

/* --- BEFORE/AFTER SLIDER REMOVED --- */

/* --- CONCIERGE PROCESS STEPS --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-card {
  padding: 50px 35px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.process-card:hover {
  border-color: var(--accent-emerald);
  box-shadow: var(--shadow-md);
}

.process-number {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--accent-emerald);
  line-height: 1;
  margin-bottom: 25px;
  display: block;
}

.process-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 400;
}

.process-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-medium);
  line-height: 1.6;
}

/* --- CONCIERGE PRICE CALCULATOR --- */
.calculator-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  box-shadow: var(--shadow-lg);
}

.calculator-form-side {
  padding: 60px;
}

.calculator-form-side h3 {
  font-size: 2rem;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.calculator-form-side h3 i {
  color: var(--accent-emerald);
}

.calc-group {
  margin-bottom: 35px;
}

.calc-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-body);
}

.calc-select, .calc-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  color: var(--primary-navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  cursor: pointer;
  border-radius: 8px;
  height: 52px;
}

input[type="date"].calc-input {
  -webkit-appearance: none;
  appearance: none;
  min-height: 52px;
  max-width: 100%;
  box-sizing: border-box;
}

.calc-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.calc-select:focus, .calc-input:focus {
  border-color: var(--accent-emerald);
  background-color: var(--bg-white);
  outline: none;
}

/* Styled Options Checkboxes */
.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.calc-checkbox-card {
  position: relative;
}

.calc-checkbox-card input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.calc-checkbox-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: var(--bg-primary);
  border: 1px solid #dcdad5;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
}

.calc-checkbox-label i {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.calc-checkbox-label span {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-checkbox-card input:checked ~ .calc-checkbox-label {
  border-color: var(--accent-emerald);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.calc-checkbox-card input:checked ~ .calc-checkbox-label i {
  color: var(--accent-emerald);
}

/* Calculator Invoice Sidebar */
.calculator-summary-side {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(255,255,255,0.03);
}

.summary-details h4 {
  color: var(--accent-emerald);
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 35px;
  letter-spacing: 2px;
  font-weight: 600;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-bottom: 10px;
  font-weight: 300;
}

.summary-item-label {
  color: rgba(255,255,255,0.5);
}

.summary-item-val {
  font-weight: 500;
}

.price-box {
  margin-top: 40px;
  text-align: center;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 35px 25px;
}

.price-title {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.price-amount {
  font-size: 3.4rem;
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--accent-emerald);
  margin-bottom: 8px;
  display: block;
  line-height: 1;
}

.price-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  display: block;
}

.whatsapp-submit-btn {
  width: 100%;
  margin-top: 30px;
  background-color: var(--accent-emerald);
  color: var(--bg-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.whatsapp-submit-btn:hover {
  background-color: #25d366;
  color: var(--text-white);
  transform: translateY(-2px);
}

/* --- WHY CHOOSE US --- */
.why-us-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.why-us-images {
  position: relative;
  height: 520px;
}

.why-us-single-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.why-us-single-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us-features {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.why-us-feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-us-feature-card-icon {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-emerald);
  font-size: 0.95rem;
}

.why-us-feature-card h4 {
  font-size: 1.4rem;
  font-weight: 400;
}

.why-us-feature-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-weight: 300;
  line-height: 1.6;
}

/* --- TESTIMONIALS SLIDER --- */
.testimonials-section {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.testimonials-section .section-title {
  color: var(--text-white);
}

.testimonials-section .section-desc {
  color: rgba(255,255,255,0.6);
}

.testimonials-slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0 50px;
}

.testimonials-container {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-normal);
}

.testimonial-card {
  min-width: 100%;
  padding: 50px 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.testimonial-quote-mark {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  color: var(--accent-emerald);
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  color: var(--text-white);
  font-size: 1.2rem;
  font-weight: 400;
}

.author-info p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--accent-emerald);
  transform: scale(1.3);
}

/* --- FAQ ACCORDION (MINIMAL LINES) --- */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-header {
  padding: 24px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--bg-white);
  transition: var(--transition-fast);
}

.faq-header h3 {
  font-size: 1.3rem;
  font-weight: 400;
  padding-right: 20px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid #e2e1dc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-light);
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active {
  border-color: var(--accent-emerald);
}

.faq-item.active .faq-header h3 {
  color: var(--accent-emerald);
}

.faq-item.active .faq-icon {
  border-color: var(--accent-emerald);
  background-color: var(--accent-emerald);
  color: var(--text-dark);
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-content {
  padding: 0 35px 30px;
  color: var(--text-medium);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

/* --- SERVICE AREAS --- */
.areas-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.area-card {
  background-color: var(--bg-white);
  padding: 24px;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.area-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
  box-shadow: var(--shadow-sm);
}

.area-card i {
  color: var(--accent-emerald);
}

/* --- FOOTER --- */
footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 100px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-col h3 {
  color: var(--text-white);
  font-size: 1.9rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col h3 span {
  color: #22c55e;
  font-size: 0.75rem;
  display: block;
  letter-spacing: 2px;
  margin-top: 2px;
  font-family: var(--font-body);
}

.footer-desc {
  color: rgba(255,255,255,0.55);
  margin-bottom: 30px;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 44px;
  height: 44px;
  background-color: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--accent-emerald);
  color: var(--bg-dark);
  border-color: var(--accent-emerald);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--accent-emerald);
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: 2px;
  font-family: var(--font-body);
}

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

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: #22c55e;
  padding-left: 6px;
}

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

.footer-contact-item {
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

.footer-contact-item i {
  color: #22c55e;
  margin-top: 4px;
}

.footer-contact-item a:hover {
  color: #22c55e;
}

.footer-locations-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 40px;
}

.footer-locations-chips span {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-locations-chips span i {
  color: var(--accent-emerald);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a:hover {
  color: #22c55e;
}


@media (max-width: 1250px) {
  .phone-link span {
    display: none;
  }
  .nav-links {
    gap: 15px;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero {
    min-height: 100dvh;
    padding-top: 140px;
    padding-bottom: 50px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-side {
    height: 380px;
  }
  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .calc-row-2col {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .minimal-calc-card {
    padding: 25px 20px;
  }
  .calc-total-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .calc-total-bar .whatsapp-submit-btn {
    width: 100%;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .why-us-images {
    max-width: 500px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .section-padding {
    padding: 70px 0;
  }
  header {
    width: 92%;
    padding: 10px 20px;
    top: 15px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 100%;
    background-color: rgba(15, 20, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .header-actions .btn {
    display: none;
  }
  .hero {
    min-height: 100dvh;
    padding-top: 120px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
  }
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .hero-image-side {
    height: 300px;
  }
  .hero-single-frame {
    border-radius: 36px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-image-side {
    height: 400px;
  }
  .hero-float-card.card-top {
    top: 15px;
    left: 10px;
    font-size: 0.75rem;
    padding: 10px 14px;
  }
  .hero-float-card.card-bottom {
    bottom: 15px;
    right: 10px;
    font-size: 0.75rem;
    padding: 10px 14px;
  }
  .hero-stats-row {
    gap: 15px;
    justify-content: space-between;
  }
  .hero-stat-number {
    font-size: 1.4rem;
  }
  .hero-stat-label {
    font-size: 0.7rem;
  }
  .summary-item-val {
    font-size: 0.82rem;
    word-break: break-word;
    max-width: 55%;
    text-align: right;
  }
  .trust-items {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-row-image {
    height: 320px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .calculator-form-side {
    padding: 40px 24px;
  }
  .calculator-summary-side {
    padding: 40px 24px;
  }
  .calc-options-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-us-images {
    height: 380px;
  }
  .why-us-features {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 30px 20px;
  }
  .testimonial-text {
    font-size: 1.45rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  .hero-image-side {
    height: 300px;
  }
  .service-row-image {
    height: 220px;
  }
  .why-us-images {
    height: 250px;
  }
  .price-amount {
    font-size: 2.6rem;
  }
  .process-card {
    padding: 30px 20px;
  }
  .calc-options-grid {
    grid-template-columns: 1fr;
  }
}

/* --- LANGUAGE SWITCHER --- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(15, 20, 26, 0.05);
  padding: 3px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

header.scrolled .lang-switcher {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-medium);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition-fast);
}

header.scrolled .lang-btn {
  color: rgba(255, 255, 255, 0.7);
}

.lang-btn.active, .lang-btn:hover {
  background: var(--accent-emerald);
  color: var(--text-dark) !important;
}

/* --- HERO PROMO BADGE --- */
.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid var(--accent-emerald);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 25px;
}
.hero-promo-badge i {
  color: var(--accent-emerald);
  font-size: 1rem;
}

/* --- INTERACTIVE BEFORE / AFTER SLIDER --- */
.before-after-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.before-after-container {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}
.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-before {
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid var(--accent-emerald);
}
.ba-before img {
  width: 1000px;
  max-width: none;
}
.ba-label {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  z-index: 5;
}
.ba-label-before {
  left: 20px;
  background: rgba(220, 53, 69, 0.9);
  color: #ffffff;
}
.ba-label-after {
  right: 20px;
  background: rgba(40, 167, 69, 0.9);
  color: #ffffff;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--accent-emerald);
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle-circle {
  width: 44px;
  height: 44px;
  background: var(--accent-emerald);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  font-size: 1rem;
}

/* --- PSYCHOLOGICAL PROMO BANNER --- */
.promo-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #0f141a 0%, #1e2733 100%);
  color: #ffffff;
  padding: 22px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-emerald);
  margin-bottom: 35px;
  box-shadow: var(--shadow-emerald);
}
.promo-banner-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-emerald);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.promo-banner-text {
  font-size: 1.05rem;
  line-height: 1.5;
}
.promo-banner-text strong {
  color: #22c55e;
}
.promo-banner-text em {
  color: #25d366;
  font-style: normal;
  font-weight: 700;
}

/* --- CALCULATOR ADDONS & PSYCHOLOGY --- */
.calc-addons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.addon-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}
.addon-item:hover {
  border-color: var(--accent-emerald);
}
.addon-item.included {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.3);
  cursor: default;
}
.addon-item input[type="checkbox"] {
  display: none;
}
.addon-custom-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--text-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: transparent;
  transition: var(--transition-fast);
}
.addon-item input[type="checkbox"]:checked + .addon-custom-check,
.addon-item.included .addon-custom-check {
  background: var(--accent-emerald);
  border-color: var(--accent-emerald);
  color: var(--text-dark);
}
.addon-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.addon-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}
.addon-badge.free {
  font-size: 0.75rem;
  font-weight: 700;
  color: #25d366;
  background: rgba(37, 211, 102, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
}
.addon-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-emerald);
}

/* --- PRICE STRIKE & SAVINGS --- */
.price-strike-group {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}
.price-original {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-family: var(--font-heading);
}
.price-save-badge {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #25d366;
  margin: 6px 0 14px;
}
.gift-highlight {
  color: #25d366 !important;
  font-weight: 600 !important;
}


  .before-after-container {
    height: 340px;
  }
  .ba-before img {
    width: 100vw;
  }
}



/* --- M2 ACTIVE NAV & UTILITY CLASSES --- */
.nav-links a.active {
  color: var(--accent-emerald) !important;
  font-weight: 600;
}

header.scrolled .nav-links a.active {
  color: #22c55e !important;
  font-weight: 600;
}

.bg-white-section {
  background-color: #ffffff;
}

.bg-primary-section {
  background-color: var(--bg-primary);
}

.border-top-section {
  border-top: 1px solid var(--border-color);
}

.seo-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.seo-card {
  background: #ffffff;
  padding: 25px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.seo-card:hover {
  border-color: var(--accent-emerald);
  box-shadow: var(--shadow-md);
}

.seo-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.seo-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.footer-contact-highlight {
  font-size: 1.15rem;
  color: #22c55e;
  font-weight: 500;
  margin-bottom: 5px;
}

/* --- FLOATING WHATSAPP CORNER ICON --- */
.floating-whatsapp-icon {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
  color: #ffffff;
}

@media (max-width: 768px) {
  .floating-whatsapp-icon {
    bottom: 15px;
    right: 15px;
    width: 54px;
    height: 54px;
    font-size: 30px;
  }
}
