/* ======================================== */
/* Variables                                */
/* ======================================== */
:root {
  /* Colors */
  --primary-color: #ff5000;
  --primary-color-darker: #e64600; /* Added for hover */
  --primary-color-lighter: #ff6600; /* Added for hover */
  --primary-gradient: linear-gradient(135deg, #fff5f0 0%, #ffece3 100%);
  --secondary-color: #6c757d;
  --secondary-color-darker: #5a6268; /* Added for hover */
  --dark-color: #2b2d42;
  --light-color: #f8f9fa; /* Use for light backgrounds */
  --white-color: #fff;      /* Use specifically for white */
  --text-color-base: #333;
  --text-color-light: #bbb; /* Primarily for footer */
  --text-color-muted: #999;
  --text-color-medium: #555; /* Replaces #444, #555 */
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107; /* For ratings */
  --border-color: #e1e1e1;
  --border-color-light: #eee;
  --footer-bg: #1a1a1a;
  --footer-border-color: rgba(255, 255, 255, .1);
  --subtle-bg: #f5f7ff; /* Replaces #f5f7ff */

  /* Effects & Layout */
  --box-shadow: 0 5px 15px rgba(0, 0, 0, .08); /* Slightly softer default shadow */
  --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, .1); /* Larger shadow */
  --box-shadow-hover: 0 8px 20px rgba(0, 0, 0, .1); /* Common hover shadow */
  --transition: all .3s ease;
  --border-radius-sm: 5px;
  --border-radius-md: 10px;
  --border-radius-lg: 30px; /* For pills */
  --container-width: 1200px;
  --section-padding: 80px 0;
  --card-padding: 30px;
  --card-padding-lg: 40px;

  /* Typography */
  --font-family-base: 'Montserrat', sans-serif;
  --line-height-base: 1.6;
  --line-height-content: 1.7; /* For longer text blocks */
}

/* ======================================== */
/* Reset & Base Styles                      */
/* ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-base);
  line-height: var(--line-height-base);
  color: var(--text-color-base);
  background-color: var(--white-color);
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--dark-color); /* Default link color */
  transition: var(--transition);
}
a:hover {
  color: var(--primary-color); /* Default link hover */
}

ul {
  list-style: none;
  padding-left: 0; /* Ensure no default padding */
}

img {
  max-width: 100%;
  height: auto;
  display: block; /* Remove bottom space */
  vertical-align: middle; /* Align better if inline */
}

/* ======================================== */
/* Layout & Utilities                       */
/* ======================================== */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: var(--section-padding);
}

/* Common Section Header Styling */
.section-header,
.booking-intro, /* Added */
.contact-cta /* Added */ {
  text-align: center;
  padding-bottom: 50px; /* Default bottom padding */
}

.section-header {
  padding-top: 25px;
}

.booking-intro {
  margin-bottom: 40px; /* Overrides default padding-bottom */
  padding-bottom: 0;
}

.contact-cta {
  padding: var(--card-padding-lg);
  background: var(--primary-gradient);
  border-radius: var(--border-radius-md);
  margin-top: 60px;
  padding-bottom: var(--card-padding-lg); /* Ensure consistent padding */
}

/* Common Titles within Sections/Headers */
.section-header h2,
.booking-intro h1,
.contact-cta h3,
.video-content h2, /* Added */
.service-content h2, /* Added */
.about-content h2, /* Added */
.mission-card h2, /* Added */
.values-card h2, /* Added */
.contact-info h2, /* Added */
.contact-form h2 /* Added */
{
  font-size: 2.5rem; /* Standardize somewhat, can be overridden */
  margin-bottom: 20px; /* Increased consistency */
  color: var(--dark-color);
  font-weight: 700;
}

/* Specific Title Overrides */
.page-title-section h1 { font-size: 2.8rem; margin-bottom: 15px; color: var(--dark-color); font-weight: 700; }
.hero-content h1 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; color: var(--dark-color); font-weight: 700; }
.video-content h2 { color: var(--primary-color); } /* Keep brand color */
.service-content h2 { font-size: 2.2rem; }
.mission-card h2, .values-card h2 { font-size: 2rem; }
.contact-info h2 { font-size: 2rem; color: var(--white-color); }
.contact-form h2 { font-size: 2rem; margin-bottom: 30px; }
.contact-cta h3 { font-size: 1.8rem; margin-bottom: 15px; }
.terms-header h1, .privacy-header h1 { font-size: 2.5rem; margin-bottom: 10px; color: var(--dark-color); }
.terms-content h2, .privacy-content h2 { font-size: 1.8rem; margin: 40px 0 15px; color: var(--primary-color); border-bottom: 1px solid var(--border-color-light); padding-bottom: 8px; }
.terms-content h3, .privacy-content h3 { font-size: 1.4rem; margin: 25px 0 15px; color: var(--dark-color); font-weight: 600; }

/* Common Paragraphs/Descriptions */
.section-header p,
.booking-intro p,
.contact-cta p,
.hero-content p, /* Added */
.video-content p, /* Added */
.service-content p, /* Added */
.about-content p, /* Added */
.testimonial-content p, /* Added */
.feature-item p, /* Added */
.value-content p, /* Added */
.benefit-card p, /* Added */
.pricing-features li /* Added */
 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  max-width: 700px; /* Common constraint */
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-content); /* Use slightly larger line height for content */
}

/* Specific Paragraph Overrides */
.section-header p, .booking-intro p, .contact-cta p { margin-bottom: 30px; } /* Adjust spacing */
.hero-content p { margin-bottom: 30px; font-size: 1.2rem; text-align: left; max-width: none; } /* Keep hero specific */
.video-content p { margin-bottom: 25px; color: var(--text-color-medium); text-align: left; max-width: none; line-height: var(--line-height-base); }
.service-content p { margin-bottom: 20px; text-align: left; max-width: none; }
.about-content p { margin-bottom: 20px; text-align: left; max-width: none; }
.testimonial-content p { font-style: italic; margin-bottom: 20px; }
.contact-cta p { margin-bottom: 25px; opacity: .9; color: var(--white-color); }
.feature-item p { font-size: .95rem; margin-bottom: 0; text-align: left; max-width: none; }
.value-content p { font-size: .95rem; margin-bottom: 0; text-align: left; max-width: none; }
.benefit-card p { font-size: .95rem; text-align: center; max-width: none; }
.pricing-features li { margin-bottom: 10px; display: flex; align-items: center; text-align: left; max-width: none; }

/* Utility Classes */
.required {
  color: var(--danger-color);
  font-weight: bold;
}

.page-title { /* Appears unused - keep or remove? Assuming it might be used dynamically */
  margin-top: 50px;
}

/* Common Grid Layouts */
.services-grid,
.testimonials-slider, /* Note: This implies a slider, but uses grid. Rename if not a slider. */
.pricing-cards,
.booking-benefits,
.footer-grid {
  display: grid;
  gap: 30px; /* Standard gap */
  margin-top: 50px; /* Common spacing */
}
.services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; } /* Override */
.testimonials-slider { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-bottom: 40px; } /* Override */
.pricing-cards { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } /* Override */
.booking-benefits { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin-bottom: 50px; } /* Override */
.footer-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin-bottom: 60px; margin-top: 0; gap: 40px;} /* Override */

.hero .container,
.video-grid,
.service-detail .container,
.about-container,
.mission-values-container,
.contact-container {
    display: grid;
    gap: 50px; /* Standard gap */
    align-items: center;
}
.hero .container { grid-template-columns: 1fr 1fr; }
.video-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
.service-detail .container { grid-template-columns: 1fr 1fr; }
.about-container { grid-template-columns: 1fr 1fr; }
.mission-values-container { grid-template-columns: repeat(2, 1fr); }
.contact-container { grid-template-columns: 1fr 1fr; }

/* Zyrova Technologies animation in Hero section  linear-gradient(90deg, #ff6ec4, #7873f5, #4ade80); linear-gradient(90deg, #FF5000, #FFA733, #FF5000); */
.animated-text {
  background: linear-gradient(135deg, #FF5000, #FFA733, #FF5000);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* ======================================== */
/* Buttons                                  */
/* ======================================== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  line-height: normal; /* Ensure consistent height */
}

/* Common Hover/Focus State */
.btn:hover:not(:disabled):not([disabled]) {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow on hover */
}
.btn:focus {
  outline: none; /* Remove default */
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 255, 80, 0), .3); /* Needs --primary-rgb variable or fallback */
}
/* Add --primary-rgb to :root if using the focus shadow */
/* :root { --primary-rgb: 255, 80, 0; ... } */

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.btn-primary:hover:not(:disabled):not([disabled]) {
  background-color: var(--primary-color-lighter);
  color: var(--white-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.btn-secondary:hover:not(:disabled):not([disabled]) {
  background-color: var(--secondary-color-darker);
  color: var(--white-color);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}
.btn-outline:hover:not(:disabled):not([disabled]) {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn-light {
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--border-color); /* Add subtle border */
}
.btn-light:hover:not(:disabled):not([disabled]) {
  background-color: var(--light-color);
}

/* Disabled State */
.btn:disabled,
.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none; /* Important */
}
.btn-primary:disabled,
.btn-primary[disabled] {
  background-color: var(--danger-color); /* Or use a neutral disabled color e.g., var(--secondary-color) */
  border-color: var(--danger-color); /* Match background if using border */
  color: var(--white-color);
}

/* ======================================== */
/* Header                                   */
/* ======================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  padding: 15px 0;
  transition: box-shadow 0.3s ease; /* Transition shadow only */
}

header.sticky {
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1); /* Keep specific sticky shadow if desired */
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color); /* Use variable */
}
.logo span { /* Assumed to be part of the logo text */
  color: var(--primary-color); /* Use variable */
}

.main-menu {
    display: flex;
}

.main-menu li {
  margin-left: 30px;
}

.main-menu a {
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  color: var(--dark-color); /* Ensure default color */
}

.main-menu a:hover,
.main-menu a.active {
  color: var(--primary-color);
  font-weight: bold; /* Keep bold for active/hover */
}

.main-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width .3s ease; /* Transition width only */
}

.main-menu a:hover::after,
.main-menu a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none; /* Ensure no background */
  border: none; /* Ensure no border */
  color: var(--primary-color); /* Use variable */
}

/* ======================================== */
/* Hero Section                             */
/* ======================================== */
.hero {
  padding: 150px 0 80px;
  background: var(--primary-gradient);
}

#dynamic-service {
  font-weight: 700;
  color: var(--primary-color); /* Use variable */
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-image {
  /* img styles already handle max-width, etc. */
  margin: 0 auto; /* Center if needed in grid */
}

/* ======================================== */
/* Services Section                         */
/* ======================================== */
.services {
  background-color: var(--white-color); /* Explicit background */
}

.service-card {
  background-color: var(--primary-color); /* Keep brand color var(--primary-color);  #b00000;*/
  color: color: #000 !important;  /* var(--white-color); or color: #000 !important; */
  border-radius: var(--border-radius-md);
  padding: var(--card-padding);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white-color); /* Ensure color */
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--white-color); /* Ensure color */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.service-card p {
  margin-bottom: 20px;
  line-height: var(--line-height-base);
  color: var(--white-color); /* Ensure color */
  max-width: none; /* Override general paragraph style */
  text-align: center; /* Override general paragraph style */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.service-card a {
  color: var(--white-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.service-card a:hover {
    /* Add subtle hover if needed, e.g., text-decoration: underline; */
    color: var(--white-color); /* Keep color on hover */
}

.service-card a i {
  margin-left: 5px;
  transition: transform .3s ease; /* Transition transform only */
}
.service-card a:hover i {
  transform: translateX(5px);
}

/* ======================================== */
/* Testimonials Section                     */
/* ======================================== */
.testimonials {
  background-color: var(--subtle-bg);
}

/* Base Card Style (applied via grouping later) */
.testimonial-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-md);
  padding: var(--card-padding);
  box-shadow: var(--box-shadow);
  /* transition: var(--transition); Added in group */
}

.testimonial-content {
  margin-bottom: 20px;
}
/* testimonial-content p styling handled by general paragraph grouping */

.testimonial-author p {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.rating {
  color: var(--warning-color); /* Use variable */
}

.testimonial-actions { /* Assuming these are buttons or links */
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* ======================================== */
/* Video Section                            */
/* ======================================== */
.video-section {
  padding: var(--section-padding);
  background-color: var(--subtle-bg);
}

.video-wrapper { order: 1; } /* Default order */
.video-content { order: 2; } /* Default order */

.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* video-content h2/p styling handled by general grouping */

.video-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.video-content li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--text-color-medium);
}

.video-content li i {
  color: var(--primary-color); /* Use variable */
  margin-right: 10px;
  font-size: 1.2rem;
  flex-shrink: 0; /* Prevent icon shrinking */
  width: 20px; /* Give icon consistent space */
  text-align: center; /* Center icon */
}

.list-desc { /* Consider removing if not needed, i style handles margin */
  /* margin-left: 6px; */
  display: inline-block;
}

/* ======================================== */
/* CTA Section                              */
/* ======================================== */
.cta {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 60px 0;
  text-align: center; /* Center all content */
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--white-color); /* Ensure color */
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: .9;
  color: var(--white-color); /* Ensure color */
  max-width: 700px; /* Override from general styles */
  margin-left: auto;
  margin-right: auto;
}

/* ======================================== */
/* Service Detail (Repeating Sections)      */
/* ======================================== */
.service-detail {
  padding: 50px 0;
  border-bottom: 1px solid var(--border-color-light);
}
.service-detail:last-child {
  border-bottom: none;
}

/* service-content h2/p styling handled by general grouping */

.service-detail:nth-child(even) .service-image {
  order: -1;
}

.service-features {
  margin: 25px 0;
  text-align: left; /* Ensure features are left aligned */
}

/* Common List Item with Icon Styling */
.feature-item,
.value-item, /* Added */
.contact-item /* Added */ {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px; /* Consistent spacing */
}

/* Common Icon Styling in Lists */
.feature-icon,
.value-icon, /* Added */
.contact-icon /* Added */ {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 1.2rem;
  width: 25px; /* Consistent width */
  flex-shrink: 0;
  text-align: center;
}

/* Specific Icon Overrides */
.value-icon { font-size: 1.5rem; }
.contact-icon { font-size: 1.5rem; color: rgba(255, 255, 255, .8); margin-top: 2px; }

/* Common Text Styling in Icon Lists */
.feature-item h4,
.value-content h3, /* Added */
.contact-text h4 /* Added */ {
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: var(--dark-color);
  font-weight: 600; /* Make consistent */
}
/* feature-item p styling handled by general paragraph grouping */
/* value-content p styling handled by general paragraph grouping */

/* Specific Text Overrides */
.value-content h3 { font-size: 1.3rem; }
.contact-text h4 { color: var(--white-color); }

.contact-text p,
.contact-text a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: .95rem;
  line-height: var(--line-height-base); /* Ensure consistent line height */
}
.contact-text a:hover {
  color: var(--white-color);
  text-decoration: underline;
}

.service-image img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
}

/* ======================================== */
/* Pricing Section                          */
/* ======================================== */
.pricing {
  padding: var(--section-padding);
}

.pricing-card {
  /* Base card styles applied via grouping */
  text-align: center;
  border: 2px solid transparent;
  display: flex; /* Enable flex for footer button */
  flex-direction: column; /* Stack content vertically */
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg); /* Use larger shadow on hover */
}

.pricing-card.featured {
  border-color: var(--primary-color);
  position: relative;
  transform: scale(1.03); /* Keep scale */
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-10px); /* Combine transforms */
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 5px 15px;
  border-radius: 20px; /* Consider var(--border-radius-lg) */
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap; /* Prevent wrapping */
}

.pricing-name {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  font-weight: 600;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--secondary-color);
}

.pricing-features {
  margin-bottom: 25px;
  text-align: left;
  flex-grow: 1; /* Push button to bottom */
}
/* pricing-features li styling handled by general paragraph grouping */

.pricing-features li i {
  color: var(--primary-color);
  margin-right: 8px;
  width: 16px; /* Align icons */
  text-align: center;
}

.pricing-card .btn {
  margin-top: auto; /* Stick to bottom */
}

/* ======================================== */
/* About Sections                           */
/* ======================================== */
.about-section { /* Container section */ }
.mission-values { background-color: var(--subtle-bg); }
.leadership-section { background-color: var(--white-color); } /* Example */

/* about-container structure defined in common grid layouts */
/* about-content h2/p styling handled by general grouping */
.about-image img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
}

/* mission-values-container structure defined in common grid layouts */
/* Base Card Style (applied via grouping later) */
.mission-card,
.values-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-md);
  padding: var(--card-padding-lg);
  box-shadow: var(--box-shadow);
}
/* mission-card h2 styling handled by general grouping */
/* values-card h2 styling handled by general grouping */

.values-list {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}
/* value-item, value-icon, value-content defined in common list styles */

/* ======================================== */
/* Contact Section                          */
/* ======================================== */
.contact-section { /* Container section */ }
/* contact-container structure defined in common grid layouts */

.contact-info {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, .8); /* Use consistent light text color */
  border-radius: var(--border-radius-md);
  padding: var(--card-padding-lg);
  height: 100%; /* Stretch to match form */
  display: flex;
  flex-direction: column;
}
/* contact-info h2 styling handled by general grouping */
.contact-info p { /* Specific paragraph style for info block */
  margin-bottom: 30px;
  opacity: .9;
  color: inherit; /* Inherit from .contact-info */
  max-width: none; /* Override general */
  text-align: left; /* Override general */
}

.contact-details {
  margin-bottom: 30px;
  flex-grow: 1; /* Push social icons down */
}
/* contact-item, contact-icon, contact-text defined in common list styles */

/* Common Social Icons Styling */
.contact-social,
.social-icons /* Footer */ {
  display: flex;
  gap: 15px;
  margin-top: auto; /* Push to bottom if in flex column */
}
.contact-social { margin-top: 20px; } /* Override default auto */
.social-icons { margin-top: 20px; } /* Override default auto */

.contact-social a,
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white-color);
  transition: var(--transition);
  text-decoration: none; /* Ensure */
  font-size: 1.1rem;
}

/* Specific Social Icon Variations */
.contact-social a {
  background-color: var(--primary-color); /* Match parent background */
  border: 1px solid rgba(255, 255, 255, .5);
}
.contact-social a:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}
.social-icons a {
  background-color: var(--primary-color); /* Different background */
}
.social-icons a:hover {
  background-color: var(--primary-color-darker); /* Darker primary */
  transform: translateY(-3px);
  color: var(--white-color); /* Keep white */
}

/* contact-form h2 styling handled by general grouping */
.contact-form {
  /* Base card styles applied via grouping */
  padding: var(--card-padding-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

/* Common Form Control Styles */
.form-control,
.faq-search input, /* Added */
.subscribe-form input[type=email] /* Added */ {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .3s, box-shadow .3s; /* Add box-shadow transition */
  background-color: var(--white-color);
  color: var(--text-color-base);
  line-height: var(--line-height-base); /* Consistent line height */
}

.form-control::placeholder,
.faq-search input::placeholder,
.subscribe-form input[type=email]::placeholder {
  color: var(--text-color-muted);
  opacity: 1; /* Ensure visible */
}

.form-control:focus,
.faq-search input:focus,
.subscribe-form input[type=email]:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 255, 80, 0), .2); /* Use variable or fallback */
}

/* Specific Input Overrides */
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.faq-search input {
  padding-left: 50px; /* For icon */
  border-radius: var(--border-radius-lg); /* Pill shape */
}
.subscribe-form input[type=email] {
  flex: 1;
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  font-size: .9rem; /* Slightly smaller */
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-top: 80px;
  border: 1px solid var(--border-color-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ======================================== */
/* Form Notifications & Responses           */
/* ======================================== */
#newsletter-response,
.form-notification {
  padding: 12px 18px;
  margin-top: 15px;
  border-radius: var(--border-radius-sm); /* Use consistent radius */
  font-weight: 500;
  font-size: .95rem; /* Slightly smaller */
  line-height: var(--line-height-base);
  display: block; /* Ensure block display */
}

#newsletter-response { /* Keep !important if overriding inline styles */
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  padding: 12px !important;
  margin-top: 10px !important;
  border-radius: 4px !important;
  line-height: 1.5 !important;
  display: block !important;
}

.form-notification {
  text-align: center;
  color: var(--white-color);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.form-notification.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Status Colors */
#newsletter-response.success,
.form-notification.success {
  background-color: rgba(40, 167, 69, 0.1); /* success-color with alpha */
  color: var(--success-color);
  border: 1px solid var(--success-color); /* Add border */
}
.form-notification.success {
  background-color: var(--success-color); /* Solid background */
  color: var(--white-color);
  border: none;
}

#newsletter-response.error,
.form-notification.error {
  background-color: rgba(220, 53, 69, 0.1); /* danger-color with alpha */
  color: var(--danger-color);
  border: 1px solid var(--danger-color); /* Add border */
}
.form-notification.error {
  background-color: var(--danger-color); /* Solid background */
  color: var(--white-color);
  border: none;
}


/* ======================================== */
/* Booking Page                             */
/* ======================================== */
.booking-section { /* Container section */ }
.booking-container { max-width: 1000px; margin: 0 auto; }
/* booking-intro h1/p styling handled by general grouping */

.calendly-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-lg);
  height: 700px; /* Keep specific height */
  overflow: hidden; /* Hide potential scrollbars */
}

.calendly-inline-widget {
  min-width: 320px;
  width: 100%;
  height: 100%;
}

/* General Page Title Section (e.g., for standalone pages) */
.page-title-section {
  background: var(--primary-gradient);
  padding: 80px 0 40px;
  text-align: center;
  margin-top: 0;
}
/* page-title-section h1/p styling handled by general grouping */
.page-title-section p { color: var(--secondary-color); } /* Ensure color */

/* Booking Benefits */
/* booking-benefits grid structure defined in common grid layouts */
.benefit-card {
  /* Base card styles applied via grouping */
  text-align: center;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.benefit-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--dark-color);
}
/* benefit-card p styling handled by general paragraph grouping */

/* ======================================== */
/* FAQ Section                              */
/* ======================================== */
.faq-section { /* Container section */ }
.faq-container { max-width: 900px; margin: 0 auto; }

.faq-search {
  margin-bottom: 40px;
  position: relative;
}
/* faq-search input styling handled by common form control styles */
.faq-search i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color-muted);
  pointer-events: none; /* Prevent icon interaction */
}

.faq-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.category-btn {
  background-color: var(--light-color); /* Use variable */
  color: var(--dark-color);
  border: none;
  padding: 10px 25px; /* Slightly smaller */
  border-radius: var(--border-radius-lg); /* Pill shape */
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-size: .9rem;
}
.category-btn:hover {
  background-color: #e0e0e0; /* Keep specific hover or use variable */
}
.category-btn.active {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.faq-list { /* Container for items */ }

.faq-item {
  /* Base card styles applied via grouping */
  margin-bottom: 20px;
  overflow: hidden; /* Important for animation */
}
.faq-item:hover {
  box-shadow: var(--box-shadow-hover);
}
.faq-item.hidden {
  display: none; /* For filtering */
}

.faq-question {
  padding: 20px 25px;
  background-color: var(--white-color); /* Ensure background */
  color: var(--dark-color);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .3s ease; /* Transition color only */
  border: none; /* Reset button styles */
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
}
.faq-question:hover,
.faq-question.active {
  color: var(--primary-color);
}

.faq-question i {
  font-size: 1rem;
  transition: transform .3s ease;
  margin-left: 15px;
  flex-shrink: 0; /* Prevent icon squishing */
}
.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, padding .5s ease, border-color .5s ease;
  line-height: var(--line-height-content);
  color: var(--secondary-color);
  background-color: var(--white-color); /* Ensure background */
  border-top: 1px solid transparent; /* Prepare for border */
}
.faq-answer.active {
  padding: 25px;
  border-top-color: var(--border-color-light);
  max-height: 1000px; /* Arbitrary large value */
}

.faq-answer p { margin-bottom: 15px; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}
.faq-answer a:hover {
  text-decoration: underline;
}

/* contact-cta defined in common section header styles */
.contact-cta .btn {
  margin: 5px; /* Spacing for multiple buttons */
}

/* ======================================== */
/* Terms & Privacy Pages                    */
/* ======================================== */
.terms-section, .privacy-section { /* Container sections */ }

/* Base Card Style (applied via grouping later) */
.terms-container,
.privacy-container {
  background-color: var(--white-color);
  border-radius: var(--border-radius-md);
  padding: var(--card-padding-lg);
  box-shadow: var(--box-shadow);
  max-width: 900px;
  margin: 0 auto;
}

.terms-header,
.privacy-header {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color-light);
  padding-bottom: 20px;
}
/* terms-header h1 styling handled by general grouping */
.terms-header p,
.privacy-header p {
  color: var(--secondary-color);
  font-size: .95rem;
}

/* terms-content h2/h3 styling handled by general grouping */
.terms-content p,
.privacy-content p {
  margin-bottom: 15px;
  line-height: var(--line-height-content);
  color: var(--text-color-medium); /* Use medium text color */
}

.terms-content ul,
.terms-content ol,
.privacy-content ul,
.privacy-content ol {
  margin-bottom: 20px;
  padding-left: 25px;
  color: var(--text-color-medium);
}
/* Restore list style types */
.terms-content ul, .privacy-content ul { list-style: disc; }
.terms-content ol, .privacy-content ol { list-style: decimal; }


.terms-content li,
.privacy-content li {
  margin-bottom: 10px;
  line-height: var(--line-height-content);
}

.terms-content .highlight,
.privacy-content .highlight {
  background-color: var(--subtle-bg);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  margin: 25px 0;
  border-left: 4px solid var(--primary-color);
}

.terms-content a,
.privacy-content a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none; /* Ensure */
}
.terms-content a:hover,
.privacy-content a:hover {
  text-decoration: underline;
}

/* ======================================== */
/* Footer                                   */
/* ======================================== */
footer {
  background-color: var(--footer-bg);
  color: var(--text-color-light);
  padding: 80px 0 20px;
  font-size: .95rem;
}

/* footer-grid defined in common grid layouts */

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: var(--white-color);
  font-weight: 600;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-col p {
  margin-bottom: 20px;
  line-height: var(--line-height-content);
  color: var(--text-color-light);
}

footer address {
  font-style: normal;
  line-height: var(--line-height-content);
}

footer address p {
  margin-bottom: 10px;
  color: var(--text-color-light);
  display: flex;
  align-items: flex-start;
}

footer address i {
  color: var(--text-color-light);
  margin-right: 10px;
  margin-top: 4px;
  width: 16px;
  text-align: center;
  flex-shrink: 0; /* Prevent shrinking */
}

footer address a {
  color: var(--text-color-light);
  text-decoration: none;
  transition: var(--transition);
}

/* Common Footer Link Hover */
footer address a:hover,
.footer-col ul li a:hover,
.footer-links a:hover {
  color: var(--primary-color);
}

.footer-col ul {
  padding-left: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-color-light);
  text-decoration: none;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  padding-left: 5px; /* Keep specific indent */
}

.subscribe-form {
  display: flex;
  margin-bottom: 25px;
}
/* subscribe-form input styling handled by common form control styles */
.subscribe-form button {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  padding: 0 15px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Prevent shrinking */
}
.subscribe-form button:hover {
  background-color: var(--primary-color-lighter);
}
.subscribe-form button i {
  font-size: 1rem;
  line-height: 1; /* Ensure icon aligns well */
}
.subscribe-form input[type=hidden] {
  display: none; /* Hide hidden input */
}

/* social-icons defined in common social icon styles */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid var(--footer-border-color);
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: var(--text-color-light);
  margin: 0;
  font-size: .9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: var(--text-color-light);
  text-decoration: none;
  transition: var(--transition);
  font-size: .9rem;
}

/* ======================================== */
/* Grouped Base Card Styles                 */
/* ======================================== */
.testimonial-card,
.pricing-card,
.benefit-card,
.mission-card,
.values-card,
.faq-item,
.contact-form,
.terms-container,
.privacy-container {
    background-color: var(--white-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    transition: var(--transition); /* Add common transition */
    padding: var(--card-padding); /* Default padding */
}

/* Padding overrides for larger cards */
.mission-card,
.values-card,
.contact-form,
.terms-container,
.privacy-container {
    padding: var(--card-padding-lg);
}
.faq-item {
    padding: 0; /* FAQ item manages its own internal padding */
}


/* ======================================== */
/* Media Queries                            */
/* ======================================== */

/* Tablet - Large */
@media (max-width: 992px) {
  .hero .container,
  .about-container,
  .contact-container,
  .video-grid,
  .service-detail .container {
    grid-template-columns: 1fr; /* Stack columns */
    text-align: center; /* Center text content */
  }

  /* Reset text-align for specific elements inside stacked grids */
  .hero-content p,
  .video-content,
  .service-content,
  .about-content,
  .contact-info,
  .contact-form,
  .feature-item,
  .pricing-features {
    text-align: left;
  }
  .service-content p,
  .about-content p {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
  .hero-content p { text-align: center; max-width: 700px; margin: 0 auto 30px; } /* Center hero text */

  .hero-image { order: -1; margin-bottom: 30px; }
  .about-image { order: -1; margin-bottom: 30px; }
  .video-wrapper { order: -1; margin-bottom: 30px; }
  .service-detail:nth-child(even) .service-image { order: 1; } /* Image below content */
  .service-image { margin-bottom: 30px; }

  .hero-buttons { justify-content: center; }
  .feature-item { justify-content: flex-start; } /* Align feature items left */

  .mission-values-container { grid-template-columns: 1fr; }
  .contact-container { gap: 40px; } /* Add gap back for stacked contact */
  .booking-benefits { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } /* Adjust minmax if needed */
}

/* Tablet - Small / Mobile - Large */
@media (max-width: 768px) {
  :root {
      --section-padding: 60px 0; /* Reduce section padding */
      --card-padding: 25px;
      --card-padding-lg: 30px;
  }

  /* Reduce heading sizes */
  .section-header h2, .booking-intro h1, .contact-cta h3, .video-content h2, .service-content h2, .about-content h2, .mission-card h2, .values-card h2, .contact-info h2, .contact-form h2 { font-size: 2rem; }
  .page-title-section h1 { font-size: 2.2rem; }
  .hero-content h1 { font-size: 1.8rem; } /* Adjusted */
  .terms-header h1, .privacy-header h1 { font-size: 2rem; }
  .terms-content h2, .privacy-content h2 { font-size: 1.5rem; }
  .terms-content h3, .privacy-content h3 { font-size: 1.2rem; }

  .mobile-menu-toggle { display: block; }

  .main-menu {
    /* Keep original mobile menu styles, but ensure alignment */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0; /* Start from top */
    left: -100%;
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-color: var(--white-color);
    transition: left 0.3s ease; /* Use variable transition? */
    z-index: 999;
    padding-top: 70px; /* Space for potential close button or header */
  }
  .main-menu.active { left: 0; }
  .main-menu li { margin: 15px 0; }
  /* Need JS to add body.menu-open class when menu is active */

  .hero { padding: 120px 0 60px; } /* Adjust hero padding */
  .hero-image { width: 70%; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; } /* Stack footer columns */
  .footer-col { margin-bottom: 30px; }
  .footer-col:last-child { margin-bottom: 0; }
  .footer-col h3 { display: inline-block; } /* Prevent full width */
  .footer-col h3::after { left: 50%; transform: translateX(-50%); } /* Center underline */
  .footer-col p, footer address, .footer-col ul { text-align: center; max-width: 400px; margin-left: auto; margin-right: auto; }
  footer address p { justify-content: center; } /* Center address items */
  .social-icons { justify-content: center; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .contact-info { height: auto; } /* Reset height */
  .contact-form { box-shadow: none; }

  .booking-benefits { grid-template-columns: 1fr; } /* Stack benefits */

  .calendly-wrapper { height: auto; min-height: 650px; } /* Adjust height */
  .calendly-inline-widget { height: 650px; } /* Match height */

  .faq-question { padding: 15px 20px; font-size: 1rem; }
  .faq-answer.active { padding: 20px; }
  .category-btn { padding: 10px 20px; font-size: .85rem; }

  .terms-container, .privacy-container { padding: 25px 20px; }
}

/* Mobile - Small */
@media (max-width: 576px) {
  :root {
    --section-padding: 50px 0; /* Further reduce padding */
  }
  /* Further reduce heading sizes */
  .section-header h2, .booking-intro h1, .contact-cta h3, .video-content h2, .service-content h2, .about-content h2, .mission-card h2, .values-card h2, .contact-info h2, .contact-form h2 { font-size: 1.8rem; }
  .page-title-section h1 { font-size: 2rem; }
  .hero-content h1 { font-size: 1.6rem; }
  .pricing-price { font-size: 2rem; }
  .value-content h3 { font-size: 1.1rem; }
  .benefit-card h3 { font-size: 1.1rem; }

  .form-control,
  .faq-search input,
  .subscribe-form input[type=email] {
      font-size: .95rem;
      padding: 10px 12px;
  }
  .faq-search input { padding-left: 40px; } /* Adjust icon padding */
  .faq-search i { left: 15px; }

  .subscribe-form button { padding: 0 12px; }
  .social-icons a,
  .contact-social a {
      width: 36px;
      height: 36px;
      font-size: 1rem;
  }
  .footer-bottom p, .footer-links a { font-size: .85rem; }

  .map-container { height: 300px; }

  .benefit-card { padding: 20px; }
  .benefit-icon { font-size: 2rem; }

  .calendly-wrapper { min-height: 600px; } /* Further adjust */
  .calendly-inline-widget { height: 600px; }
}