/* =====================
   VNMS DigitalCraft Styles
   ===================== */
:root {
  --floral-white: #fffcf2;
  --timberwolf: #ccc5b9;
  --black-olive: #252422;
  --eerie-black: #403d39;
  --flame: #eb5e28;
  --font-main: 'Fonekey', sans-serif;
}
body {
  font-family: var(--font-main);
  background: var(--floral-white);
  color: var(--black-olive);
  margin: 0;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1.1rem;
}
.header-main {
  background: var(--floral-white);
  border-bottom: 1px solid var(--timberwolf);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--flame);
  letter-spacing: 0.04em;
}
.nav-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--black-olive);
  font-weight: 500;
  transition: color 0.2s;
}
/* ===== HERO SECTION ===== */
.section-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--floral-white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--black-olive);
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.3rem;
  color: var(--eerie-black);
  margin-bottom: 2rem;
}
.cta-btn {
  display: inline-block;
  background: var(--flame);
  color: var(--floral-white);
  font-weight: bold;
  padding: 0.8rem 2.2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(235,94,40,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--black-olive);
  box-shadow: 0 4px 24px rgba(64,61,57,0.12);
}
/* ===== ABOUT SECTION ===== */
/* General section container improvements */
.section-about,
.section-services,
.section-portfolio,
.section-testimonials {
  padding: 6rem 2rem;
}

.section-about {
  background: var(--timberwolf);
  padding: 4rem 0;
}
.about-wrap {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-svg {
  flex: 0 0 120px;
}
.redesigned-about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.about-card {
  background: var(--floral-white);
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(64,61,57,0.06);
  padding: 1.2rem 1.4rem;
  min-width: 160px;
  flex: 1 1 160px;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-card:hover {
  box-shadow: 0 6px 32px rgba(235,94,40,0.10);
  transform: translateY(-2px) scale(1.03);
}
.about-card h3 {
  color: var(--flame);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.about-card p {
  color: var(--eerie-black);
  font-size: 0.98rem;
}
.about-text h2 {
  font-size: 2rem;
  color: var(--flame);
  margin-bottom: 0.6rem;
}
.about-desc {
  color: var(--eerie-black);
  margin-top: 0.6rem;
}
/* SVG enhancements and service icon animation */
.svc-icon { transform-origin: center; transition: transform 0.28s ease; }
.svc-icon .svc-stroke { stroke-dasharray: 80; stroke-dashoffset: 80; transition: stroke-dashoffset 0.9s ease, opacity 0.4s; }
.service-card:hover .svc-icon { transform: translateY(-6px) rotate(-2deg) scale(1.04); }
.service-card:hover .svc-stroke { stroke-dashoffset: 0; opacity: 1; }

/* Hero blob subtle motion */
#blob-1, #blob-2 { transform-origin: center; transition: transform 4s ease-in-out; }
.section-hero:hover #blob-1 { transform: translateY(-6px) scale(1.02); }
.section-hero:hover #blob-2 { transform: translateY(6px) scale(1.01); }

/* About team grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 1rem; }
.team-member { background: var(--floral-white); padding: 1rem; border-radius: 0.8rem; box-shadow: 0 2px 10px rgba(64,61,57,0.06); }
.team-member h4 { margin: 0 0 0.2rem 0; color: var(--black-olive); }
.team-member .role { color: var(--flame); font-weight: 600; margin-bottom: 0.4rem; }
.team-member .bio { color: var(--eerie-black); font-size: 0.95rem; }

/* ===== SERVICES GRID & CARDS ===== */
.section-services {
  padding: 6rem 0;
  background: var(--floral-white);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 2rem auto 0 auto;
}
.service-card {
  background: var(--timberwolf);
  border-radius: 1.2rem;
  padding: 2rem 1.2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(64,61,57,0.06);
  transition: box-shadow 0.2s, transform 0.18s;
}
.service-card h3 { color: var(--flame); margin: 1rem 0 0.5rem; font-size: 1.15rem; }
.service-card p { color: var(--eerie-black); font-size: 0.98rem; }

/* ===== PORTFOLIO SHOWCASE (UNIQUE LAYOUT) ===== */
.section-portfolio { padding: 6rem 0; background: var(--floral-white); }

.portfolio-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}
.portfolio-subtitle {
  font-size: 1.2rem;
  color: var(--eerie-black);
  margin-top: 0.8rem;
  font-style: italic;
}

.portfolio-filters {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  background: transparent;
  color: var(--black-olive);
  border: 2px solid var(--timberwolf);
  border-radius: 2rem;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-main);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--flame);
  color: var(--floral-white);
  border-color: var(--flame);
  transform: translateY(-2px);
}

.portfolio-showcase {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.showcase-item {
  background: var(--timberwolf);
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(64,61,57,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.showcase-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 48px rgba(235,94,40,0.12);
}

.showcase-item.featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  padding: 2rem;
}

.showcase-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,252,242,0.8), rgba(204,197,185,0.4));
  padding: 2rem;
  min-height: 200px;
}
.featured .showcase-visual {
  flex: 0 0 300px;
  min-height: 180px;
}

.showcase-content {
  padding: 2rem;
  flex: 1;
}
.featured .showcase-content {
  padding-left: 3rem;
}

.showcase-content h3 {
  color: var(--black-olive);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.project-type {
  color: var(--flame);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.showcase-content p {
  color: var(--eerie-black);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.project-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.stat {
  background: var(--floral-white);
  color: var(--flame);
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.case-btn.primary {
  background: var(--flame);
  color: var(--floral-white);
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.case-btn.primary:hover {
  background: var(--black-olive);
}

@media (max-width: 900px) {
  .portfolio-showcase {
    grid-template-columns: 1fr;
  }
  .showcase-item.featured {
    flex-direction: column;
  }
  .featured .showcase-content {
    padding-left: 2rem;
  }
}

/* ===== TESTIMONIALS ===== */
.section-testimonials { padding: 4rem 0; background: var(--timberwolf); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; max-width: 1000px; margin: 0 auto; }
.testimonial-card { background: var(--floral-white); padding: 1.4rem; border-radius: 1rem; box-shadow: 0 2px 12px rgba(64,61,57,0.06); position: relative; }
.quote-svg { width: 36px; height: 36px; position: absolute; left: 1rem; top: 1rem; opacity: 0.9; }
blockquote { margin: 0 0 0.8rem 56px; color: var(--eerie-black); font-size: 1rem; }
cite { display:block; margin-left:56px; color:var(--flame); font-weight:600; }

/* ===== FOOTER ===== */
.footer-main { 
  background: linear-gradient(135deg, #fffcf2 0%, #f8f4f0 100%);
  border-top: 1px solid rgba(235, 94, 40, 0.1);
  position: relative;
  overflow: hidden;
}

.footer-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo svg {
  transition: transform 0.3s ease;
}

.footer-logo:hover svg {
  transform: scale(1.05);
}

.footer-tagline {
  color: var(--eerie-black);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-email,
.footer-phone {
  color: var(--flame);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-email::after,
.footer-phone::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--flame);
  transition: width 0.3s ease;
}

.footer-email:hover::after,
.footer-phone:hover::after {
  width: 100%;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: var(--eerie-black);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--flame);
  border-radius: 1px;
}

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

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--black-olive);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-column ul li a:hover {
  color: var(--flame);
  padding-left: 8px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(235, 94, 40, 0.1);
  border-radius: 12px;
  color: var(--flame);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--flame);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.footer-social-link:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.footer-social-link:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(235, 94, 40, 0.3);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(235, 94, 40, 0.2) 20%, rgba(235, 94, 40, 0.4) 50%, rgba(235, 94, 40, 0.2) 80%, transparent 100%);
  margin: 2rem 0 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.legal-link {
  color: var(--black-olive);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--flame);
  transition: width 0.3s ease;
}

.legal-link:hover {
  color: var(--flame);
}

.legal-link:hover::after {
  width: 100%;
}

.footer-copy {
  color: var(--eerie-black);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}

.footer-location {
  color: var(--black-olive);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    padding: 2rem 1rem 1.5rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .footer-contact-info {
    align-items: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* ===== HEADINGS & SECTION TITLES ===== */
/* Clear, consistent heading scale and decorative accent for each section */
h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0 0 0.6rem 0;
  color: var(--black-olive);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.0rem);
  color: var(--flame);
  margin: 0 0 1rem 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Add a reusable section title class to provide accent line */
.section-title,
.section h2,
.section-heading {
  display: inline-block;
  position: relative;
  padding-bottom: 0.35rem;
}
.section-title::after,
.section h2::after,
.section-heading::after {
  content: '';
  display: block;
  height: 3px;
  width: 56px;
  background: linear-gradient(90deg, var(--flame), rgba(235,94,40,0.6));
  border-radius: 2px;
  margin: 8px auto 0 auto;
  opacity: 0.95;
}

h3 {
  font-size: 1.05rem;
  color: var(--black-olive);
  margin: 0 0 0.6rem 0;
  font-weight: 700;
}

h4 {
  font-size: 0.98rem;
  color: var(--black-olive);
  margin: 0 0 0.4rem 0;
  font-weight: 600;
}

/* Ensure section headings have sufficient spacing from the container */
.section-about h2,
.section-services h2,
.section-portfolio h2,
.section-testimonials h2 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  text-align: center;
}

@media (max-width: 900px) {
  .nav-main {
    padding: 0.8rem 1rem;
  }
  .about-wrap.redesigned-about {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .about-cards {
    justify-content: center;
  }
  .about-svg {
    margin-bottom: 1rem;
  }
  .services-grid,
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    background: var(--timberwolf);
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 0;
    z-index: 99;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .logo-area {
    gap: 0.6rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .about-svg {
    margin-bottom: 1rem;
  }
}

/* ===== NEW CONTACT SECTION STYLES ===== */
.section-contact { 
  padding: 0;
  background: var(--floral-white);
  overflow: hidden;
  position: relative;
}

/* Contact Hero Visual */
.contact-hero-visual {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--floral-white) 0%, rgba(255,252,242,0.8) 100%);
  overflow: hidden;
}

.contact-bg-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 4rem 2rem;
}

.contact-main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--black-olive);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.contact-subtitle {
  font-size: 1.3rem;
  color: var(--eerie-black);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Main Contact Content */
.contact-main-content {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Methods Grid */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.contact-method-card {
  background: var(--timberwolf);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(64,61,57,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.contact-method-card:hover::before {
  left: 100%;
}

.contact-method-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 60px rgba(235,94,40,0.15);
}

.contact-method-card.primary-contact {
  background: linear-gradient(135deg, var(--flame), #d4481e);
  color: var(--floral-white);
}

.contact-method-card.primary-contact h3,
.contact-method-card.primary-contact p {
  color: var(--floral-white);
}

.method-icon-area {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.contact-method-card h3 {
  font-size: 1.5rem;
  color: var(--black-olive);
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-method-card p {
  color: var(--eerie-black);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--floral-white);
  color: var(--black-olive);
  text-decoration: none;
  border-radius: 3rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-action-btn.primary {
  background: var(--floral-white);
  color: var(--flame);
}

.contact-action-btn:hover {
  background: var(--black-olive);
  color: var(--floral-white);
  transform: translateX(8px);
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.contact-action-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.95rem;
  color: var(--eerie-black);
  font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
  background: var(--timberwolf);
  border-radius: 2.5rem;
  padding: 4rem 3rem;
  margin-bottom: 5rem;
  box-shadow: 0 12px 48px rgba(64,61,57,0.08);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h3 {
  font-size: 2rem;
  color: var(--black-olive);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.form-header p {
  color: var(--eerie-black);
  font-size: 1.1rem;
}

.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.floating-input-group {
  position: relative;
}

.floating-input-group.full-width {
  grid-column: 1 / -1;
}

.floating-input-group input,
.floating-input-group textarea,
.floating-input-group select {
  width: 100%;
  padding: 1.2rem 0 0.8rem 0;
  font-family: var(--font-main);
  font-size: 1.1rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--eerie-black);
  color: var(--black-olive);
  transition: all 0.3s ease;
  outline: none;
}

.floating-input-group label {
  position: absolute;
  left: 0;
  top: 1.2rem;
  font-size: 1.1rem;
  color: var(--eerie-black);
  pointer-events: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.floating-input-group input:focus,
.floating-input-group textarea:focus,
.floating-input-group select:focus,
.floating-input-group input:valid,
.floating-input-group textarea:valid,
.floating-input-group select:valid {
  border-bottom-color: var(--flame);
}

.floating-input-group input:focus + label,
.floating-input-group textarea:focus + label,
.floating-input-group select:focus + label,
.floating-input-group input:valid + label,
.floating-input-group textarea:valid + label,
.floating-input-group select:valid + label {
  top: 0;
  font-size: 0.9rem;
  color: var(--flame);
  font-weight: 600;
}

.input-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--flame);
  transition: width 0.3s ease;
}

.floating-input-group input:focus ~ .input-underline,
.floating-input-group textarea:focus ~ .input-underline,
.floating-input-group select:focus ~ .input-underline {
  width: 100%;
}

.floating-input-group textarea {
  resize: vertical;
  min-height: 120px;
}

.floating-input-group select {
  cursor: pointer;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 2rem;
}

.form-note p {
  color: var(--eerie-black);
  font-size: 0.95rem;
  margin: 0;
  max-width: 300px;
}

.submit-modern-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  background: var(--flame);
  color: var(--floral-white);
  border: none;
  border-radius: 3rem;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-modern-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(235,94,40,0.3);
}

.btn-background {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--black-olive);
  transition: left 0.4s ease;
  z-index: 1;
}

.submit-modern-btn:hover .btn-background {
  left: 0;
}

.btn-text,
.btn-icon {
  position: relative;
  z-index: 2;
}

/* Additional Contact Info */
.contact-additional-info {
  margin-top: 4rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--floral-white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(64,61,57,0.06);
  border-left: 4px solid var(--flame);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(235,94,40,0.12);
}

.info-card h4 {
  color: var(--flame);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.info-card p {
  color: var(--eerie-black);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-methods-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .contact-form-section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 600px) {
  .contact-hero-content {
    padding: 3rem 1rem;
  }
  
  .contact-main-content {
    padding: 4rem 1rem;
  }
  
  .contact-method-card {
    padding: 2.5rem 2rem;
  }
  
  .contact-form-section {
    padding: 2.5rem 1.5rem;
  }
}

/* small adjustments for accessibility focus states */
a:focus, button:focus, input:focus, textarea:focus { outline: 3px solid rgba(235,94,40,0.12); outline-offset: 2px; }

/* Typography: richer content spacing */
h2 { letter-spacing: 0.01em; }
p { margin: 0 0 0.9rem 0; }
