/* ---------- Global ---------- */
:root {
  --bg: #2d0f18;
  --deep: #120007;
  --accent-1: rgba(233, 113, 138, 0.22);
  /* soft pink */
  --accent-2: rgba(255, 200, 180, 0.12);
  /* warm glow */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Skip link for accessibility / SEO */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--accent-1);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

body {
  background: radial-gradient(circle at center, #2d0f18, #120007);
  color: white;
  overflow-x: hidden;
  padding-top: 100px;
  /* extra space for fixed navbar */
}

@media (max-width: 700px) {
  body {
    padding-top: 80px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 70px;
  }
}

/* ---------- Navbar ---------- */
/* #region navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;

  /* background: radial-gradient(circle at top, rgba(10, 0, 4, 0.95), rgba(5, 0, 4, 0.75)); */
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

}

.logo {
  width: 140px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

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

.logo img {
  width: 100%;
  height: auto;
  max-width: 140px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.6));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #cfcfcf;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #ffffff;
  opacity: 0;
  transition: width 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
  opacity: 1;
}

.nav-links a.active {
  color: #ffffff;
  font-weight: 500;
}

.nav-links a.active::after {
  width: 100%;
  opacity: 1;
}

.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
  transition: opacity 0.3s ease;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 700px) {
  .navbar {
    padding: 14px 20px;
  }

  .logo {
    width: 110px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100%;
    background: rgba(26, 10, 12, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 40px;
    gap: 24px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  }

  .nav-links a {
    font-size: 14px;
    width: 100%;
    padding: 8px 0;
  }

  body.nav-open .nav-links {
    right: 0;
  }

  .menu-btn {
    display: block;
    font-size: 24px;
    z-index: 1001;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }

  .logo {
    width: 100px;
  }
}

/* #endregion navbar */
/* ---------- Hero Section ---------- */
/* #region hero */
.hero {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 60px 40px;
  column-gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.left {
  max-width: 450px;
}

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

.product-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

.product-img {
  width: 550px;
  display: block;
  margin: auto;
}

.right {
  text-align: left;
}

.text-box {
  max-width: 450px;
}

.title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
}

.subtext {
  margin-top: 20px;
  font-size: 15px;
  color: #ccc;
}

.add-btn {
  margin-top: 30px;
  padding: 14px 32px;
  background: #ff5a79;
  border: none;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

.add-btn:hover {
  background: #ff3b60;
}

/* ---------- Product ---------- */
.product-box {
  text-align: center;
}

.product-img {
  width: 300px;
}

.details {
  margin-top: 20px;
}


.volume {
  color: #ccc;
}

.arrows button {
  margin: 10px 5px;
  padding: 8px 15px;
  background: transparent;
  border: 1px solid #666;
  color: white;
  border-radius: 50%;
  cursor: pointer;
}

/* ---------- Tabs ---------- */
.tabs {
  margin: 80px 40px;
  border-top: 1px solid #432026;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .tabs {
    margin: 60px 24px;
    padding-top: 32px;
  }
}

@media (max-width: 600px) {
  .tabs {
    margin: 50px 16px;
    padding-top: 28px;
  }
}

.tab {
  width: 25%;
  text-align: center;
  border-right: 1px solid #432026;
  padding: 20px 0;
}

.tab:last-child {
  border-right: none;
}

.tab span {
  color: #ff5a79;
}

.tab h3 {
  margin-top: 10px;
  font-size: 18px;
}

/* Smooth fade + slide animation start states */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

/* Button hover animations */
.add-btn {
  transition: 0.3s ease;
}

.add-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 90, 121, 0.4);
}

/* Image hover */
.product-img {
  transition: 0.4s ease;
}

.product-img:hover {
  transform: scale(1.05);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    row-gap: 40px;
    text-align: center;
    padding: 40px 24px;
  }

  .left,
  .right {
    max-width: 100%;
    justify-self: center;
  }

  /* Show the bottle first on smaller screens */
  .center {
    order: -1;
  }

  .title {
    font-size: 50px;
  }

  .product-img {
    width: 400px;
    max-width: 100%;
  }

  .text-box {
    max-width: 100%;
  }

  .subtext {
    font-size: 14px;
  }

  .add-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 30px 20px;
    row-gap: 30px;
  }

  .title {
    font-size: 42px;
    line-height: 1.2;
  }

  .product-img {
    width: 280px;
    max-width: 90%;
  }

  .volume {
    font-size: 14px;
  }

  .tabs {
    margin: 60px 20px;
    padding-top: 30px;
  }

  .tabs .tab {
    width: 50%;
    border-right: none;
    border-bottom: 1px solid #432026;
    padding: 16px 0;
  }

  .tabs .tab:nth-child(odd) {
    border-right: 1px solid #432026;
  }

  .tabs .tab:nth-child(3),
  .tabs .tab:nth-child(4) {
    border-bottom: none;
  }

  .tab h3 {
    font-size: 16px;
  }

  .tab span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 24px 16px;
    row-gap: 24px;
  }

  .title {
    font-size: 36px;
  }

  .subtext {
    font-size: 13px;
    margin-top: 16px;
  }

  .product-img {
    width: 240px;
  }

  .add-btn {
    padding: 11px 24px;
    font-size: 13px;
    margin-top: 24px;
  }

  .arrows button {
    padding: 6px 12px;
    font-size: 18px;
  }

  .tabs {
    margin: 50px 16px;
    padding-top: 24px;
  }

  .tabs .tab {
    padding: 14px 0;
  }

  .tab h3 {
    font-size: 14px;
  }

  .tab span {
    font-size: 12px;
  }
}

/* #endregion hero */
/* #region about */
.about-section {
  padding: 0;
  /* background: radial-gradient(circle at center, #2d0f18 0%, #120007 70%, #0A0004 100%); */
  max-height: 80vh;
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 640px;
}

/* LEFT SIDE IMAGE */
.image-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 80vh;

  /* keep your dark vibe */
  /* background: radial-gradient(circle at center, #1b070f 0%, #120007 85%); */
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* smaller image drawn as a layer */
.image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image: url("assets/Perfome Redolere.jpg"); */
  background-repeat: no-repeat;
  background-position: bottom;

  /* ✅ this is what makes it SMALL */
  background-size: 45% auto;
  /* <-- adjust: 35% smaller, 55% bigger */
  opacity: 0.95;

  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}

/* blend into right side */
.image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(to right,
      rgba(0, 0, 0, 0) 65%,
      rgba(18, 0, 7, 0.65) 82%,
      rgba(18, 0, 7, 0.95) 100%);
}

/* RIGHT SIDE TEXT */
.text-wrapper {
  flex: 1;
  padding: clamp(40px, 6vw, 110px) clamp(22px, 4vw, 70px);
  color: #f5dccc;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-wrapper h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 22px;
  color: #eac7ab;
}

.text-wrapper p {
  margin: 0 0 16px;
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  line-height: 1.75;
  opacity: 0.95;
}

/* Medium screens */
@media (max-width: 980px) {
  .about-inner {
    min-height: 560px;
  }

  .image-wrapper {
    flex: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-section {
    max-height: none;
  }

  .about-inner {
    flex-direction: column;
    min-height: auto;
  }

  .image-wrapper {
    height: 320px;
    min-height: 280px;
  }

  /* blend at the bottom on mobile */
  .image-wrapper::after {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 55%,
        rgba(18, 0, 7, 0.75) 80%,
        rgba(18, 0, 7, 0.95) 100%);
  }

  .text-wrapper {
    padding: 40px 24px 50px;
    text-align: left;
  }

  .text-wrapper h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .text-wrapper p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
}

@media (max-width: 480px) {
  .about-inner {
    min-height: auto;
  }

  .image-wrapper {
    height: 260px;
    min-height: 240px;
  }

  .text-wrapper {
    padding: 32px 20px 40px;
  }

  .text-wrapper h2 {
    margin-bottom: 16px;
  }

  .text-wrapper p {
    margin-bottom: 12px;
    line-height: 1.6;
  }
}

/* #endregion about */
/* #region products */

.similar-products {
  width: 100%;
  /* max-width: 1200px;
  margin: 0 auto; */
  /* background: var(--bg); */
  color: #fff;
  padding: 72px 5%;
  position: relative;
  overflow: visible;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  /* background: radial-gradient(circle at center, #2d0f18 0%, #120007 70%, #0A0004, 100%); */
}

/* header row: left title + arrows on same line */
.similar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 56px;
}

/* left block */
.left .tag {
  display: inline-block;
  color: #e9718a;
  letter-spacing: 3px;
  font-size: 11px;
}

.left .title {
  margin-top: 14px;
  font-size: 44px;
  line-height: 1.06;
  font-weight: 600;
}

/* arrows */
.slider-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.view-all-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.view-all-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.slider-track {
  width: 100%;
  overflow: hidden;
  /* forces sliding area */
  position: relative;
}

/* product row */
.products {
  display: flex;
  gap: 6%;
  align-items: flex-start;
  position: relative;
  /* allow glows to overflow and overlap */
  scroll-behavior: smooth;
  transition: transform 0.4s ease;
}

.products-wrapper {
  width: 100%;
  overflow: hidden;
  /* hide off-screen cards for carousel */
}

.similar-products .product {
  flex: 0 0 calc(50% - 16px);
  /* show 2 cards at a time (50% - half gap) */
  scroll-snap-align: start;
}

/* each product is lean (no box) */
.product {
  position: relative;
  width: 44%;
  padding: 24px 0 40px 0;
  z-index: 2;
  /* content above glow */
  color: #fff;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* large soft radial glow under each product using pseudo-element */
.product::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  width: 640px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.9;

  /* NEW: dynamic variable */
  /* background: var(--glow-bg); */
}

.product-1::before {
  left: 30%;
  top: 0%;
  width: 720px;
  height: 520px;
  filter: blur(100px);
}

.product-2::before {
  left: 70%;
  top: 10%;
  width: 720px;
  height: 520px;
  filter: blur(110px);
}


/* product number / content styling */
.prod-number {
  display: block;
  font-size: 32px;
  font-weight: 300;
  opacity: 0.6;
  margin-bottom: 12px;
  z-index: 3;
}

.product img {
  width: 280px;
  max-width: 100%;
  height: 280px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.7));
  transform: translateZ(0);
  transition: all 0.4s ease;
}

.product img:hover {
  transform: scale(1.1);
  /* slightly enlarge */
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.8));
  /* stronger shadow */
}

/* product text sits to the right of image in the reference; keep stacked but aligned nicely */
.prod-info {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.prod-info h3 {
  font-size: 20px;
  margin: 6px 0;
  z-index: 3;
}

.prod-info p {
  font-size: 14px;
  opacity: 0.7;
  max-width: 320px;
  margin: 0 auto 12px;
  z-index: 3;
}

.learn {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  font-size: 13px;
  text-decoration: none;
  z-index: 3;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.learn:hover {
  opacity: 0.8;
}

/* small screens — stack and reduce glow size so it doesn't overpower */
@media (max-width: 900px) {
  .similar-products {
    padding: 50px 4%;
  }

  .similar-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .slider-controls {
    margin-top: 12px;
  }

  .products {
    flex-direction: row;
    gap: 20px;
  }

  .similar-products .product {
    flex: 0 0 100%;
    /* show one card at a time */
    width: 100%;
    padding: 16px 0 32px 0;
  }

  .product::before {
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 320px;
    filter: blur(60px);
    opacity: 0.75;
    top: -8%;
  }

  .product-1::before {
    left: 50%;
    top: -6%;
    width: 500px;
    height: 340px;
  }

  .product-2::before {
    left: 50%;
    top: -4%;
    width: 500px;
    height: 340px;
  }

  .product img {
    width: 200px;
    max-width: 90%;
    height: 200px !important;
  }

  .left .title {
    font-size: 32px;
    line-height: 1.1;
  }

  .left .tag {
    font-size: 10px;
  }

  .prod-info h3 {
    font-size: 18px;
  }

  .prod-info p {
    font-size: 13px;
  }

  .learn {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .similar-products {
    padding: 40px 3%;
  }

  .similar-header {
    gap: 16px;
    margin-bottom: 32px;
  }

  .left .title {
    font-size: 28px;
    margin-top: 10px;
  }

  .slider-controls {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .view-all-btn {
    padding: 7px 14px;
    font-size: 10px;
  }

  .arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .product img {
    width: 180px;
    max-width: 85%;
    height: 180px !important;
  }

  .prod-info h3 {
    font-size: 16px;
  }

  .prod-info p {
    font-size: 12px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .similar-products {
    padding: 32px 3%;
  }

  .left .title {
    font-size: 24px;
  }

  .product img {
    width: 160px;
    max-width: 80%;
    height: 160px !important;
  }

  .product::before {
    width: 400px;
    height: 280px;
    filter: blur(50px);
  }

  .product-1::before,
  .product-2::before {
    width: 420px;
    height: 300px;
  }
}

/* #endregion products */


/* =========================================
   CONTACT
========================================= */

.contact-us {
  position: relative;
  width: 100%;
  min-height: 90vh;
  padding: clamp(64px, 6vw, 90px) 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Your page background (keep the site bg behind if you have one) */
  /* background: radial-gradient(circle at center, #6B6327 0%, #46411B 45%, #222A0F 75%, #0A0004 100%); */
}

/* background glows */
.contact-us .glow {
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.contact-us .glow-1 {
  width: 520px;
  height: 420px;
  background: radial-gradient(circle at center, rgba(58, 75, 47, 0.55), rgba(30, 42, 24, 0.08));
  top: 8%;
  left: 16%;
}

.contact-us .glow-2 {
  width: 640px;
  height: 520px;
  background: radial-gradient(circle, rgba(40, 55, 32, 0.40), rgba(10, 0, 4, 0));
  bottom: -10%;
  right: 10%;
}

/* layout container */
.contact-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

/* =========================================
   IMAGE (IMPROVED)
========================================= */

.contact-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* a “frame” around the image so it looks intentional */
.contact-image .image-frame {
  width: min(360px, 90%);
  aspect-ratio: 3 / 4;
  /* keeps it elegant even before image loads */
  border-radius: 18px;
  overflow: hidden;

  /* subtle glass border */
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);

  /* soft shadow + slight lift */
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);

  transform: translateZ(0);
}

.contact-image img {
  width: 100%;
  height: 100%;
  display: block;

  /* BEST for product photos */
  object-fit: cover;
  object-position: center;

  /* if you prefer no cropping, use this instead: */
  /* object-fit: contain; background: rgba(0,0,0,0.25); */

  transform: scale(1.02);
}

/* =========================================
   GLASS CARD
========================================= */

.glass-card {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 520px;
  padding: clamp(28px, 4vw, 42px);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;

  text-align: center;
  color: #fff;

  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  backdrop-filter: blur(14px);

  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.30);

  /* IMPORTANT: don't clip dropdowns */
  overflow: visible;
}

/* =========================================
   FORM
========================================= */

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-field:last-child {
  margin-bottom: 0;
}

.contact-field label {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 4px;
}

.contact-field .required-asterisk {
  color: #ff5a79;
  margin-left: 2px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  margin-bottom: 0;
}

.contact-form select option {
  background: #1a060e;
  color: #fff;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 3px rgba(255, 90, 121, 0.18);
}

.contact-form button {
  margin-top: 6px;
  padding: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;

  background: #6B6327;
  color: #fff;
  font-size: 16px;
  font-weight: 650;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-form button:hover {
  background: #2d3a22;
  transform: translateY(-1px);
}

.contact-success-card {
  margin-top: 28px;
  padding: 40px 32px;
  border-radius: 24px;
  background: #15336e;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(15,23,42,0.8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-success-icon-wrap {
  display: flex;
  justify-content: center;
}

.contact-success-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 3px solid #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,23,42,0.8);
}

.contact-success-check {
  font-size: 28px;
  color: #22c55e;
}

.contact-success-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 4px 0;
}

.contact-success-text {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-success-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(250,204,21,0.6);
  background: rgba(15,23,42,0.6);
  color: #facc15;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 4px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-success-btn:hover {
  background: rgba(15,23,42,0.85);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(15,23,42,0.8);
}

/* =========================================
   intl-tel-input FIX (dropdown + matching input)
========================================= */

.iti {
  width: 100%;
  position: relative;
  z-index: 20;
  /* above glass */
}

.iti input[type="tel"],
.iti input {
  width: 100%;
  padding: 14px 16px 14px 86px !important;
  /* space for flag + dial code */
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  outline: none !important;
  box-sizing: border-box;
}

.iti__flag-container {
  left: 12px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
  .contact-us {
    max-height: none;
    padding: 50px 4%;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-image {
    order: -1;
  }

  .contact-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 16px;
  }

  .glass-card {
    max-width: 100%;
    padding: 32px 24px;
  }

  .contact-form {
    gap: 18px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 12px 14px;
    font-size: 14px;
  }

  .contact-form button {
    padding: 14px;
    font-size: 15px;
  }

}

@media (max-width: 600px) {
  .contact-us {
    padding: 40px 3%;
  }

  .contact-content {
    gap: 28px;
  }

  .contact-image img {
    max-width: 100%;
  }

  .glass-card {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .glass-card h2 {
    font-size: 24px;
  }

  .glass-card p {
    font-size: 13px;
  }

  .contact-form {
    gap: 16px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 11px 12px;
    font-size: 13px;
    border-radius: 10px;
  }

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

  .contact-form button {
    padding: 13px;
    font-size: 14px;
  }

  .glow-1,
  .glow-2 {
    width: 300px !important;
    height: 250px !important;
  }
}

@media (max-width: 480px) {
  .contact-us {
    padding: 32px 3%;
  }

  .glass-card {
    padding: 24px 18px;
  }

  .glass-card h2 {
    font-size: 22px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 10px 12px;
    font-size: 12px;
  }

  .contact-form button {
    padding: 12px;
    font-size: 13px;
  }
}

/* #region Footer */
.site-footer {
  width: 100%;
  padding: 60px 5px 30px;
  /* background: radial-gradient(circle at center, #2d0f18 0%, #2d0f18 70%, #0A0004 100%); */
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Logo */
.footer-logo img {
  max-width: 250px;
  height: auto;
}

.footer-logo .footer-description-optional,
.site-footer .footer-description-optional {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  margin-top: 12px;
  max-width: 280px;
}

/* Sections */
.footer-sections {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-section {
  min-width: 150px;

}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  margin-top: 20px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-section ul li a i {

  font-size: 20px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.footer-section ul li a:hover i {
  transform: translateX(3px);
}

/* Social icons */
.footer-section .socials {
  display: flex;
  gap: 12px;
}

.footer-section .socials a i {
  font-size: 20px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-section .socials a:hover i {
  transform: scale(1.2);
  color: #e9718a;
  /* optional hover color */
}

.footer-section .socials .footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-section .socials .footer-social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-section .socials a:hover .footer-social-icon {
  transform: scale(1.2);
  color: #e9718a;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.7;
}

/* Mobile */
@media screen and (max-width: 900px) {
  .site-footer {
    padding: 50px 4% 24px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .footer-logo img {
    max-width: 200px;
  }

  .footer-sections {
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 400px;
  }

  .footer-section {
    min-width: auto;
    width: 100%;
  }

  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .footer-section ul li {
    margin-bottom: 10px;
  }

  .footer-section a {
    font-size: 13px;
  }

  .footer-section .socials {
    justify-content: center;
    gap: 16px;
  }

  .footer-bottom {
    margin-top: 32px;
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 40px 3% 20px;
  }

  .footer-logo img {
    max-width: 160px;
  }

  .footer-sections {
    gap: 28px;
  }

  .footer-section h3 {
    font-size: 15px;
  }

  .footer-section ul li a i {
    font-size: 18px;
  }

  .footer-section .socials a i {
    font-size: 18px;
  }

  .footer-section .socials .footer-social-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 32px 3% 18px;
  }

  .footer-logo img {
    max-width: 140px;
  }

  .footer-sections {
    gap: 24px;
  }

  .footer-section h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-section a {
    font-size: 12px;
  }
}

/* #endregion Footer */