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

:root {
  --bg-dark: #0a1119;
  --bg-dark-card: #131d28;
  --bg-white: #ffffff;
  --bg-light: #f5f5f5;
  --orange: #E8862A;
  --orange-light: #F5A04E;
  --orange-dark: #C96E1B;
  --orange-glow: rgba(232, 134, 42, 0.10);
  --white: #ffffff;
  --text-muted: #8b95a1;
  --text-muted-light: rgba(255,255,255,0.45);
  --dark: #0a1119;
  --border-subtle: rgba(255,255,255,0.06);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
  --radius: 16px;
  --radius-full: 100px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--bg-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  font-family: inherit;
  letter-spacing: -0.01em;
}

.btn i {
  font-size: 0.85em;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(232, 134, 42, 0.4);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 17, 25, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 17, 25, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 40px;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin: 0 auto;
}

.nav-links a {
  padding: 10px 22px;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  border-radius: var(--radius-full);
  letter-spacing: -0.01em;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 134, 42, 0.35);
}

.nav-cta i {
  font-size: 0.7rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== SECTION LABEL (Constio style) ===== */
.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: var(--bg-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 134, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.hero-left .section-label {
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-right {
  padding-bottom: 8px;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Hero Image with Decorative Diamonds */
.hero-image-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: visible;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.hero-diamond {
  position: absolute;
  background: var(--orange);
  transform: rotate(45deg);
  z-index: 2;
  opacity: 0.85;
  overflow: hidden;
}

.hero-diamond::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1658483497480-9dd13cd5de15?w=1400&h=600&fit=crop&q=80') center/cover;
  transform: rotate(-45deg) scale(1.8);
  opacity: 0.4;
}

.hero-diamond-1 {
  width: 120px;
  height: 120px;
  right: -20px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  background: var(--orange);
}

.hero-diamond-1::before {
  opacity: 0;
}

.hero-diamond-2 {
  width: 80px;
  height: 80px;
  right: -40px;
  top: 20%;
  background: rgba(232, 134, 42, 0.5);
}

.hero-diamond-2::before {
  opacity: 0;
}

.hero-diamond-3 {
  width: 50px;
  height: 50px;
  right: 40px;
  top: -15px;
  background: rgba(232, 134, 42, 0.3);
}

.hero-diamond-3::before {
  opacity: 0;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--bg-dark);
  padding: 60px 0 80px;
  border-top: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.stat-item:last-child::after {
  display: none;
}

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

.stat-suffix {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 8px;
}

/* ===== SECTIONS GENERAL ===== */
.section {
  padding: 110px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== ABOUT SECTION (White bg) ===== */
.about-section {
  background: var(--bg-white);
}

.about-section .section-header h2 {
  color: var(--dark);
}

.about-heading {
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  max-width: 700px;
  margin: 0 auto;
}

.emoji-inline {
  font-style: normal;
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 0;
  align-items: center;
  min-height: 520px;
}

.about-image-wrap {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.about-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.about-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-card-left {
  margin-right: -40px;
}

.about-card-right {
  margin-left: -40px;
}

.about-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.75;
}

.about-rating {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.about-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
}

.about-stars i {
  color: var(--orange);
  font-size: 0.85rem;
}

.about-customers {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

/* ===== SERVICES SECTION (Dark bg) ===== */
.services-section {
  background: var(--bg-dark);
}

.services-section .section-header h2 {
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-dark-card);
  padding: 32px 26px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  cursor: default;
  border: 1px solid var(--border-subtle);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(232, 134, 42, 0.1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 134, 42, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
}

.service-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: #0c1520;
}

.process-section .section-header h2 {
  color: var(--white);
}

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

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

.process-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.4rem;
  color: var(--white);
  transition: var(--transition);
}

.process-step:hover .process-icon-wrap {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(232, 134, 42, 0.4);
}

.process-number {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 300px;
  margin: 0 auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 17, 25, 0.82);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.cta-content > p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.cta-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 40px;
}

.cta-list span {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.92rem;
}

.cta-list span i {
  color: var(--orange);
  margin-right: 8px;
}

/* ===== CONTACT SECTION (White bg) ===== */
.contact-section {
  background: var(--bg-white);
}

.contact-section .section-header h2 {
  color: var(--dark);
}

.contact-section .section-desc {
  color: #6b7280;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

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

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 134, 42, 0.1);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
  background: var(--orange);
  color: var(--white);
}

.contact-info-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.86rem;
  color: #6b7280;
}

.contact-info-card a:hover {
  color: var(--orange);
}

.contact-guarantee {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: var(--bg-dark);
  border-radius: var(--radius);
  margin-top: 4px;
}

.contact-guarantee > i {
  font-size: 2rem;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-guarantee strong {
  color: var(--white);
  font-size: 0.92rem;
  display: block;
  margin-bottom: 4px;
}

.contact-guarantee p {
  color: var(--text-muted-light);
  font-size: 0.84rem;
  margin: 0;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.contact-form {
  padding: 44px;
}

.contact-form h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-form h3 i {
  color: var(--orange);
  margin-right: 10px;
}

.form-sub {
  font-size: 0.88rem;
  color: #6b7280;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.92rem;
  color: #1f2937;
  transition: var(--transition);
  background: var(--bg-light);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 134, 42, 0.08);
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

/* Form Status Messages */
.form-status {
  margin-top: 18px;
  padding: 0;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  line-height: 1.6;
}

.form-status:empty {
  display: none;
}

.form-status-success {
  padding: 16px 22px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-status-error {
  padding: 16px 22px;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: var(--text-muted);
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-big-text {
  text-align: center;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  margin-bottom: 60px;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.footer-address {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-address i {
  color: var(--orange);
  margin-right: 8px;
}

.footer-nav h4,
.footer-cta-col h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 14px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-cta-col .btn {
  margin-bottom: 16px;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-phone:hover {
  color: var(--orange-light);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 32px 0;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 24px;
}

.footer-bottom {
  text-align: center;
  padding-bottom: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal-links {
  margin-top: 8px;
  font-size: 0.78rem;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: var(--orange);
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  padding: 140px 0 60px;
  background: var(--bg-dark);
  text-align: center;
}
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
}
.legal-hero p {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 0.95rem;
}
.legal-content {
  background: #fff;
  padding: 60px 0 80px;
}
.legal-content .container {
  max-width: 800px;
}
.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 40px 0 12px;
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
}
.legal-content ul {
  padding-left: 24px;
  margin: 12px 0;
}
.legal-content li {
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--orange);
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}

/* ===== MAP MODAL ===== */
.contact-info-card-clickable:hover {
  border-color: var(--orange);
  transition: border-color 0.2s;
}
.map-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.map-modal-overlay.active {
  display: flex;
}
.map-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  padding: 32px;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.map-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  line-height: 1;
}
.map-modal-close:hover {
  color: var(--orange);
}
.map-modal h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.map-modal-desc {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.map-modal-iframe-wrap {
  border-radius: 12px;
  overflow: hidden;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 32px rgba(232, 134, 42, 0.35);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}

.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(232, 134, 42, 0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(232, 134, 42, 0.35); }
  50% { box-shadow: 0 8px 48px rgba(232, 134, 42, 0.55); }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LEGAL / PRIVACY PAGE ===== */
.legal-hero {
  background: var(--bg-dark);
  padding: 160px 0 60px;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.legal-effective {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-section {
  background: var(--bg-white);
  padding: 80px 0 100px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.85;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 16px;
  color: #4b5563;
}

.legal-content a {
  color: var(--orange);
  font-weight: 600;
}

.legal-content a:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

.legal-content ul {
  margin: 0 0 20px 24px;
  padding: 0;
}

.legal-content ul li {
  margin-bottom: 10px;
  color: #4b5563;
  padding-left: 4px;
}

.legal-content ul li strong {
  color: var(--dark);
}

.legal-contact-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 20px 0 28px;
  border-left: 4px solid var(--orange);
}

.legal-contact-box p {
  margin-bottom: 8px;
  color: #374151;
}

.legal-contact-box p:last-child {
  margin-bottom: 0;
}

.legal-contact-box i {
  color: var(--orange);
  margin-right: 10px;
  width: 18px;
  text-align: center;
}

/* ===== RESPONSIVE - 1024px ===== */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-image {
    height: 380px;
  }

  .hero-diamond-1,
  .hero-diamond-2,
  .hero-diamond-3 {
    display: none;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

  .about-card-left {
    margin-right: 0;
  }

  .about-card-right {
    margin-left: 0;
  }

  .about-image {
    height: 350px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* ===== RESPONSIVE - 768px ===== */
@media (max-width: 768px) {
  .legal-hero {
    padding: 120px 0 40px;
  }

  .legal-section {
    padding: 56px 0 72px;
  }

  .legal-content h2 {
    margin-top: 36px;
  }

  .legal-contact-box {
    padding: 22px 24px;
  }
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 100px 36px 36px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    gap: 4px;
    z-index: 1000;
    border-left: 1px solid var(--border-subtle);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    display: block;
    padding: 16px 20px;
    width: 100%;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 120px 0 56px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-image {
    height: 280px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item::after {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-phone {
    justify-content: center;
  }

  .footer-big-text {
    font-size: 3rem;
  }

  .section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .cta-section {
    padding: 80px 0;
  }
}

/* ===== RESPONSIVE - 480px ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-image {
    height: 220px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .section {
    padding: 56px 0;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .cta-section {
    padding: 60px 0;
  }

  .footer-big-text {
    font-size: 2rem;
  }
}
