/* =============================== */
/* DESIGN TOKENS */
/* =============================== */

:root {
  --color-primary: #0f172a;
  --color-accent: #ef4444;
  --color-text: #334155;
  --color-bg: #ffffff;
  --color-dark-bg: #000000;

  --max-width: 1200px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;

  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);

  --transition-base: 0.3s ease;
}

/* =============================== */
/* RESET */
/* =============================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =============================== */
/* BASE */
/* =============================== */

html {
  scroll-behavior: smooth;
  
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  background: var(--color-dark-bg);
  color: #ffffff;
  line-height: 1.5;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Focus Accessibility */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* =============================== */
/* NAVBAR */
/* =============================== */

.navbar {
  background: linear-gradient(to right, #000, #111, #000);
  position: sticky;
  top: 0;
  z-index: 1000;
  will-change: transform;
}

.container {
  max-width: var(--max-width);
  margin: auto;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: bold;
}

.tri {
  color: #ffffff;
}

.nity {
  color: var(--color-accent);
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #ffffff;
  text-decoration: none;
  transition: color var(--transition-base);
}


.nav-menu a:hover {
  color: var(--color-accent);
}

/* =============================== */
/* HAMBURGER */
/* =============================== */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 5px;
  transition: var(--transition-base);
}

/* =============================== */
/* HERO SECTION */
/* =============================== */

.hero {
  min-height: calc(100vh - 70px);
  background: url("images/main.png") no-repeat center center / cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 20px;
}

/* ================= HERO CONTENT ================= */

.hero-content {
  max-width: 720px;
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.hero-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #dddddd;
  line-height: 1.6;
}

/* Dropdown button text */
.custom-select button {
  color: #000;
}

/* Dropdown options container */
.select-options {
  background: #fff;
}

/* Dropdown option text */
.select-options li {
  color: #000;
}

/* Hover state (still readable) */
.select-options li:hover {
  background: #f2f2f2;
  color: #000;
}

/* Dropdown wrapper */
.custom-select {
  position: relative;
}

/* Button styling */
.custom-select button {
  width: 100%;
  min-height: 44px;
  padding: 10px 40px 10px 14px; /* space for arrow */
  border-radius: 12px;
  background: #fff;
  border: 1px solid #ddd;
  text-align: left;
  cursor: pointer;
  position: relative;
}

/* Dropdown arrow */
.custom-select button::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #555;
  pointer-events: none;
}

/* Open state arrow rotation */
.custom-select.open button::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Dropdown list */
.select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 20;
}

/* Options */
.select-options li {
  padding: 12px 14px;
  color: #000;
  cursor: pointer;
}

/* Hover */
.select-options li:hover {
  background: #f2f2f2;
}


/* ================= FORM CARD ================= */

.form-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 32px);
  box-shadow: var(--shadow-soft);
}

.form-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.65),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* ================= FORM ================= */

.form-card form {
  display: grid;
  gap: 14px;
}

.form-card h2 {
  text-align: center;
  color: var(--color-accent)
}

.form-card h2 {
  text-align: center;
  color: var(--color-accent); /* rich orange */
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.form-card h2 {
  text-align: center;
  color: var(--color-accent);
  text-shadow: 0 0 12px rgba(255, 152, 0, 0.4);
}

.form-card label {
  font-size: 1.05rem;
  color: #ffffff;
}

.form-card input,
.form-card button {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 16px;
  border: none;
}

.form-card input {
  background: #ffffff;
}

.form-card input:focus {
  outline: none;
  border: 1px solid var(--color-accent);
}

.custom-select button {
  color: #433f3f !important;
}

/* ================= CUSTOM SELECT ================= */

.custom-select {
  position: relative;
}

.custom-select button {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
}

.select-options {
  position: absolute;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  list-style: none;
  padding: 0;
  margin-top: 6px;
  display: none;
  z-index: 50;
}

.select-options li {
  padding: 12px 14px;
  cursor: pointer;
}

.select-options li:hover {
  background: #f2f2f2;
}

/* ================= BUTTON ================= */

.form-card button {
  background: linear-gradient(135deg, #ff0000, #46b4ed);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.form-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, #e60000, #46b4ed);
}

.form-card button {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}


/* ===== CUSTOM SELECT ===== */

.custom-select {
  position: relative;
}

.custom-select button {
  width: 100%;
  min-height: 44px;
  background: #fff;
  border-radius: 12px;
  text-align: left;
  padding: 10px 14px;
  cursor: pointer;
}

.select-options {
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  list-style: none;
  padding: 0;
  margin-top: 6px;
  display: none;
  z-index: 50;
}

.select-options li {
  padding: 12px 14px;
  cursor: pointer;
}

.select-options li:hover {
  background: #f2f2f2;
}

/* ===== FLATPICKR INPUT ===== */

#deliveryDate {
  background: #fff;
}

/* ===== MOBILE ===== */

@media (max-width: 480px) {
  .form-card {
    padding: 20px;
  }
}


/* =============================== */
/* ABOUT SECTION */
/* =============================== */

.about-section {
  background-color: var(--color-bg);
  padding: var(--space-lg) var(--space-md);
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  position: relative; /* important */
}

.about-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e63946; /* same as header-line */
  display: block;
  margin: 12px auto 0; /* center underline */
  border-radius: 10px;
}


.about-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  max-width: 60ch;
}

/* =============================== */
/* ABOUT IMAGE */
/* =============================== */

.about-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-image img {
  object-fit: cover;
  transition: transform var(--transition-base);
}

.about-image:hover img {
  transform: scale(1.05);
}

/* =============================== */
/* RESPONSIVE */
/* =============================== */

@media (max-width: 1024px) {
  .nav-menu {
    gap: 15px;
  }

  .nav-menu a {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #000, #111);
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    z-index: 999;
  }

  .nav-menu.active {
    max-height: 100vh;
  }

  .nav-menu a {
    padding: 16px 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .form-card {
    max-width: 600px;
  }

  .form-card form {
    grid-template-columns: 1fr 1fr;
  }

  .form-card h3,
  .form-card button {
    grid-column: span 2;
  }

  .about-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .about-section {
    padding: var(--space-xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 15px 40px;
  }

  .nav-menu a {
    font-size: 15px;
  }

  .form-card {
    max-width: 460px;
  }

  .hero {
    padding-top: 80px;
  }
}

@media (min-width: 1400px) {
  .about-container {
    max-width: 1320px;
  }
}




/* ==============================
   PRODUCTS SECTION
============================== */
.products {
  padding: var(--space-xl) var(--space-md);
  background-color: var(--color-bg);
}

.products__container {
  max-width: var(--max-width);
  margin: auto;
}

/* ==============================
   HEADER
============================== */
.products__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.products__title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-primary);
}

.products__underline {
  display: block;
  width: 64px;
  height: 4px;
  background-color: var(--color-accent);
  margin: var(--space-xs) auto;
  border-radius: 999px;
}

.products__subtitle {
  color: var(--color-text);
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

/* ==============================
   GRID
============================== */
.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* ==============================
   CARD
============================== */
.product-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base),
    box-shadow var(--transition-base);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ==============================
   IMAGE
============================== */
.product-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.product-card:hover img {
  transform: scale(1.08);
}

/* ==============================
   CONTENT
============================== */
.product-card__content {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

/* ==============================
   TEXT CONTROL
============================== */
.product-card__title {
  font-size: 1.35rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.product-card__description {
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-md);

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.product-card__button {
  background: linear-gradient(135deg, #ff0000, #46b4ed);
  border: none;
  color: white;
  padding: 0.7rem 2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.product-card__button {
  margin-top: auto;
}

.product-card__button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ==============================
   RESPONSIVE
============================== */
@media (min-width: 768px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products {
    padding: var(--space-xl) var(--space-lg);
  }
}


/* ==============================
   PRODUCTS SECTION (FIXED)
============================== */

.products {
  padding: var(--space-xl) var(--space-md);
  background-color: var(--color-bg);
}

.products__container {
  max-width: var(--max-width);
  margin: auto;
}

/* ==============================
   HEADER
============================== */
.products__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.products__title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-primary);
}

.products__underline {
  display: block;
  width: 64px;
  height: 4px;
  background-color: var(--color-accent);
  margin: var(--space-xs) auto;
  border-radius: 999px;
}

.products__subtitle {
  color: var(--color-text);
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

/* ==============================
   GRID
============================== */
.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* ==============================
   PRODUCT CARD
============================== */
.product-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base),
    box-shadow var(--transition-base);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(211, 10, 10, 0.35);
}

/* IMAGE */
.product-card__image {
  height: 220px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.product-card:hover img {
  transform: scale(1.1);
}

/* CONTENT */
.product-card__content {
  padding: var(--space-lg);
  text-align: center;
  flex: 1;
}

.product-card__title {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.product-card__description {
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* PRICE */
.product-card__price {
  color: var(--color-accent);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

/* BUTTON */
.product-card__button {
  background: linear-gradient(135deg, #ff0000, #46b4ed);
  border: none;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.product-card__button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ==============================
   RESPONSIVE
============================== */
@media (min-width: 768px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products {
    padding: var(--space-xl) var(--space-lg);
  }

  .product-card__image {
    height: 260px;
  }
}

/* ===============================
   WHY TRINITY — SENIOR RESPONSIVE
=============================== */

.why-trinity {
  background: #fffcfb;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
}

/* ===============================
   CONTAINER
=============================== */

.why-container {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  box-shadow:
    0 15px 35px rgba(0,0,0,.06),
    0 5px 15px rgba(239,68,68,.04);
}

/* ===============================
   MOBILE FIRST ORDER
=============================== */

.why-content {
  order: 1;
  display: flex;
  flex-direction: column;
}

.why-image-frame {
  order: 2;
  max-width: 420px;
  margin-inline: auto;
}

/* ===============================
   HEADER
=============================== */

/* ===============================
   WHY SECTION HEADER STYLE
=============================== */

.why-header {
  width: 100%;
  text-align: center;
  margin-bottom: 2.5rem;
}

.why-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}



/* ===============================
   IMAGE FRAME
=============================== */

.why-image-frame {
  border-radius: 22px;
  padding: 3px;
  background: linear-gradient(135deg, var(--color-accent), #46b4ed, #8b5cf6);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(239, 13, 13, 0.12);
}

.why-image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  transition: transform .4s ease;
}

.why-image-frame:hover img {
  transform: scale(1.05);
}

/* ===============================
   GRID
=============================== */

.why-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
}

/* ===============================
   CARD
=============================== */

.why-card {
  background: #fff;
  border-radius: 16px;
  padding: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 6px 15px rgba(15,23,42,.06);
  transition: .3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(243, 15, 15, 0.12);
}

/* ===============================
   ICON
=============================== */

.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(239,68,68,.1), rgba(70,180,237,.1));
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--color-accent);
}

/* ===============================
   TEXT
=============================== */

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .25rem;
  color: var(--color-primary);
}

.why-card p {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--color-text);
}

/* ===============================
   TABLET
=============================== */

@media (min-width: 768px) {

  .why-container {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }

  .why-image-frame {
    order: 1;
    max-width: 100%;
  }

  .why-content {
    order: 2;
  }

  .why-header {
    text-align: left;
  }

  .why-title::after {
    left: 0;
    transform: none;
  }
}

/* ===============================
   DESKTOP
=============================== */

@media (min-width: 1024px) {

  .why-container {
    padding: 4rem;
    gap: 4rem;
  }

  .why-card {
    padding: 1.5rem 1.75rem;
  }

  .why-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
}

/* ===============================
   LARGE DESKTOP
=============================== */

@media (min-width: 1280px) {

  .why-container {
    max-width: 1320px;
    padding: 4.5rem 5rem;
  }

  .why-image-frame img {
    aspect-ratio: 16 / 10;
  }
}

/* ===============================
   TOUCH OPTIMIZATION
=============================== */

@media (hover: none) {

  .why-card:hover,
  .why-image-frame:hover {
    transform: none;
  }
}

/* ===============================
   TESTIMONIAL SECTION
=============================== */

.testimonials {
  background: #fff7f7;
  padding: clamp(3rem, 8vw, 6rem) 1rem;
}

.testimonials-container {
  background: #ffffff;
  max-width: 1200px;
  margin: auto;
  border-radius: 12px;
  padding: clamp(2rem, 5vw, 4rem);
}

/* ===============================
   HEADER
=============================== */

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.testimonials-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: .05em;
  color: #111;
}

.testimonials-underline {
  display: block;
  width: 64px;
  height: 4px;
  background-color: var(--color-accent); /* red like image */
  margin: 12px auto 0;
  border-radius: 999px;
}

.testimonials-header p {
  font-size: .95rem;
  color: #666;
  margin-top: .5rem;
  line-height: 1.6;
}

/* ===============================
   TRACK AREA
=============================== */

.testimonial-track {
  background: #fef9f9;
  border-radius: 10px;
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  gap: 1.5rem;
}

/* ===============================
   CARD
=============================== */

.testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform .3s ease;
}

.testimonial-card.active {
  transform: translateY(-10px);
}

.stars {
  color: #ffb703;
  font-size: 1rem;
  margin-bottom: .75rem;
}

.review {
  font-size: .9rem;
  color: #444;
  line-height: 1.6;
}

.author {
  margin-top: 1rem;
}

.author strong {
  display: block;
  font-size: .9rem;
}

.author span {
  font-size: .8rem;
  color: #777;
}

/* ===============================
   RESPONSIVE GRID
=============================== */

/* Tablet */

@media (min-width: 768px) {

  .testimonial-track {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Desktop */

@media (min-width: 1024px) {

  .testimonial-track {
    grid-template-columns: repeat(3, 1fr);
  }

}


/* ================================
   CONTACT SECTION
================================ */

.contact-section {
  padding: clamp(3rem, 7vw, 6rem) 1rem;
  background: #f5f5f5;
}

/* ================================
   HEADER
================================ */

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h2 {
  color: #000;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.header-line {
  color: #000;
  width: 60px;
  height: 3px;
  background: #e63946;
  display: block;
  margin: 12px auto;
  border-radius: 10px;
}

.contact-header p {
  color: #000;
  font-size: .95rem;
  color: #555;
}

/* ================================
   MAIN WRAPPER
================================ */

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* ================================
   FORM SIDE
================================ */

.contact-form-box h3 {
  color: #000;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}

.field label {
  color: #000;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.field input,
.field textarea {
  padding: .9rem 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: .9rem;
  outline: none;
  transition: .2s ease;
}

.field textarea {
  resize: none;
  height: 140px;
}

.field input:focus,
.field textarea:focus {
  border-color: #e0b34d;
}

/* ================================
   BUTTON
================================ */

.send-btn {
  margin-top: 1rem;
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  background: #e0b34d;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: .3s ease;
}

.send-btn:hover {
  background: #d1a23f;
}

/* ================================
   INFO SIDE
================================ */

.contact-info-box {
  position: relative;
  color: #000;
}


.contact-info-box h3 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.info-block {
  margin-bottom: 1.5rem;
}

.info-block h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.info-block p {
  font-size: .9rem;
  line-height: 1.6;
  color: #444;
}

.contact-info-box a {
  color: #000;              /* black text */
  text-decoration: none;    /* remove underline */
  font-size: .9rem;
}

.contact-info-box a:hover {
  text-decoration: underline; /* optional: subtle hover */
}



/* ================================
   TABLET
================================ */

@media (min-width: 768px) {

  .contact-wrapper {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
  }

  .contact-image {
    max-width: 220px;
  }

}

/* ================================
   DESKTOP
================================ */

@media (min-width: 1024px) {

  .contact-wrapper {
    grid-template-columns: 1.3fr 1fr;
  }

  .contact-image {
    max-width: 280px;
  }

}


/* ===============================
   SIGNATURE CREDIT FOOTER (PRO UI)
================================ */

.signature-credit {
  width: 100%;
  padding: clamp(18px, 4vw, 32px) 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #efeded;
  overflow: hidden;
}

/* Layout Row */

.signature-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 16px);
  max-width: 100%;
  flex-wrap: wrap;
  text-align: center;
}

/* Decorative Lines */

.signature-row .line {
  flex-shrink: 0;
  width: clamp(24px, 8vw, 90px);
  height: 2px;
  background: #111;
  border-radius: 50px;
}

/* Signature Text */

.signature-text {
  font-family: "Segoe Script", "Pacifico", "Brush Script MT", cursive;
  font-size: clamp(0.8rem, 2.5vw, 1.1rem);
  font-weight: 500;
  color: #111;
  line-height: 1.3;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

/* Email Styling */

.signature-text a {
  color: #111;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  word-break: break-word;
}

/* Underline Hover Effect */

.signature-text a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: #111;
  transition: width 0.3s ease;
}

.signature-text a:hover::after {
  width: 100%;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 600px) {

  .signature-row {
    gap: 10px;
  }

  .signature-row .line {
    width: 34px;
  }

}

/* ===============================
   EXTRA SMALL DEVICES (SAFE MODE)
================================ */

@media (max-width: 360px) {

  .signature-text {
    font-size: 0.75rem;
  }

  .signature-row .line {
    width: 24px;
  }

}
