/* Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Poppins:400,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

:root {
  --primary: #2a6f4e;
  --secondary: #3b82f6;
  --accent: #e2b04a;
  --earth: #e9e5da;
  --background: #f7fafc;
  --text: #222;
  --muted: #6b7280;
  --white: #fff;
  --shadow: 0 2px 8px rgba(0,0,0,0.07);
}

html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* Header */
.site-header {
  background: rgba(255,255,255,0.5);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: box-shadow 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: visible;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.13);
  z-index: 0;
  pointer-events: none;
  border-radius: 0;
}
.site-header .header-flex,
.site-header nav,
.site-header .logo,
.site-header .btn.donate-btn {
  position: relative;
  z-index: 1;
}
.site-header,
.site-header a,
.site-header .logo,
.site-header .btn.donate-btn {
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.logo-img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  display: block;
}

/* Fallback logo if image doesn't load */
.logo-img:not([src]), .logo-img[src=""], .logo-img[src*="error"] {
  display: none;
}

/* Pure CSS Logo */
.css-logo {
  width: 40px;
  height: 40px;
  background: url('logo/logo.png') center center/contain no-repeat;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 1px;
}
.logo-text span {
  color: var(--secondary);
}
.main-nav {
  position: relative;
}
.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--primary);
}
.btn.donate-btn {
  background: var(--accent);
  color: var(--white);
  padding: 0.6em 1.2em;
  border-radius: 24px;
  font-weight: 600;
  margin-left: 1.5rem;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: background 0.2s;
}
.btn.donate-btn:hover {
  background: var(--primary);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  margin-left: auto;
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-img-rounded {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
  box-shadow: 0 8px 32px rgba(42, 111, 78, 0.13);
  display: block;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 3rem 1rem;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.subheadline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
}
.btn {
  display: inline-block;
  padding: 0.6em 1.5em;
  border-radius: 24px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(42, 111, 78, 0.08), 0 1.5px 4px rgba(59, 130, 246, 0.07);
  transition: background 0.25s, color 0.25s, transform 0.18s, box-shadow 0.18s;
  outline: none;
  position: relative;
  overflow: hidden;
}
.btn.donate-btn {
  border-radius: 0px;
}
.btn:active, .btn:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
.btn:hover, .btn:focus {
  transform: scale(1.045);
  box-shadow: 0 8px 24px rgba(42, 111, 78, 0.13), 0 2px 8px rgba(59, 130, 246, 0.10);
}

.btn.primary {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  border: none;
}
.btn.primary:hover, .btn.primary:focus {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
}

.btn.secondary {
  background: linear-gradient(90deg, var(--white) 60%, var(--earth) 100%);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn.secondary:hover, .btn.secondary:focus {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border: 2px solid var(--secondary);
}

.btn.link {
  background: none;
  color: var(--secondary);
  padding: 0;
  font-weight: 700;
  text-decoration: underline;
  border: none;
  box-shadow: none;
}
.btn.link:hover, .btn.link:focus {
  color: var(--primary);
  text-decoration: underline;
  background: none;
  transform: none;
  box-shadow: none;
}

.btn.donate-btn {
  background: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 0.7em 1.7em;
  border-radius: 28px;
  font-weight: 800;
  margin-left: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(226, 176, 74, 0.13), 0 1.5px 4px rgba(59, 130, 246, 0.07);
  transition: background 0.25s, color 0.25s, transform 0.18s, box-shadow 0.18s;
}
.btn.donate-btn:hover, .btn.donate-btn:focus {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--white);
  transform: scale(1.07);
  box-shadow: 0 8px 24px rgba(226, 176, 74, 0.18), 0 2px 8px rgba(59, 130, 246, 0.13);
}

/* About Preview */
.about-preview {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(42, 111, 78, 0.30), 0 10px 30px rgba(59, 130, 246, 0.20), 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: -3rem;
  padding: 2.5rem 2rem 2rem 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}
.about-preview h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* What We Do */
.what-we-do {
  background: var(--earth);
  padding: 3rem 0;
}
.what-we-do h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
}
.cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(42, 111, 78, 0.25), 0 6px 20px rgba(59, 130, 246, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 320px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 20px 60px rgba(42, 111, 78, 0.35), 0 10px 30px rgba(59, 130, 246, 0.20), 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}
.card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.card h3 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

/* Gallery Preview */
.gallery-preview {
  margin: 3rem 0;
  text-align: center;
}
.gallery-preview h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.gallery-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Get Involved */
.get-involved {
  background: var(--white);
  padding: 3rem 0;
}
.get-involved h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
}
.involve-options {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.option {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem 1.2rem;
  min-width: 200px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  box-shadow: 0 10px 35px rgba(42, 111, 78, 0.20), 0 5px 15px rgba(59, 130, 246, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.option:hover {
  box-shadow: 0 15px 45px rgba(42, 111, 78, 0.30), 0 8px 25px rgba(59, 130, 246, 0.18), 0 3px 10px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.option-image {
  width: 100%;
  height: 120px;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--earth);
  transition: transform 0.3s ease;
  border: 2px solid rgba(42, 111, 78, 0.1);
}

.option-image svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.option:hover .option-image svg {
  transform: scale(1.05);
}

.option-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  transition: color 0.2s;
}

.option:hover .option-text {
  color: var(--secondary);
}

/* Quote Banner */
.quote-banner {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 1.3rem;
  font-style: italic;
  margin: 2rem 0;
}

/* About Quote Styling */
.about-quote blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--earth);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(42, 111, 78, 0.15);
  border-left: 6px solid var(--accent);
  font-style: normal;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .about-quote blockquote {
    font-size: 1.4rem;
    padding: 1rem;
    margin: 1.5rem 0;
  }
}

/* Donate Preview */
.donate-preview {
  background: var(--earth);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(42, 111, 78, 0.30), 0 10px 30px rgba(59, 130, 246, 0.20), 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.donate-preview h2 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.donate-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}
.donate-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(42, 111, 78, 0.20), 0 5px 15px rgba(59, 130, 246, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  min-width: 200px;
  max-width: 220px;
  flex: 1 1 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.donate-card:hover {
  box-shadow: 0 15px 45px rgba(42, 111, 78, 0.30), 0 8px 25px rgba(59, 130, 246, 0.18), 0 3px 10px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}
.donate-card h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  word-break: break-word;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 2rem 0 0.5rem 0;
  font-size: 1rem;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 1rem auto;
  padding: 0 1.2rem;
}
.footer-contact, .footer-links, .footer-location {
  min-width: 180px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-bottom {
  text-align: center;
  color: var(--earth);
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .header-flex, .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .main-nav ul {
    gap: 1rem;
  }
  .cards, .involve-options {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .option {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    min-height: 280px;
    padding: 1.7rem 0.8rem;
  }
  
  .option-image {
    height: 175px;
    margin-bottom: 0.8rem;
  }
  
  .option-text {
    font-size: 1rem;
  }
  
  .main-nav ul {
    display: none;
    flex-direction: column;
    background: var(--white);
    position: fixed;
    top: 64px;
    right: 0;
    left: auto;
    width: 220px;
    box-shadow: 0 8px 32px rgba(42,111,78,0.13);
    z-index: 2000;
    padding: 1rem 0.5rem 1rem 0.5rem;
    border-right: 4px solid var(--secondary);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  }
  .main-nav ul li {
    margin: 0 !important;
    padding: 0 !important;
  }
  .main-nav ul li a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    padding: 10px 0 10px 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    display: block;
    transition: background 0.18s, color 0.18s;
  }
  .main-nav ul li a:hover, .main-nav ul li a:focus {
    background: var(--earth);
    color: var(--secondary);
  }
  .main-nav.open ul {
    display: flex !important;
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Fallback for menu visibility */
  .main-nav.open ul li {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .nav-toggle {
    display: block;
    background: var(--primary);
    color: white;
    border-radius: 4px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
  }
  
  .main-nav.open .nav-toggle {
    background: var(--secondary);
  }
  .btn.donate-btn {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-img-rounded {
    border-radius: 18px;
  }
  .donate-cards {
    flex-direction: column;
    align-items: center;
  }
  .donate-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 0.5rem;
  }
  .about-preview, .donate-preview {
    padding: 1.2rem 0.5rem;
  }
  .card {
    padding: 1.2rem 0.7rem;
  }
  .footer-flex {
    gap: 0.5rem;
  }
} 

.about-multi ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.about-multi ul li {
  background: rgba(255,255,255,0.7);
  border-radius: 18px;
  padding: 1.1rem 1.5rem;
  margin: 0;
  box-shadow: 0 2px 8px rgba(42, 111, 78, 0.07);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
} 

.about-card {
  background: linear-gradient(135deg, #ffb300 0%, #2196f3 100%);
  border-radius: 22px;
  box-shadow: 0 15px 45px rgba(42, 111, 78, 0.25), 0 8px 25px rgba(59, 130, 246, 0.15), 0 3px 10px rgba(0, 0, 0, 0.12);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  color: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-card:hover {
  box-shadow: 0 25px 70px rgba(42, 111, 78, 0.35), 0 12px 35px rgba(59, 130, 246, 0.25), 0 5px 15px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

@media (max-width: 700px) {
  .about-card {
    padding: 1.2rem 0.7rem;
  }
} 

.hero h1, .hero .subheadline {
  text-shadow: 0 6px 32px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.32);
} 

.hero-title-block {
  background: rgba(0,0,0,0.45);
  border-radius: 18px;
  padding: 1rem 2rem;
  display: inline-block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  color: #fff;
  margin-bottom: 1.2rem;
  max-width: 100%;
  word-break: break-word;
} 

.orphan-care-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.orphan-care-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images-all/orphanage-bg.jpg') center center/cover no-repeat;
  opacity: 0.5;
  z-index: 0;
}
.orphan-care-bg > * {
  position: relative;
  z-index: 1;
} 

.orphan-icon {
  display: block;
  margin: 0 auto 0.7rem auto;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px rgba(59,130,246,0.13);
}
.orphan-icon svg {
  display: block;
  width: 40px;
  height: 40px;
} 

.vocational-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.vocational-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images-all/vocational-bg.jpg') center center/cover no-repeat;
  opacity: 0.5;
  z-index: 0;
}
.vocational-bg > * {
  position: relative;
  z-index: 1;
} 

.vocational-icon {
  display: block;
  margin: 0 auto 0.7rem auto;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px rgba(42,111,78,0.13);
}
.vocational-icon svg {
  display: block;
  width: 40px;
  height: 40px;
} 

.outreach-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.outreach-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images-all/outreach-bg.jpg') center center/cover no-repeat;
  opacity: 0.5;
  z-index: 0;
}
.outreach-bg > * {
  position: relative;
  z-index: 1;
} 

.outreach-icon {
  display: block;
  margin: 0 auto 0.7rem auto;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px rgba(59,130,246,0.13);
}
.outreach-icon svg {
  display: block;
  width: 40px;
  height: 40px;
} 

.what-we-do .card {
  background: rgba(255,255,255,0.8);
}
.orphan-care-bg::before,
.vocational-bg::before,
.outreach-bg::before {
  opacity: 0.8 !important;
} 

.what-we-do .card .card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.what-we-do .card .card-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  border-radius: 12px;
  z-index: -1;
} 

.what-we-do .card h3 {
  color: #fff;
} 

.what-we-do .card p {
  color: #fff;
} 

.donate-icons svg {
  width: 110px;
  height: 35px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(59,130,246,0.18);
  margin: 0 0.7rem;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  background: #fff;
  display: inline-block;
}
.donate-icons svg text {
  dominant-baseline: middle;
  text-anchor: middle;
  font-size: 1.1rem;
  font-weight: 700;
  fill: #111;
  color: #111;
}
.donate-icons svg:hover, .donate-icons svg:focus {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 12px 36px rgba(59,130,246,0.22);
} 

/* Transformation Cards */
.transformation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.transformation-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(42, 111, 78, 0.25), 0 6px 20px rgba(59, 130, 246, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  max-width: 188px;
  margin: 0 auto;
}

.transformation-card:hover {
  box-shadow: 0 20px 60px rgba(42, 111, 78, 0.35), 0 10px 30px rgba(59, 130, 246, 0.20), 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.transformation-card .card-image {
  width: 100%;
  height: 70px;
  background: var(--earth);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.transformation-card .card-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transformation-card .card-content {
  padding: 0.4rem;
}

.transformation-card h3 {
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
  text-align: center;
}

.transformation-card p {
  color: var(--text);
  font-size: 0.6rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  margin: 0;
}

/* Responsive adjustments for transformation cards */
@media (max-width: 700px) {
  .transformation-cards {
    grid-template-columns: repeat(auto-fit, minmax(134px, 1fr));
    gap: 0.67rem;
  }
  
  .transformation-card {
    max-width: 161px;
  }
  
  .transformation-card .card-image {
    height: 60px;
  }
  
  .transformation-card .card-content {
    padding: 0.3rem;
  }
  
  .transformation-card h3 {
    font-size: 0.67rem;
    font-weight: 900;
    margin-bottom: 0.15rem;
  }
  
  .transformation-card p {
    font-size: 0.57rem;
    font-weight: 400;
  }
} 

.contact-form {
  background: #181818;
  border-radius: 22px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  max-width: 480px;
  margin: 2rem auto;
  color: #fff;
}
.contact-form label {
  color: #fff;
  font-weight: 600;
  margin-top: 1rem;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: none;
  margin-top: 0.3rem;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  background: #232323;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--secondary);
  background: #222;
}
.contact-form button.btn.primary {
  width: 100%;
  border-radius: 12px;
  font-size: 1.1rem;
  margin-top: 0.5rem;
} 