/* ===================================================
   MY HOME PH — About Page Stylesheet
   Fonts: Montserrat (headings), Inter Light (body), Open Sans (titles)
   =================================================== */

/* ---- CSS Variables ---- */
:root {
  --light-yellow: #FEFEFD;
  --dark-blue:    #101574;
  --deep-blue:    #2F3077;
  --lavender-gray:#C6C8E5;
  --pale-blue:    #EBECFF;
  --white:        #ffffff;
  --shadow:       0 4px 20px rgba(16,21,116,0.10);
  --shadow-md:    0 6px 28px rgba(16,21,116,0.14);
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    18px;
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  background: var(--light-yellow);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; }

/* ---- Utility ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dark-blue);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--deep-blue);
  text-align: center;
  margin-bottom: 40px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--light-yellow);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 36px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark-blue);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  color: var(--dark-blue);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--dark-blue);
  transition: width 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--dark-blue); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.btn-nav {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  background: var(--dark-blue);
  color: var(--light-yellow);
  padding: 10px 24px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-nav:hover {
  background: var(--deep-blue);
  box-shadow: 0 4px 14px rgba(16,21,116,0.25);
}

/* ---- Hamburger Menu ---- */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* =============================================
   BUTTONS
   ============================================= */
.hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GRADIENT OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(16,21,116,0.92) 35%,
    rgba(16,21,116,0.35) 100%
  );
  z-index: 1;
}

/* TEXT CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px;
  display: flex;
  align-items: center;
  min-height: 400px;
}

.hero-text {
  max-width: 500px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(16,21,116,0.90) 40%, rgba(16,21,116,0.30) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  align-items: center;
  gap: 40px;
}

.hero-text {
  padding: 60px 0;
    position: relative;
  z-index: 3;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--light-yellow);
  margin-bottom: 20px;
}

.hero-text p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(254,254,253,0.88);
  margin-bottom: 14px;
  max-width: 460px;
}

.hero-image {
  height: 100%;
  min-height: 400px;
  position: relative;
  z-index: 0;

}

.hero-img-ph {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* =============================================
        icon
   ============================================= */
.icon-white {
  height: 40px;
  filter: brightness(0) invert(1);
}
.icon-db {
  height: 40px;
  filter: brightness(0) saturate(100%) invert(10%) sepia(50%) saturate(5000%) hue-rotate(220deg);
  
}
.cta-icon-img {
  height: 80px;
  filter: brightness(0)  invert(1);
}
/* =============================================
   MISSION / VISION / VALUES
   ============================================= */
.mvv {
  padding: 80px 0;
  background: var(--light-yellow);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mvv-card {
  background: var(--pale-blue);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mvv-icon {
  margin-bottom: 20px;

}

.mvv-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.mvv-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .9rem;
  color: #444;
  line-height: 1.7;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .88rem;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px solid rgba(16,21,116,0.08);
  line-height: 1.5;
}

.values-list li:last-child { border-bottom: none; }

.val-label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: var(--dark-blue);
  font-size: .88rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 80px 0;
  background: var(--light-yellow);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--pale-blue);
  border-radius: var(--radius-md);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: var(--dark-blue);
  line-height: 0.8;
  margin-bottom: 12px;
  opacity: 0.85;
}

.testi-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .92rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--dark-blue);
}

.testi-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--dark-blue);
}

.testi-role {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .8rem;
  color: #777;
}

/* =============================================
   STORY / TIMELINE
   ============================================= */
.story {
  padding: 80px 0;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 56px;
  align-items: start;
}

.story-text h2 { margin-bottom: 20px; }

.story-text p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .92rem;
  color: #444;
  margin-bottom: 14px;
  line-height: 1.75;
}

/* Timeline */
.story-timeline {
  position: relative;
}

.timeline-track {
  position: absolute;
  top: 36px;
  left: 36px;
  right: 36px;
  height: 2px;
  background: rgba(16,21,116,0.25);
  z-index: 0;
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tl-icon {
  width: 72px;
  height: 72px;
  border-radius: 100px;
  background: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(16,21,116,0.3);
  flex-shrink: 0;
}

.tl-year {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.tl-label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  color: var(--deep-blue);
  margin-bottom: 8px;
}

.tl-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .78rem;
  color: #555;
  line-height: 1.55;
}

/* =============================================
   OWNER
   ============================================= */
.owner {
  padding-top: 10px;
  padding-bottom: 40px;
  background: var(--light-yellow);
}

.owner-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  padding:32px;
  align-items: start;
  background-color: var(--pale-blue);
  border-radius: 8px;
}

.owner-photo {
  width: 100%;
}
.owner-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.owner-img-ph {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 7/9;
}

.owner-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.owner-name { margin-bottom: 4px; }

.owner-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  color: var(--deep-blue);
  margin-bottom: 20px;
  font-style: italic;
}

.owner-info p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .92rem;
  color: #444;
  margin-bottom: 14px;
  line-height: 1.75;
}

.owner-quote {
  position: relative;
  background: var(--pale-blue);
  border: 1.5px solid var(--lavender-gray);
  border-radius: var(--radius-md);
  padding: 28px 36px 28px 36px;
  margin-top: 24px;
}
.name {
  font-weight: bolder;
  color: var(--deep-blue);
}

.oq-open, .oq-close {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--dark-blue);
  line-height: 1;
  position: absolute;
  opacity: 0.35;
}
.oq-open { top: 8px; left: 12px; }
.oq-close { bottom: -4px; right: 16px; }

.owner-quote p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: .95rem;
  color: var(--dark-blue);
  line-height: 1.7;
  margin-bottom: 8px;
}

.oq-sign {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--deep-blue);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  padding: 25px 0;
  height: 150px;

  background:
    linear-gradient(135deg, rgba(16,21,116,0.9), rgba(85,88,192,0.6)),
    url("../img/about-hero-image.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.cta-icon { flex-shrink: 0; }

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--light-yellow);
  margin-bottom: 6px;
}

.cta-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .92rem;
  color: rgba(254,254,253,0.82);
}

.btn-cta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark-blue);
  background: var(--light-yellow);
  padding: 16px 36px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn-cta:hover {
  background: var(--pale-blue);
  box-shadow: 0 6px 28px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--deep-blue);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
    filter: brightness(0) invert(1);

  
}

.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--light-yellow);
  letter-spacing: 1px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .88rem;
  color: var(--lavender-gray);
  line-height: 1.65;
  max-width: 220px;
}

.footer-col h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--light-yellow);
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .88rem;
  color: var(--lavender-gray);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-col ul li a:hover { color: var(--light-yellow); }

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(198,200,229,0.2);
  padding: 20px 32px;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .82rem;
  color: rgba(198,200,229,0.6);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1000px) {
  .mvv-grid,
  .testi-grid { grid-template-columns: 1fr 1fr; }

  .story-inner { grid-template-columns: 1fr; }
  .timeline-items { grid-template-columns: repeat(2, 1fr); }
  .timeline-track { display: none; }

  .owner-inner { grid-template-columns: 1fr; }
  .owner-photo { max-width: 280px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-text h1 { font-size: 2.2rem; }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light-yellow);
    flex-direction: column;
    gap: 0;
    padding: 0px 27px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    max-height: 300px;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(254,254,253,0.1);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
    header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--light-yellow); /* optional but recommended */
}
  .mvv-grid,
  .testi-grid { grid-template-columns: 1fr; }

  .section-title { font-size: 1.5rem; }

  .cta-inner { flex-direction: column; align-items: flex-start; }

  .story-inner { grid-template-columns: 1fr; }

  .timeline-items {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .timeline-item {
    flex: 0 0 220px; /* card width on phone */
    scroll-snap-align: start;
  }

  /* Optional: hide scrollbar for cleaner look */
  .timeline-items::-webkit-scrollbar {
    display: none;
  }
   .story-timeline {
    overflow-x: auto;   /* only this section scrolls */
    padding-bottom: 10px;
  }

  .timeline-items {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    width: max-content; /* forces horizontal layout */
  }

  .timeline-item {
    flex: 0 0 220px; /* keeps each item like a card */
  }

  /* optional: hide ugly scrollbar */
  .story-timeline::-webkit-scrollbar {
    display: none;
  }
  .testi-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testi-card {
  flex: 0 0 280px; /* card width on phone */
  scroll-snap-align: start;
}

/* optional cleaner scroll */
.testi-grid::-webkit-scrollbar {
  display: none;
}
}

@media (max-width: 500px) {
  .container { padding: 0 16px; }

  .nav-inner { padding: 0 16px; }

  .hero-text { padding: 40px 0; }
  .hero-text h1 { font-size: 1.8rem; }

  .mvv, .testimonials, .story, .owner, .cta-banner { padding: 48px 0; }

  .timeline-items { grid-template-columns: 1fr 1fr; gap: 8px; }

  .footer-grid { grid-template-columns: 1fr; }

  .owner-inner { gap: 32px; }
  .owner-photo { max-width: 100%; }
}
.contact-hero {
  min-height: 220px;
}
 
.contact-hero-content {
  grid-template-columns: 1fr !important;
  min-height: 220px !important;
  padding: 60px 32px !important;
}
 
.contact-hero .hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}
 
.contact-hero .hero-text p {
  max-width: 540px;
}
 
/* =============================================
   CONTACT BODY SECTION
   ============================================= */
.contact-body {
  padding: 64px 0 72px;
  background: var(--light-yellow);
}
 
/* Two-column grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
 
/* Shared card style */
.contact-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
 
.contact-card-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-bottom: 6px;
}
 
.contact-card-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .85rem;
  color: #888;
  margin-bottom: 28px;
}
 
/* ---- FORM FIELDS ---- */
.c-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.c-field {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--lavender-gray);
  border-radius: var(--radius-sm);
  background: var(--pale-blue);
  transition: border-color 0.2s, box-shadow 0.2s;
}
 
.c-field:focus-within {
  border-color: var(--dark-blue);
  box-shadow: 0 0 0 3px rgba(16,21,116,0.08);
}
 
.c-field-icon {
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--lavender-gray);
  flex-shrink: 0;
}
 
.c-field-icon-top {
  align-self: flex-start;
  padding-top: 14px;
}
 
.c-field input,
.c-field textarea {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 14px 14px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .92rem;
  color: #333;
  outline: none;
  width: 100%;
}
 
.c-field textarea {
  resize: vertical;
  min-height: 110px;
  padding-top: 14px;
}
 
.c-field input::placeholder,
.c-field textarea::placeholder {
  color: #aaa;
}
 
.c-textarea-field {
  align-items: flex-start;
}
 
/* Submit button */
.c-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: var(--dark-blue);
  color: var(--light-yellow);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  margin-top: 4px;
}
 
.c-submit:hover {
  background: var(--deep-blue);
  box-shadow: 0 4px 18px rgba(16,21,116,0.28);
  transform: translateY(-2px);
}
 
.c-submit:active {
  transform: translateY(0);
}
 
/* Success message */
.c-success {
  display: none;
  background: #e6f4ea;
  color: #2e7d32;
  border: 1.5px solid #a5d6a7;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  text-align: center;
}
 
/* ---- CONTACT INFO CARD ---- */
.info-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
 
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
 
.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pale-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-blue);
  flex-shrink: 0;
  border: 1.5px solid var(--lavender-gray);
}
 
.info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}
 
.info-label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: var(--dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
 
.info-value {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .9rem;
  color: #555;
  line-height: 1.5;
}
 
/* ---- MAP ---- */
.map-wrap {
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--lavender-gray);
}
 
.map-wrap iframe {
  display: block;
}
 
/* ---- SOCIAL ROW ---- */
.social-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
 
.social-label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: var(--dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
 
.social-icons {
  display: flex;
  gap: 10px;
}
 
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-blue);
  color: var(--light-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
 
.social-btn:hover {
  background: var(--deep-blue);
  transform: translateY(-3px);
}
 
/* =============================================
   RESPONSIVE — CONTACT PAGE
   ============================================= */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
 
@media (max-width: 600px) {
  .contact-hero .hero-text h1 { font-size: 2rem; }
 
  .contact-card { padding: 28px 20px; }
 
  .social-row { flex-direction: column; align-items: flex-start; }
 
  .contact-body { padding: 40px 0 56px; }
}
 
@media (max-width: 500px) {
  .contact-hero-content {
    padding: 40px 16px !important;
  }
}