/*!********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./src/styles/callback-modal.module.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************/
.callback-modal_overlay__8HejM {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
}

.callback-modal_modal__4YZuA {
  background: white;
  border-radius: 28px;
  width: 100%;
  max-width: 480px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  overflow-y: auto;
}

.callback-modal_closeBtn__GBkQE {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #9ca3af;
  transition: color 0.2s;
}

.callback-modal_closeBtn__GBkQE:hover {
  color: #4b5563;
}

.callback-modal_modal__4YZuA h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.25rem;
}

.callback-modal_subtitle__wQY8b {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.callback-modal_form__wDjaq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.callback-modal_field__pZdXL {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.callback-modal_field__pZdXL label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.callback-modal_field__pZdXL input,
.callback-modal_field__pZdXL select,
.callback-modal_field__pZdXL textarea {
  padding: 0.625rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

.callback-modal_field__pZdXL input:focus,
.callback-modal_field__pZdXL select:focus,
.callback-modal_field__pZdXL textarea:focus {
  outline: none;
  border-color: #e62331;
  box-shadow: 0 0 0 3px rgba(230, 35, 49, 0.2);
}

.callback-modal_error__kh0jv {
  color: #dc2626;
  font-size: 0.875rem;
  padding: 0.5rem;
  background: #fee2e2;
  border-radius: 8px;
}

.callback-modal_successMessage__lamzU {
  padding: 1.5rem;
  background: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

.callback-modal_submitBtn__QLRi0 {
  background: #e62331;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.callback-modal_submitBtn__QLRi0:hover:not(:disabled) {
  background: #c91f2b;
  transform: translateY(-2px);
}

.callback-modal_submitBtn__QLRi0:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/*!********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./src/styles/globals.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************/
/* src/styles/globals.css – full file with all adjustments */

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

:root {
  --orange: #F25A14;
  --dark: #2D3138;
  --light: #F7F8FA;
  --text: #454545;
  --white: #ffffff;
  --border: #E9E9E9;
  --shadow-card: 0 18px 60px rgba(0, 0, 0, 0.06);
  --radius-card: 28px;
  --radius-btn: 14px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  height: 100%;
  margin: 0;
}

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

/* ===== LAYOUT ===== */
.app-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* ===== NAVIGATION ===== */
nav.nav-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 24px 0;
}

nav.nav-static {
  position: relative;
  background: var(--dark);
  padding: 16px 0;
  z-index: 20;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 54px;
}

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

.menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-button {
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  background: var(--dark);
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-button:hover {
  opacity: 0.85;
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
  position: relative;
}

.lang-current {
  background: transparent;
  border: none;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.lang-current:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-chevron {
  transition: transform 0.2s;
}

.lang-chevron.open {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  min-width: 80px;
  padding: 4px 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
}

.lang-item {
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
  width: 100%;
}

.lang-item:hover {
  background: var(--light);
}

.lang-item.active {
  background: var(--light);
  color: var(--orange);
}

/* ===== CONTACT DROPDOWN ===== */
.contact-dropdown-wrapper {
  position: relative;
}

.contact-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  padding: 8px 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  width: 100%;
  text-align: left;
}

.contact-item:hover {
  background: var(--light);
}

.contact-btn.active {
  background: rgba(255, 255, 255, 0.15);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  z-index: -1;
}

/* The hero uses the same .container as other sections */
.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  width: 100%;
}

.hero h1 {
  color: white;
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 28px;
  text-align: left;
}

.hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-bottom: 45px;
  text-align: left;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 28px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp {
  background: #25D366;
  color: white;
}

.telegram {
  background: #2AABEE;
  color: white;
}

.callback {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 2px solid white;
}

.btn:hover {
  transform: translateY(-3px);
}

/* ===== ADMIN SECONDARY BUTTON ===== */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2563eb;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

/* ===== TRUST STRIP ===== */
.trust {
  margin-top: -70px;
  position: relative;
  z-index: 10;
}

.trust-box {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  gap: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

.trust-card img {
  height: 52px;
  margin: 0 auto 18px;
}

.trust-card h3 {
  color: var(--dark);
  margin-bottom: 10px;
}

/* ===== SECTIONS ===== */
section {
  padding: 90px 0;
}

.section-title {
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 18px;
  color: var(--dark);
}

.section-sub {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
  color: #666;
}

/* ===== SERVICES ===== */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
  gap: 25px;
}

.service {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: var(--transition);
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service img {
  height: 60px;
  margin: 0 auto 22px;
}

/* ===== STATS ===== */
.stats {
  background: var(--light);
}

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

.stat {
  text-align: center;
  padding: 40px;
}

.stat h2 {
  font-size: 3rem;
  color: var(--orange);
}

/* ===== TEAM ===== */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  gap: 30px;
}

.member {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.member img {
  height: 340px;
  width: 100%;
  object-fit: cover;
}

.member-content {
  padding: 25px;
}

.member h3 {
  margin-bottom: 5px;
}

.member h5 {
  color: var(--orange);
  margin-bottom: 15px;
}

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

.quote {
  padding: 35px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
}

.quote p {
  margin-bottom: 20px;
}

/* ===== CTA (floating peninsula) ===== */
.cta {
  padding: 40px 0 20px;
  background: transparent;
}

.cta-card {
  background: var(--dark);
  border-radius: 28px 28px 0 0;
  padding: 32px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 32px;
  gap: 32px;
  align-items: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  margin-bottom: -30px;
}

.cta-content h2 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 12px 20px;
  font-size: 0.9rem;
  min-width: unset;
  white-space: nowrap;
}

/* ===== FOOTER ===== */
footer {
  padding: 40px 0;
  text-align: center;
  background: #1f2227;
  color: white;
}

/* ===== EDITING UI ===== */
.editable-text {
  position: relative;
  cursor: pointer;
}

.editable-text .edit-icon {
  font-size: 0.8rem;
  opacity: 0.3;
  margin-left: 0.3rem;
  transition: opacity 0.2s;
}

.editable-text:hover .edit-icon {
  opacity: 1;
}

.editable-text-edit {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.editable-text-edit textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 0.5rem;
  border-radius: 4px;
  font-family: inherit;
}

.editable-text-edit button {
  align-self: flex-start;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-btn);
  border: none;
  background: var(--orange);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.editable-text-edit button:last-child {
  background: #ccc;
  color: #333;
  margin-left: 0.5rem;
}

.editable-image-wrapper {
  position: relative;
  display: inline-block;
}

.editable-image-wrapper .image-edit-label {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.editable-image-wrapper:hover .image-edit-label {
  opacity: 1;
}

/* ===== STICKY MOBILE BAR ===== */
.sticky-mobile {
  display: none;
}

/* ===== RESPONSIVE – MOBILE FIRST, ELEGANT ===== */
@media (max-width: 1024px) {
  .trust-box,
  .services,
  .stat-grid,
  .team,
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  /* Layout */
  .container {
    width: 90%;
  }

  /* Hide desktop menu */
  .menu {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
    padding: 6rem 0 3rem;
  }

  .hero h1 {
    font-size: 2.6rem;
    line-height: 1.1;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%;
    padding: 16px;
  }

  /* Trust strip */
  .trust {
    margin-top: -40px;
  }

  .trust-box {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  /* Services */
  .services {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .service {
    padding: 24px 16px;
  }

  .service img {
    height: 48px;
  }

  /* Stats */
  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat {
    padding: 24px;
  }

  .stat h2 {
    font-size: 2.4rem;
  }

  /* Team */
  .team {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .member img {
    height: 240px;
  }

  /* Testimonials */
  .testimonials {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quote {
    padding: 24px;
  }

  /* CTA */
  .cta {
    padding: 30px 0 10px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    text-align: center;
    border-radius: 24px 24px 0 0;
    margin-bottom: -20px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cta-buttons .btn {
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
    width: 100%;
  }

  /* Footer */
  footer {
    padding: 30px 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  /* Even smaller screens – refined elegance */
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

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

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

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

  .member img {
    height: 280px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-sub {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .trust-box {
    padding: 16px;
  }

  .cta-card {
    padding: 20px 16px;
  }

  .cta-content h2 {
    font-size: 1.3rem;
  }

  .sticky-mobile {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: white;
    padding: 10px;
    justify-content: space-around;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 500;
  }

  .sticky-mobile a {
    flex: 1 1;
    margin: 0 4px;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
  }

  .sticky-mobile .wa {
    background: #25D366;
  }
  .sticky-mobile .tg {
    background: #2AABEE;
  }
  .sticky-mobile .cb {
    background: var(--dark);
  }
}

/* ===== MODAL OVERLAY ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-content {
  background: white;
  border-radius: 28px;
  width: 100%;
  max-width: 480px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #9ca3af;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #4b5563;
}
