@font-face {
  font-family: "Birthlong";
  src: url("../Fonts/Birthlong.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../Fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../Fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../Fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "Delight";
  src: url("../Fonts/delight-regular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Delight_Medium";
  src: url("../Fonts/delight-medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "Delight_Bold";
  src: url("../Fonts/delight-bold.otf") format("opentype");
  font-weight: bold;
}

/* ───────────── BASE ───────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000000;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ───────────── TOKENS ───────────── */
:root {
  --black: #000000;
  --dark: #111111;
  --card: #181818;
  --border: #2a2a2a;
  --yellow: #ffd84d;
  --yellow2: #e6b800;
  --white: #ffffff;
  --muted: #999999;
  --radius: 14px;
  --px: 8%;
}
body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── BACKGROUND ── */
.page-wrapper {
  min-height: 100vh;
  background-image: url("../Images/contact.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.page-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}

/* ── NAV ── */
nav {
position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 96px;
}
.logo {
    font-family: 'Birthlong';
  font-size: 2.2rem;
  color: var(--yellow2);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow2) }

.btn-free-quote {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow2);
  color: #111;
  border: none;
  border-radius: 50px;
  padding: 0.58rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-free-quote:hover { background: var(--yellow2) }
.btn-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #111;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(14px);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--yellow2); }
.mobile-menu .btn-free-quote {
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 0.75rem 2rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 2rem 3.5rem 4rem;
}

/* ── GLASSMORPHISM CARD ── */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(30,30,30,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 780px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* ── LEFT PANEL ── */
.card-left {
  padding: 2.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-heading {
  font-size: 34px;
  font-family: 'Delight_Medium';
  font-weight: 900;
  color: #fff;
  line-height: 36px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.card-heading .highlight {
  font-family: 'Birthlong';
  color: var(--yellow2);
  text-transform: none;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0;
}
.card-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 2rem;
}
.contact-info {
display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
    font-family: 'Poppins';
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}
.contact-info-item i {
  font-size: 0.9rem;
  width: 18px;
  text-align: center;
}
.icon-mail { color: #5b9cf6; }
.icon-phone { color: #4ade80; }

.social-links { display: flex; gap: 0.8rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.social-btn:hover { transform: scale(1.1); opacity: 0.9; }
.social-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff;
}
.social-fb { background: #1877f2; color: #fff; }
.social-tw { background: #1da1f2; color: #fff;  display: none;}

/* ── RIGHT PANEL / FORM ── */
.card-right {
font-family: 'poppins';
    padding: 2.8rem 2.4rem 2.8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(212,232,74,0.5);
  background: rgba(255,255,255,0.14);
}
.form-group textarea {
  resize: none;
  height: 90px;
}
.btn-submit {
  background: var(--yellow2);
  color: #111;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 2rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  width: fit-content;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
  margin-top: 0.2rem;
}
.btn-submit:hover { background: #c8dc30; transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── SUCCESS ── */
.success-msg {
  display: none;
  background: rgba(212,232,74,0.15);
  border: 1px solid rgba(212,232,74,0.4);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  color: var(--yellow2);
  text-align: center;
}

/* ── TABLET (max 900px) ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  .hero { padding: 2rem 2rem 3rem; }
}

/* ── MOBILE (max 768px) ── */
@media (max-width: 768px) {
  nav { padding: 1.1rem 1.2rem; }
  .nav-links { display: none; }
  .btn-free-quote.desktop-cta { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding: 1.5rem 1rem 3rem;
    align-items: flex-start;
    padding-top: 2rem;
  }

  .contact-card {
    grid-template-columns: 1fr;
    max-width: 100%;
    border-radius: 16px;
  }

  .card-left {
    padding: 2rem 1.6rem 1.8rem;
    gap: 1.5rem;
  }

  .card-heading { font-size: 1.45rem; }
  .card-heading .highlight { font-size: 1.65rem; }

  .card-right {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.8rem 1.6rem;
  }
}

/* ── SMALL MOBILE (max 400px) ── */
@media (max-width: 400px) {
  .card-heading { font-size: 1.2rem; }
  .card-heading .highlight { font-size: 1.4rem; }
  .card-left, .card-right { padding: 1.5rem 1.2rem; }
}
