/* ==========================================================================
   MINDFUL MENDING - Modern Luxury Psychology Practice Design System
   Brand: Aleena Koshy (Consultant Psychologist)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600&display=swap');

:root {
  --primary: #0a5c4e;
  --primary-hover: #07473c;
  --primary-light: #eaf5f2;
  --primary-surface: #f2f9f6;
  --primary-gradient: linear-gradient(135deg, #0a5c4e 0%, #127967 100%);
  
  --secondary: #d9685a;
  --secondary-hover: #c25345;
  --secondary-light: #fdf1ef;
  --secondary-gradient: linear-gradient(135deg, #d9685a 0%, #ea7d70 100%);
  
  --accent: #e5a43b;
  --accent-light: #fef8ee;
  
  --dark-bg: #06231d;
  --dark-surface: #0a332b;
  --dark-card: #0e4036;
  
  --text-main: #1b2824;
  --text-body: #475a54;
  --text-muted: #6b7f79;
  --text-light: #ffffff;
  
  --bg-page: #f9fbf9;
  --bg-card: #ffffff;
  --bg-alt: #f1f6f4;
  
  --border-color: #e3ece8;
  --border-light: #edf3f0;
  
  --shadow-xs: 0 2px 4px rgba(6, 35, 29, 0.04);
  --shadow-sm: 0 4px 12px rgba(6, 35, 29, 0.06);
  --shadow-md: 0 10px 28px rgba(6, 35, 29, 0.08);
  --shadow-lg: 0 20px 48px rgba(6, 35, 29, 0.12);
  --shadow-xl: 0 30px 70px rgba(6, 35, 29, 0.16);
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-body);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-link.active {
  color: #ffffff;
  background: var(--primary-gradient);
  box-shadow: 0 4px 12px rgba(10, 92, 78, 0.25);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.header-phone:hover {
  background: var(--primary);
  color: #ffffff;
}

.header-phone svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.btn-appointment {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary-gradient);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(217, 104, 90, 0.35);
  transition: all 0.3s ease;
}

.btn-appointment:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 104, 90, 0.45);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-main);
}

/* ==========================================================================
   Hero Banners & Page Headers
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 5rem 0 6rem;
  background: radial-gradient(circle at 80% 20%, #e3f2ed 0%, #f9fbf9 60%);
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(10, 92, 78, 0.15);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.hero-title span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-image-wrapper {
  position: relative;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid #ffffff;
  background: #ffffff;
}

.hero-img-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: floatUpDown 4s ease-in-out infinite;
}

.stat-left {
  bottom: 30px;
  left: -25px;
}

.stat-right {
  top: 40px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.stat-icon.rose {
  background: var(--secondary-light);
  color: var(--secondary);
}

.stat-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Page Banner */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5.5rem 0 6rem;
  color: #ffffff;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 35, 29, 0.86) 0%, rgba(10, 92, 78, 0.82) 100%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.page-hero-breadcrumb a {
  color: #ffffff;
}

.page-hero-breadcrumb a:hover {
  color: var(--secondary);
}

/* ==========================================================================
   Section Components
   ========================================================================== */
.section-py {
  padding: 5.5rem 0;
}

.section-py-sm {
  padding: 3.5rem 0;
}

.bg-light-alt {
  background-color: var(--bg-alt);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-pill {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  background: var(--secondary-light);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==========================================================================
   Cards & Grid Components
   ========================================================================== */
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 92, 78, 0.2);
}

.service-icon-box {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: var(--primary-gradient);
  color: #ffffff;
  transform: scale(1.08);
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.service-text {
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

.service-link i {
  transition: transform 0.2s ease;
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* Feature Pill / Why Choose Us */
.feature-box {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.8rem;
}

.feature-box-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.feature-box-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.feature-box-content p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* About Intro Card */
.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid #ffffff;
}

.about-image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 1.25rem 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.experience-badge h3 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
}

.experience-badge span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* ==========================================================================
   Consultation Page Components
   ========================================================================== */
.consult-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.consult-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.consult-card-img {
  height: 220px;
  overflow: hidden;
}

.consult-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.consult-card:hover .consult-card-img img {
  transform: scale(1.06);
}

.consult-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.consult-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.consult-card-body p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* FAQ Accordion */
.custom-accordion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.custom-accordion .accordion-button {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--primary-light);
  color: var(--primary);
}

.custom-accordion .accordion-body {
  padding: 1.5rem;
  background: #ffffff;
  color: var(--text-body);
  line-height: 1.8;
}

/* ==========================================================================
   Gallery Grid & Lightbox
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 280px;
  cursor: pointer;
}

.gallery-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 35, 29, 0.85) 0%, rgba(6, 35, 29, 0.1) 60%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.gallery-item-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-card:hover img {
  transform: scale(1.08);
}

.gallery-info h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.gallery-info span {
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================================================
   Contact & Interactive Forms
   ========================================================================== */
.contact-info-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.contact-info-card p, .contact-info-card a {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 0;
}

.form-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.custom-form-group {
  margin-bottom: 1.5rem;
}

.custom-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.custom-form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  outline: none;
}

.custom-form-control:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10, 92, 78, 0.12);
}

textarea.custom-form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit-form {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary-gradient);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(10, 92, 78, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(10, 92, 78, 0.4);
}

/* CTA Box */
.cta-banner {
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--dark-bg);
  color: #b8ccc6;
  padding: 5rem 0 2rem;
  font-size: 0.95rem;
}

.footer-widget-title {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--secondary);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #b8ccc6;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-surface);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  background: var(--secondary);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.88rem;
  color: #8da49e;
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */
@media (max-width: 991px) {
  .hero-title {
    font-size: clamp(2.2rem, 4.5vw, 2.8rem);
  }
  
  .hero-img-card img {
    height: 380px;
  }
  
  .stat-left, .stat-right {
    position: static;
    margin-top: 0.75rem;
    animation: none;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header-actions .header-phone {
    display: none;
  }

  .btn-appointment {
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
  }
  
  .mobile-menu-drawer {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(6, 35, 29, 0.15);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    z-index: 999;
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .mobile-menu-drawer.is-open {
    transform: translateY(0);
  }
  
  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .mobile-nav-links .nav-link {
    display: block;
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
  }

  .section-py {
    padding: 4rem 0;
  }

  .about-image-frame img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 0 4.5rem;
  }

  .page-hero-title {
    font-size: 2.3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
  }

  .cta-banner h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .brand-logo img {
    height: 40px;
  }

  .btn-appointment span {
    font-size: 0.78rem;
  }

  .btn-appointment {
    padding: 0.5rem 0.9rem;
  }

  .hero-title {
    font-size: 1.95rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-img-card img {
    height: 260px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-cta-group a {
    text-align: center;
    justify-content: center;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-py {
    padding: 3.25rem 0;
  }

  .form-card {
    padding: 1.5rem 1.25rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .cta-banner {
    padding: 2.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-card {
    height: 240px;
  }

  .about-image-frame img {
    height: 300px;
  }

  .experience-badge {
    padding: 0.8rem 1.2rem;
    bottom: 15px;
    right: 15px;
  }

  .experience-badge h3 {
    font-size: 1.6rem;
  }
}
