/* 
 * Pulse Care Hospital Main CSS 
 * Author: Antigravity IDE
 */

:root {
  --primary: #20C5A2;
  --dark-green: #0E5A50;
  --secondary: #3DD3C1;
  --bg-light: #F6FAF9;
  --bg-card: #FFFFFF;
  --text-primary: #18302B;
  --text-secondary: #6B7B78;
  --gradient: linear-gradient(135deg, #20C5A2 0%, #159D88 100%);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(14, 90, 80, 0.05);
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Bulletproof Preloader Killer */
.e-page-transition,
.elementor-page-transition,
.elementor-editor-loader,
#preloader,
.preloader,
.loader-wrapper,
.wp-site-blocks > .elementor-editor-loader {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: -9999 !important;
  pointer-events: none !important;
}
body.e-page-transition--active,
body.elementor-page-transitions--active {
  opacity: 1 !important;
  visibility: visible !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(24px, 3vw, 32px); }

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}
a:hover {
  color: var(--dark-green);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--text-secondary); }
.text-dark { color: var(--text-primary); }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

/* Buttons */
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pc-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.pc-btn:hover::before {
  transform: scaleX(1);
}

.pc-btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(32, 197, 162, 0.3);
}

.pc-btn-primary:hover {
  color: white;
  box-shadow: 0 6px 20px rgba(32, 197, 162, 0.4);
  transform: translateY(-2px);
}

.pc-btn-secondary {
  background: white;
  color: var(--dark-green);
  box-shadow: var(--shadow-sm);
}
.pc-btn-secondary:hover {
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Global Header & Topbar */
.pc-topbar {
  background: #22C6A5;
  color: #ffffff;
  padding: 8px 0;
  font-size: 13px;
  font-family: var(--font-body);
}
.pc-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pc-topbar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}
.pc-topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pc-topbar-item i {
  width: 14px;
  height: 14px;
}
.pc-topbar-item a {
  color: #ffffff;
}
.pc-topbar-item a:hover {
  text-decoration: underline;
  color: #ffffff;
}
.pc-topbar-right {
  display: flex;
  align-items: center;
}
.pc-social-icon {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Main Header */
.pc-header-main {
  background: #ffffff;
  width: 100%;
  padding: 15px 0;
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pc-header-main.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.pc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-logo-link {
  display: flex;
  align-items: center;
}
.pc-logo-img {
  height: 50px;
  width: auto;
}

/* Make an Appointment Button */
.pc-btn-appointment {
  background: linear-gradient(135deg, #20C5A2 0%, #14B493 100%);
  color: white !important;
  box-shadow: 0 4px 15px rgba(32, 197, 162, 0.3);
}
.pc-btn-appointment:hover {
  box-shadow: 0 6px 20px rgba(32, 197, 162, 0.4);
  transform: translateY(-2px);
}

.pc-nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.pc-nav-menu li {
  position: relative;
}
.pc-nav-menu li a {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  display: block;
}
.pc-nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.pc-nav-menu li a:hover::after,
.pc-nav-menu li.current-menu-item > a::after,
.pc-nav-menu li.current-menu-ancestor > a::after {
  width: 100%;
}

/* Dropdown Support */
.pc-nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid rgba(0,0,0,0.05);
}
.pc-nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pc-nav-menu .sub-menu li {
  margin: 0;
  padding: 0;
}
.pc-nav-menu .sub-menu li a {
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.pc-nav-menu .sub-menu li a::after {
  display: none;
}
.pc-nav-menu .sub-menu li a:hover,
.pc-nav-menu .sub-menu li.current-menu-item > a {
  color: var(--primary);
  background: rgba(32, 197, 162, 0.05);
}
/* Multi-level Support */
.pc-nav-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}
.pc-nav-menu li.menu-item-has-children > a {
  padding-right: 18px;
}
.pc-nav-menu li.menu-item-has-children > a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: var(--text-secondary) transparent transparent transparent;
  transition: transform 0.3s ease;
}
.pc-nav-menu li.menu-item-has-children:hover > a::before {
  transform: translateY(-50%) rotate(180deg);
  border-top-color: var(--primary);
}
.pc-nav-menu .sub-menu li.menu-item-has-children > a::before {
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent var(--text-secondary);
  right: 16px;
}
.pc-nav-menu .sub-menu li.menu-item-has-children:hover > a::before {
  transform: translateY(-50%);
  border-left-color: var(--primary);
}

.pc-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

/* Global Footer */
.pc-footer {
  background-color: var(--dark-green);
  color: white;
  padding: 80px 0 20px;
  margin-top: auto;
}

.pc-footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.pc-footer-col h4 {
  color: white;
  margin-bottom: 24px;
  font-size: 20px;
  position: relative;
  padding-bottom: 12px;
}
.pc-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.pc-footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.pc-footer-links li {
  margin-bottom: 12px;
}
.pc-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pc-footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}
.pc-footer-links a i {
  width: 16px;
  height: 16px;
}

/* Footer Services List Anchor Links */
.pc-footer-services-list a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.pc-footer-services-list a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #20C5A2;
  transition: width 0.3s ease;
}
.pc-footer-services-list a:hover {
  color: #20C5A2;
  transform: none; /* Override default translateX */
}
.pc-footer-services-list a:hover::after {
  width: 100%;
}

.pc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Section Common */
.section-padding {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-inline: auto;
}
.section-header .subtitle {
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}
.section-header h2 {
  margin-bottom: 20px;
}

/* Cards & Glassmorphism */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px 0 rgba(14, 90, 80, 0.08);
}

.service-card, .feature-card, .doctor-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0,0,0,0.02);
  height: 100%;
}
.service-card:hover, .feature-card:hover, .doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(32, 197, 162, 0.2);
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(32, 197, 162, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.service-card:hover .icon-box,
.feature-card:hover .icon-box {
  background: var(--primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
}
.icon-box i { width: 32px; height: 32px; }

/* Contact Form Classes */
.pc-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pc-contact-form .form-group input,
.pc-contact-form .form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  background: var(--bg-light);
}
.pc-contact-form .form-group input:focus,
.pc-contact-form .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(32, 197, 162, 0.1);
  background: white;
}

/* Page Banner */
.page-banner {
  padding: 160px 0 80px;
  background: var(--dark-green);
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: var(--gradient);
  opacity: 0.1;
}
.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}
.page-banner-content h1 {
  color: white;
  margin-bottom: 16px;
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* Home Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background-image: url('http://www.pulsecarehospital.com/wp-content/uploads/2026/06/pulse-care.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 90, 80, 0.9) 0%, rgba(14, 90, 80, 0.6) 50%, rgba(32, 197, 162, 0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}
.hero-content h1 {
  color: white;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
}
.hero-cards-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 24px;
  color: white;
  transition: all 0.4s ease;
}
.hero-glass-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.hero-glass-card .icon {
  background: rgba(255,255,255,0.2);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hero-glass-card.highlight {
  background: var(--gradient);
  border: none;
}

/* About Preview */
.about-preview {
  display: flex;
  align-items: center;
  gap: 60px;
}
.about-preview-content {
  flex: 1;
}
.about-preview-stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.stat-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.stat-card .number {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 10px;
}
.stat-card .label {
  color: var(--text-primary);
  font-weight: 500;
}

/* Departments */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.dept-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.dept-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(32, 197, 162, 0.1);
  transform: translateY(-5px);
}
.dept-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s;
}
.dept-card:hover .icon {
  background: var(--primary);
  color: white;
}
.dept-card h4 {
  font-size: 16px;
  margin: 0;
}

/* Doctors */
.doctor-card {
  text-align: center;
  padding: 0;
  overflow: hidden;
}
.doctor-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.doctor-card:hover .doctor-img img {
  transform: scale(1.05);
}
.doctor-info {
  padding: 24px;
}
.doctor-info h4 {
  margin-bottom: 8px;
  font-size: 18px;
}
.doctor-spec {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 14px;
}
.doctor-meta {
  font-size: 13px;
  margin-bottom: 20px;
}
.doctor-meta span {
  display: block;
  margin-bottom: 4px;
}

/* Gallery Masonry */
.gallery-grid {
  columns: 3 300px;
  column-gap: 24px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  transition: transform 0.5s;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 90, 80, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-preview {
    flex-direction: column;
  }
  .grid-4, .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pc-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    padding: 100px 30px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
  }
  .pc-nav-menu.active {
    right: 0;
    overflow-y: auto;
  }
  .pc-mobile-toggle {
    display: block;
  }
  .pc-nav-menu .sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 10px;
    margin-left: 20px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .pc-nav-menu li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
  .hero-cards-wrapper {
    grid-template-columns: 1fr;
  }
  .grid-2, .grid-4, .grid-3 {
    grid-template-columns: 1fr;
  }
  .about-preview-stats {
    grid-template-columns: 1fr;
  }
  .section-padding {
    padding: 60px 0;
  }
}
/* ==========================================================================
   Contact Form 7 Custom Styling (Premium Hospital UI)
   ========================================================================== */

/* Form Container Wrapper */
.contact-form-container,
.wpcf7 {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Ensure Paragraph tags inside CF7 don't add unwanted margin */
.wpcf7 p {
  margin-bottom: 20px;
}

/* Labels */
.wpcf7 label {
  color: #18302B;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  display: block;
  font-family: var(--font-body);
}

/* Input Fields (Text, Email, Tel, Textarea) */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #F8FBFA;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  color: var(--text-primary);
  box-sizing: border-box;
}

/* Input Specifics */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"] {
  height: 58px;
}

/* Textarea Specifics */
.wpcf7 textarea {
  height: 180px;
  resize: vertical;
  padding: 18px; /* Padding for textarea to match sides */
}

/* Placeholder Styling */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #94A3B8;
  opacity: 1;
}

/* Focus State */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #20C5A2;
  box-shadow: 0 0 0 4px rgba(32,197,162,0.15);
  outline: none;
  background: #FFFFFF;
}

/* Submit Button */
.wpcf7 .wpcf7-submit {
  background: linear-gradient(135deg, #20C5A2, #159D88);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 600;
  height: 56px;
  padding: 0 35px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Submit Button Hover */
.wpcf7 .wpcf7-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(32,197,162,0.25);
}

/* Validation Messages */
.wpcf7 .wpcf7-response-output {
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

/* Success Message */
.wpcf7 form.sent .wpcf7-response-output {
  background: rgba(32,197,162,0.1);
  border: 1px solid #20C5A2;
  color: #0E5A50;
}

/* Error Message */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #EF4444;
  color: #991B1B;
}

.wpcf7-not-valid-tip {
  color: #EF4444;
  font-size: 13px;
  margin-top: 4px;
  font-weight: 500;
}

/* Specific Hero adjustments for responsiveness */
@media (max-width: 1024px) {
  .hero-cards-wrapper {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 768px) {
  .hero-cards-wrapper {
    grid-template-columns: 1fr !important;
    transform: translateY(0) !important;
    margin-top: 40px !important;
  }
  .hero-content {
    padding-top: 60px !important;
  }
}
