@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  background: #fff;
  color: #000;
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

:root {
  --black: #000000;
  --dark: #111111;
  --transition: all 0.3s ease;
}

/* ================================
   SCROLLBAR
================================ */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 999px;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #000 #f1f5f9;
}

/* ================================
   HERO
================================ */
.ct-hero {
  padding-top: 68px;
  min-height: 56vh;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.ct-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: ctGrid 14s linear infinite;
}

@keyframes ctGrid {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 60px;
  }
}

.ct-hero-content {
  position: relative;
  z-index: 1;
  padding: 50px 10% 30px;
}

.ct-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.ct-hero-tag span {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  display: inline-block;
}

.ct-hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(24px);
  animation: ctIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.ct-hero h1 em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.28);
}

.ct-hero p {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
  animation: ctIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

@keyframes ctIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ct-hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 30px;
}

.ct-hero-stat {
  padding: 20px 40px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ct-hero-stat strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1;
}

.ct-hero-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ct-hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 40px 0 0;
}

/* ================================
   INFO CARDS
================================ */
.ct-info {
  padding: 60px 10%;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ct-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.ct-info-card {
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.25s ease;
}

.ct-info-card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.ct-info-icon {
  width: 42px;
  height: 42px;
  background: #000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  margin-bottom: 10px;
}

.ct-info-card h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 4px;
}

.ct-info-card p,
.ct-info-card a {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.5;
  transition: opacity 0.2s;
}

.ct-info-card a:hover {
  opacity: 0.6;
}

.ct-info-note {
  font-size: 12px !important;
  color: rgba(0, 0, 0, 0.4) !important;
  font-weight: 300 !important;
}

.ct-social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.ct-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(56, 56, 56, 0.74);
  border-radius: 6px;
  font-size: 13px;
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.ct-social-btn:first-child:hover {
  background: #0a66c2;
  color: #fff;
  border-color: #0d6ac7;
}

.ct-social-btn:nth-child(2):hover {
  background: #fd2c4e;
  color: #fff;
  border-color: #f82548;
}

.ct-social-btn:nth-child(3):hover {
  background: #0866ff;
  color: #fff;
  border-color: #0f69fa;
}

/* ================================
   WHY CONTACT US
================================ */
.ct-why {
  padding: 80px 10%;
  background: #f8f8f8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ct-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ct-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 14px;
  display: block;
}

.ct-why-left h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 20px;
}

.ct-why-left h2 span {
  color: rgba(0, 0, 0, 0.25);
}

.ct-why-left p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.8;
  font-weight: 300;
}

.ct-why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ct-why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ct-why-item:last-child {
  border-bottom: none;
}

.ct-why-icon {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}

.ct-why-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}

.ct-why-item p {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.6;
  font-weight: 300;
}

/* ================================
   FORM + MAP
================================ */
.ct-main {
  padding: 80px 10%;
  background: #fff;
}

.ct-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ct-form-wrap h3,
.ct-map-wrap h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 6px;
}

.ct-form-wrap > p,
.ct-map-wrap > p {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 300;
  margin-bottom: 28px;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-field {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.ct-field > i {
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  flex-shrink: 0;
}

.ct-field input,
.ct-field textarea {
  width: 100%;
  padding: 12px 5px;
  background: transparent;
  border: none;
  color: #000;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  outline: none;
}

.ct-field textarea {
  height: 60px;
  padding-top: 15px;
  resize: none;
}

.ct-field::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.ct-field:focus-within::after {
  background: #000;
  height: 1.5px;
}

.ct-field label {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.32);
  pointer-events: none;
  transition: all 0.25s ease;
}

.ct-message label {
  top: 20px;
  transform: none;
}

.ct-field input:focus + label,
.ct-field input:not(:placeholder-shown) + label,
.ct-field textarea:focus + label,
.ct-field textarea:not(:placeholder-shown) + label {
  display: none;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: transparent;
}

.ct-field label span {
  color: rgba(0, 0, 0, 0.35);
}

.ct-phone-field {
  align-items: flex-start;
}

.ct-phone-field::after {
  content: none;
}

.ct-phone-container {
  position: relative;
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.ct-country-trigger {
  position: relative;
  padding: 10px 5px;
  color: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  min-height: 40px;
  display: flex;
  align-items: center;
  width: 150px;
  flex-shrink: 0;
  font-size: 13px;
  transition: all 0.2s ease;
}

.ct-country-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.ct-country-trigger:hover::after {
  background: rgba(0, 0, 0, 0.4);
}

.ct-country-codes {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 240px;
  background: #fff;
  border-radius: 6px;
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: ctSlide 0.2s ease;
}

@keyframes ctSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ct-country-codes.active {
  display: block;
}

.ct-country-codes input {
  width: 100%;
  padding: 11px 12px;
  border: none;
  background: transparent;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 13px;
  font-family: "DM Sans", sans-serif;
}

.ct-country-codes input:focus {
  outline: none;
}
.ct-country-codes input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.ct-country-codes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
}

.ct-country-item {
  padding: 10px 14px;
  color: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
}

.ct-country-item:hover {
  background: #f5f5f5;
  color: #000;
  padding-left: 18px;
}

.ct-phone-number {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.ct-phone-number input {
  width: 100%;
  padding: 12px 5px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  color: #000;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  transition: border-color 0.2s ease;
}

.ct-phone-number input:focus {
  outline: none;
  border-bottom-color: #000;
}

.ct-phone-number label {
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

.ct-phone-number input:focus + label,
.ct-phone-number input:not(:placeholder-shown) + label {
  display: none;
}

.ct-phone-number input::placeholder {
  color: transparent;
}

.ct-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.6;
}

.ct-privacy input[type="checkbox"] {
  accent-color: #000;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.ct-privacy a {
  color: #000;
  text-decoration: underline;
}

.ct-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  align-self: flex-start;
}

.ct-submit:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ================================
   MAP
================================ */
#ct-map {
  width: 100%;
  height: 340px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  margin-bottom: 16px;
}

.ct-map-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
}

.ct-map-address i {
  font-size: 18px;
  color: #000;
  margin-top: 2px;
  flex-shrink: 0;
}

.ct-map-address strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 3px;
}

.ct-map-address span {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 300;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out,
.leaflet-bar a {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.leaflet-control-zoom-in:hover,
.leaflet-control-zoom-out:hover,
.leaflet-bar a:hover {
  background-color: #f4f4f4 !important;
  color: #000000 !important;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background-color: #ffffff !important;
  color: #000000 !important;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2) !important;
}

.leaflet-popup-content,
.leaflet-popup-content b,
.leaflet-popup-content span {
  color: #000000 !important;
}

#ct-mapTrigger {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 12px 20px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
}

#ct-mapTrigger:hover {
  background-color: #222222 !important;
}

#ct-map-options {
  background-color: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.ct-map-item {
  color: #111111 !important;
}

.ct-map-item:hover {
  background-color: #f5f5f5 !important;
  color: #000000 !important;
}

/* ================================
   FOOTER
================================ */
.footer {
  padding-top: 60px;
  background: #f7f7f7e8;
  border-top: 1px solid #11111111;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 80px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.footer-brand img {
  width: 120px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 13px;
  color: #000;
  line-height: 1.7;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: rgb(0, 0, 0);
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #000;
  margin-bottom: 10px;
  font-size: 13px;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #000;
  transform: translateX(4px);
}

.footer-contact p {
  font-size: 13px;
  color: #000;
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 8px;
  color: #000;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.075);
  font-size: 12px;
  color: #000;
  letter-spacing: 0.03em;
}

.footer-bottom a {
  text-decoration: none;
  color: #111;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #272727;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(0, 0, 0, 0.123);
  color: #000;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #2e2e2e;
  background: #999;
  border-color: #ddd;
  transform: translateY(-2px);
}

/* ================================
   FOOTER RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    font-size: 11px;
  }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .ct-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ct-main-inner {
    grid-template-columns: 1fr;
  }
  .ct-why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ct-info-grid {
    grid-template-columns: 1fr;
  }
  .ct-form-row {
    grid-template-columns: 1fr;
  }
  .ct-hero-stats {
    flex-wrap: wrap;
  }
  .footer-container {
    padding: 0 24px 40px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Auto Fill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
  caret-color: #000;
}

.ct-phone-icon {
  margin-top: 20px;
}

/* ================================
   EMAIL VALIDATION
================================ */
.ct-field.ct-invalid::after {
  background: #e53935 !important;
  height: 1.5px;
}

/* ================================
   TOAST
================================ */
.ct-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  color: #fff;
  background: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 999999999999999999999999999999999999999999999;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.ct-toast.show {
  opacity: 1;
  transform: translateY(0);
}
.ct-toast.error {
  background: rgb(180, 0, 0);
}

@media (max-width: 600px) {
  #ct-toast {
    right: 12px;
    left: 12px;
  }
  .ct-toast {
    max-width: none;
  }
}