/*
Theme Name: Medical Spa Pro
Theme URI: https://example.com
Description: A custom-coded WordPress theme for medical spa and aesthetics businesses with built-in object caching
Author: Custom Development
Author URI: https://example.com
Version: 1.0.1`
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: medical-spa
Tags: medical, spa, aesthetics, custom, responsive, modern
*/

/* ================================
   CSS Variables & Design System
   ================================ */
:root {
  /* Colors - Modern Medical Spa Palette */
  --primary-color: #FF0000;
  --secondary-color: #000000;
  --accent-color: #FF0000;
  --text-dark: #000000;
  --text-light: #333333;
  --background-light: #F5F5F5;
  --white: #FFFFFF;
  --border-color: #E0E0E0;
  --hover-red: #CC0000;

  /* Typography */
  --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition: all 0.3s ease;

  /* Container */
  --container-width: 1200px;
}

/* ================================
   Reset & Base Styles
   ================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================
   Typography
   ================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3.125rem;
  font-weight: 700;
}

h2 {
  font-size: 2.625rem;
  font-weight: 600;
}

h3 {
  font-size: 2.125rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

/* ================================
   Layout
   ================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--spacing-sm);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

/* ================================
   Header & Navigation
   ================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: var(--transition);
}

/* Hero section should start at top with header overlay */
.hero-video-section,
.hero-slider-section {
  margin-top: 0 !important;
  position: relative;
  top: 0;
}

/* Pages without hero video/slider need padding for fixed header */
body:not(.home) .site-main,
body:not(.home) #main-content {
  padding-top: 80px;
}

/* Single service pages with video hero - remove padding */
body.single-service .site-main,
body.single-service #main-content,
body.single-service .service-hero-enhanced {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Page header section - add top padding for fixed header */
.page-header,
.archive-header,
.post-type-archive-service .page-header,
.page-template-template-contact .entry-header {
  padding-top: 120px !important;
}

/* Service archive page header */
.post-type-archive-service .service-hero,
.archive-service .service-hero {
  margin-top: 80px;
}

/* Transparent Header - for homepage with video */
.site-header-transparent {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header-transparent .main-navigation a,
.site-header-transparent .main-navigation ul li a {
  color: #ffffff !important;
  font-weight: 600;
}

.site-header-transparent .main-navigation a:hover,
.site-header-transparent .main-navigation ul li a:hover,
.site-header-transparent .main-navigation .current-menu-item>a {
  color: #ffffff !important;
}

.site-header-transparent .main-navigation>ul>li>a::after {
  background: #ffffff !important;
}

.site-header-transparent .mobile-menu-toggle {
  color: #ffffff !important;
}

/* Transparent header dropdown menu - theme color background */
.site-header-transparent .main-navigation ul ul {
  background: var(--theme-color, var(--primary-color)) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.site-header-transparent .main-navigation ul ul a {
  color: #ffffff !important;
  background: transparent !important;
}

.site-header-transparent .main-navigation ul ul a:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

/* Header scrolled state - theme color background */
.site-header.scrolled {
  background: var(--theme-color, var(--primary-color));
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.site-header.scrolled .main-navigation a,
.site-header.scrolled .main-navigation ul li a {
  color: #ffffff !important;
}

.site-header.scrolled .main-navigation a:hover,
.site-header.scrolled .main-navigation ul li a:hover,
.site-header.scrolled .main-navigation .current-menu-item>a {
  color: #ffffff !important;
}

.site-header.scrolled .main-navigation>ul>li>a::after {
  background: #ffffff !important;
}

.site-header.scrolled .mobile-menu-toggle {
  color: #ffffff !important;
}

/* Scrolled header dropdown menu - theme color background */
.site-header.scrolled .main-navigation ul ul {
  background: var(--theme-color, var(--primary-color)) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .main-navigation ul ul a {
  color: #ffffff !important;
  background: transparent !important;
}

.site-header.scrolled .main-navigation ul ul a:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--spacing-md);
  max-width: var(--container-width);
  margin: 0 auto;
}

.site-logo img {
  max-height: 50px;
  width: auto;
  transition: var(--transition);
}

/* Main Navigation */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-navigation>ul>li {
  position: relative;
}

.main-navigation a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: var(--transition);
  text-transform: capitalize;
  letter-spacing: 0.3px;
  display: block;
}

.main-navigation>ul>li>a {
  position: relative;
}

.main-navigation>ul>li>a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.main-navigation>ul>li>a:hover::after,
.main-navigation>ul>li.current-menu-item>a::after {
  width: 100%;
}

.main-navigation a:hover,
.main-navigation .current-menu-item>a {
  color: var(--primary-color);
}

/* Dropdown/Mega Menu Styles */
.main-navigation ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 9999;
  margin-top: 1rem;
}

.main-navigation ul li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation ul ul {
  display: flex;
  flex-direction: column;
  gap: 3px !important;
}

.main-navigation ul ul li {
  position: relative;
  display: block;
  width: 100%;
}

.main-navigation ul ul a {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dark);
  white-space: nowrap;
  display: block;
}

.main-navigation ul ul a:hover {
  background: var(--background-light);
  color: var(--primary-color);
  padding-left: 2rem;
}

/* Sub-submenu (third level) */
.main-navigation ul ul ul {
  left: 100%;
  top: 0;
  margin-top: 0;
  margin-left: 0.5rem;
}

/* Menu item with children indicator */
.main-navigation .menu-item-has-children>a {
  position: relative;
  padding-right: 1.5rem;
}

.main-navigation .menu-item-has-children>a::before {
  content: '\25BE';
  font-size: 0.9rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  line-height: 1;
}

.main-navigation .menu-item-has-children:hover>a::before {
  transform: translateY(-50%) rotate(180deg);
}

.main-navigation ul ul .menu-item-has-children>a::before {
  content: '\25B8';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
}

/* Header CTA Styling */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 2rem;
}

.header-phone {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.02);
}

.header-phone .phone-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.header-phone:hover {
  color: var(--primary-color);
  background: rgba(255, 0, 0, 0.05);
}

.header-booking-btn {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0 !important;
  transition: var(--transition);
  text-transform: capitalize;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.header-booking-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.header-booking-btn:hover {
  color: var(--primary-color) !important;
  background: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.header-booking-btn:hover::after {
  width: 100%;
}

/* Add spacing before Book Now in header */
.header-cta {
  margin-left: 2.5rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  padding: 0.5rem;
}

/* ================================
   Buttons
   ================================ */
.btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 100px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.btn-secondary {
  background: var(--white);
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ================================
   Hero Slider Section
   ================================ */
.hero-slider-section {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 700px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  z-index: 0;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 0.8s ease-in-out;
}

/* Slide from right animation */
.hero-slide {
  transform: translateX(100%);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: translateX(0);
}

/* Slide out to left when exiting */
.hero-slide.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
}

/* Alternative animations for variety */
.hero-slide.slide-from-left {
  transform: translateX(-100%);
}

.hero-slide.slide-from-left.active {
  transform: translateX(0);
}

/* Zoom in effect on background */
.hero-slide .hero-slide-bg {
  transition: transform 0.8s ease-in-out;
  transform: scale(1.1);
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

/* Fade transition */
[data-transition="fade"] .hero-slide {
  transform: none;
}

[data-transition="fade"] .hero-slide.slide-out-left {
  transform: none;
}

/* Zoom transition */
[data-transition="zoom"] .hero-slide {
  transform: scale(0.8);
  opacity: 0;
}

[data-transition="zoom"] .hero-slide.active {
  transform: scale(1);
  opacity: 1;
}

[data-transition="zoom"] .hero-slide.slide-out-left {
  transform: scale(1.2);
  opacity: 0;
}

/* Slide Up transition */
[data-transition="slide-up"] .hero-slide {
  transform: translateY(100%);
}

[data-transition="slide-up"] .hero-slide.active {
  transform: translateY(0);
}

[data-transition="slide-up"] .hero-slide.slide-out-left {
  transform: translateY(-100%);
}

[data-transition="slide-up"] .hero-slide.slide-from-left {
  transform: translateY(-100%);
}

/* Slide Down transition */
[data-transition="slide-down"] .hero-slide {
  transform: translateY(-100%);
}

[data-transition="slide-down"] .hero-slide.active {
  transform: translateY(0);
}

[data-transition="slide-down"] .hero-slide.slide-out-left {
  transform: translateY(100%);
}

[data-transition="slide-down"] .hero-slide.slide-from-left {
  transform: translateY(100%);
}

.hero-slide .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-slide-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 0, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide.active .hero-content {
  animation: slideIn 1s ease-out;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.75rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

/* Slider Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.slider-control:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 2rem;
}

.slider-next {
  right: 2rem;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 1rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot:hover,
.slider-dot.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.2);
}

/* ================================
   Services Grid
   ================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.service-card {
  position: relative;
  min-height: 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 3;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.25);
}

/* Clickable link covering entire card */
.service-card-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  z-index: 2;
}

/* Dark overlay on service card */
.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.85) 100%);
  transition: var(--transition);
  z-index: 1;
}

.service-card:hover .service-overlay {
  background: linear-gradient(to bottom,
      rgba(255, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.9) 100%);
}

/* Service content at bottom */
.service-content {
  position: relative;
  padding: var(--spacing-lg);
  width: 100%;
  z-index: 2;
}

.all-services-content {
  padding: 20px !important;
}

.all-services-content .service-title a {

  font-size: 26px !important;

}

.service-archive-page {
  padding-bottom: 80px !important;
}

/* Service title styled as button */
.service-title-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 14px 35px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  margin: 0;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.service-card:hover .service-title-button {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* ================================
   Single Service Page
   ================================ */

/* Hero Section with Featured Image Background */
.service-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  width: 100%;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.45) 50%,
      rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.service-hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%,
      rgba(255, 0, 0, 0.15) 0%,
      transparent 70%);
  pointer-events: none;
}

.service-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: var(--spacing-xl) 0;
  width: 100%;
}

.service-hero-title {
  color: var(--white);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.service-hero .service-categories {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.service-hero .service-category {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Service Content Section */
.service-single {
  background: var(--white);
}

.service-content-wrapper {
  margin: 0 auto;
  padding: var(--spacing-xl) 0;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.service-description h2,
.service-description h3,
.service-description h4 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.service-description p {
  margin-bottom: var(--spacing-md);
}

.service-description ul,
.service-description ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

.service-description li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Service Info Box */
.service-info-box {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  border-left: 5px solid var(--primary-color);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  border-radius: var(--radius-md);
  display: flex;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: var(--spacing-md);
  min-width: 150px;
}

.service-info-item strong {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-info-item span {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
}

/* Ready to Book Section */
.service-booking-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #cc0000 100%);
  color: var(--white);
  padding: var(--spacing-xl) 0;
  margin: var(--spacing-xl) 0 0 0;
  position: relative;
  overflow: hidden;
}

.service-booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 60%);
  pointer-events: none;
}

.service-booking-section .container {
  position: relative;
  z-index: 2;
}

.booking-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.service-booking-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-booking-section p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  line-height: 1.7;
  color: var(--white);
}

.service-booking-btn {
  background: var(--theme-color, var(--primary-color));
  color: #ffffff;
  border: 2px solid var(--theme-color, var(--primary-color));
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.service-booking-btn:hover {
  background: var(--hover-red, var(--theme-hover));
  color: #ffffff;
  border-color: var(--hover-red, var(--theme-hover));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Related Services Section */
.related-services {
  padding: var(--spacing-xl) 0;
  background: var(--background-light);
}

.related-services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  color: var(--text-dark);
  font-weight: 700;
}

/* Mobile responsiveness for single service */
@media (max-width: 768px) {
  .service-hero {
    min-height: 450px;
  }

  .service-hero-title {
    font-size: 2.5rem;
  }

  .service-hero .service-category {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .service-content-wrapper {
    padding: var(--spacing-lg) 0;
  }

  .service-info-box {
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
  }

  .service-info-item {
    min-width: 100%;
  }

  .service-booking-section {
    padding: var(--spacing-lg) 0;
  }

  .service-booking-section h2 {
    font-size: 1.75rem;
  }

  .service-booking-section p {
    font-size: 1rem;
  }

  .related-services h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .service-hero {
    min-height: 400px;
  }

  .service-hero-title {
    font-size: 2rem;
  }

  .service-booking-section h2 {
    font-size: 1.5rem;
  }
}

/* ================================
   Footer
   ================================ */
.site-footer {
  background: var(--theme-color, var(--primary-color, #1a365d));
  color: rgba(255, 255, 255, 0.9);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 0.9fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

/* Footer Map Column */
.footer-map-column {
  display: flex;
  flex-direction: column;
}

.footer-map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  background: #f5f5f5;
  flex: 1;
  min-height: 200px;
}

.footer-map-container iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 200px;
  border: 0;
  display: block;
}

/* About Us Column with Map Button */
.footer-about-column {
  display: flex;
  flex-direction: column;
}

.footer-about-column p {
  margin-bottom: var(--spacing-sm);
}

.footer-contact-info {
  margin-bottom: var(--spacing-sm);
}

.btn-view-map-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 12px 20px;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-view-map-footer:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-view-map-footer svg {
  transition: transform 0.3s ease;
  color: #ffffff;
}

.btn-view-map-footer:hover svg {
  transform: scale(1.1);
}

/* Map Modal Styles */
.map-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.map-modal.active {
  opacity: 1;
  visibility: visible;
}

.map-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.map-modal-container {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 80vh;
  max-height: 600px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.map-modal.active .map-modal-container {
  transform: scale(1) translateY(0);
}

.map-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--secondary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-modal-header h3 {
  color: #fff;
  margin: 0;
  font-size: 1.2rem;
}

.map-modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.map-modal-body {
  flex: 1;
  position: relative;
  background: #f5f5f5;
}

.map-modal-body iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-modal-footer {
  padding: var(--spacing-md) var(--spacing-lg);
  background: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.btn-directions-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #cc0000 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-directions-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
  color: #fff;
}

/* Prevent body scroll when modal is open */
body.map-modal-open {
  overflow: hidden;
}

.footer-column {
  color: rgba(255, 255, 255, 0.9);
}

.footer-column h3 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  font-size: 0.95rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Fix for Archives and Categories widgets */
.footer-widget select {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  width: 100%;
  font-size: 0.9rem;
}

.footer-widget select option {
  background: var(--secondary-color);
  color: var(--white);
}

/* Widget titles in footer */
.widget_archive h3,
.widget_categories h3,
.widget_recent_entries h3,
.widget_recent_comments h3,
.widget_meta h3,
.widget_pages h3,
.widget_nav_menu h3 {
  color: var(--white) !important;
  font-weight: 600;
}

/* Widget content text */
.widget_archive ul li,
.widget_categories ul li,
.widget_recent_entries ul li,
.widget_pages ul li,
.widget_meta ul li {
  color: rgba(255, 255, 255, 0.85);
}

.widget_archive ul li a,
.widget_categories ul li a,
.widget_recent_entries ul li a,
.widget_pages ul li a,
.widget_meta ul li a {
  color: rgba(255, 255, 255, 0.85);
}

/* Footer Social Links */
.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  padding-left: 0.5rem;
}

.footer-social-link:hover svg {
  transform: scale(1.1);
  color: #ffffff;
}

/* Footer Services List */
.footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services-list li {
  margin-bottom: 0.75rem;
  padding-left: 0;
  position: relative;
}

.footer-services-list li::before {
  content: '→';
  color: rgba(255, 255, 255, 0.7);
  font-weight: bold;
  display: inline-block;
  width: 1.5rem;
  margin-right: 0.5rem;
}

.footer-services-list li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-services-list li a:hover {
  color: #ffd700;
  padding-left: 0.5rem;
}

/* Footer Contact Info */
.footer-contact-info {
  margin-top: var(--spacing-md);
}

.footer-contact-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact-info strong {
  color: var(--white);
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-bottom p {
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0 !important;
}

.footer-bottom .powered-by {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 5px;
}

.footer-bottom .powered-by a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
}

.footer-bottom .powered-by a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
  .main-navigation ul {
    gap: 1.5rem;
  }

  .main-navigation a {
    font-size: 0.9rem;
  }
  
  /* Footer: 3 columns on tablet */
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-md);
  }
  
  .footer-map-container iframe {
    min-height: 180px;
  }
  
  /* Map modal adjustments for tablet */
  .map-modal-container {
    width: 95%;
    height: 70vh;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-container {
    padding: 0.75rem var(--spacing-sm);
  }

  .site-logo img {
    max-height: 50px;
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    display: none;
    justify-content: flex-start;
  }

  .main-navigation.active {
    display: block;
  }

  .main-navigation ul {
    flex-direction: column;
    padding: var(--spacing-md);
    gap: 0;
    align-items: flex-start;
  }

  .main-navigation ul li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    position: relative;
  }

  .main-navigation a {
    padding: 1rem 0;
    width: 100%;
  }

  /* Mobile dropdown */
  .main-navigation ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    margin-top: 0;
    background: var(--background-light);
    border-radius: 0;
    display: none;
  }

  .main-navigation ul li:hover>ul {
    display: none;
  }

  .main-navigation .menu-item-has-children.toggled>ul {
    display: block;
  }

  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    line-height: 1;
  }

  .submenu-toggle span {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .main-navigation ul ul a {
    padding: 0.75rem 1rem;
  }

  .main-navigation>ul>li>a::after {
    display: none;
  }

  .main-navigation .menu-item-has-children>a::before {
    display: none;
  }

  .header-cta {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
    align-items: center;
    margin-left: 0;
  }

  .header-phone,
  .header-booking-btn {
    width: auto;
    text-align: center;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  /* Footer map mobile styles */
  .footer-map-container {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .footer-map-container iframe {
    min-height: 250px;
  }
  
  /* Map modal for mobile - full screen */
  .map-modal-container {
    width: 100%;
    height: 100vh;
    max-height: none;
    border-radius: 0;
  }
}

/* ================================
   Utility Classes
   ================================ */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: var(--spacing-xs);
}

.mb-2 {
  margin-bottom: var(--spacing-sm);
}

.mb-3 {
  margin-bottom: var(--spacing-md);
}

.mb-4 {
  margin-bottom: var(--spacing-lg);
}

.mt-1 {
  margin-top: var(--spacing-xs);
}

.mt-2 {
  margin-top: var(--spacing-sm);
}

.mt-3 {
  margin-top: var(--spacing-md);
}

.mt-4 {
  margin-top: var(--spacing-lg);
}

/* ================================
   Page Header
   ================================ */
.page-header {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: var(--white);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.page-intro {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ================================
   Contact Page Styles
   ================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
}

.contact-info h2,
.contact-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.contact-info>p {
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.contact-details {
  margin-bottom: var(--spacing-xl);
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: var(--background-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
}

.contact-text h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-text a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-text a:hover {
  text-decoration: underline;
}

.contact-text p {
  color: var(--text-light);
  margin: 0;
}

/* Business Hours */
.business-hours {
  padding: var(--spacing-md);
  background: var(--background-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
}

.business-hours h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.hours-content {
  color: var(--text-light);
  line-height: 1.8;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.contact-form-notice {
  background: var(--background-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
}

.contact-form-notice p {
  margin-bottom: var(--spacing-sm);
}

.contact-form-notice ol {
  margin-left: var(--spacing-md);
  color: var(--text-light);
}

/* Contact Form 7 Styling */
.wpcf7 {
  margin-top: var(--spacing-md);
}

.wpcf7-form p {
  margin-bottom: var(--spacing-md);
}

.wpcf7-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.wpcf7-form textarea {
  min-height: 150px;
  resize: vertical;
}

.wpcf7-form input[type="submit"] {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  padding: 14px 35px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
}

.wpcf7-form input[type="submit"]:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.wpcf7-response-output {
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
}

/* Contact CTA */
.contact-cta {
  padding: var(--spacing-xl) 0;
}

.contact-cta h2 {
  margin-bottom: var(--spacing-sm);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

/* Section Title Enhancement */
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--spacing-md);
  font-size: 2.5rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-title p {
  max-width: 600px;
  margin: var(--spacing-md) auto 0;
  font-size: 1.1rem;
  color: var(--text-light);
}

/* CTA Section Enhancement */
.cta-section {
  background: var(--background-light);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ================================
   About & Social Media Section
   ================================ */
.about-contact-section {
  background: var(--white);
}

.about-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.about-text {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.about-text p {
  margin-bottom: var(--spacing-md);
}

/* Contact Form Section */
.contact-form-section {
  background: var(--background-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-color);
}

.contact-form-section h3 {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.contact-form-section>p {
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

/* Contact Form 7 Styling */
.contact-form-section .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form-section .wpcf7-form p {
  margin-bottom: 0;
}

.contact-form-section .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-form-section input[type="text"],
.contact-form-section input[type="email"],
.contact-form-section input[type="tel"],
.contact-form-section textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-primary);
  transition: var(--transition);
  background: var(--white);
}

.contact-form-section input[type="text"]:focus,
.contact-form-section input[type="email"]:focus,
.contact-form-section input[type="tel"]:focus,
.contact-form-section textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.contact-form-section textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form-section .wpcf7-submit {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  padding: 14px 35px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.contact-form-section .wpcf7-submit:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.contact-form-section .wpcf7-not-valid-tip {
  color: var(--primary-color);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.contact-form-section .wpcf7-response-output {
  border-radius: var(--radius-sm);
  padding: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

/* ================================
   Contact Page Styles
   ================================ */
.contact-page-header {
  background: var(--background-light);
  text-align: center;
  padding: var(--spacing-xl) 0;
}

.contact-page-header h1 {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.contact-page-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.contact-info-section {
  background: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.contact-info-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.1);
  transform: translateY(-5px);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  color: var(--primary-color);
  transition: var(--transition);
}

.contact-info-card:hover .contact-card-icon {
  background: var(--primary-color);
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
  font-weight: 600;
}

.contact-info-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.contact-info-card a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-card a:hover {
  color: var(--primary-color);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 500px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.map-placeholder {
  background: var(--background-light);
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-lg);
  color: var(--text-light);
}

.contact-form-page-section {
  background: var(--background-light);
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.section-title.centered {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title.centered h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.section-title.centered p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-container {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Contact form on page (different from homepage form) */
.contact-form-container .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-form-container .wpcf7-form p {
  margin-bottom: 0;
}

.contact-form-container .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: var(--transition);
  background: var(--white);
}

.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container input[type="tel"]:focus,
.contact-form-container textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.contact-form-container textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form-container .wpcf7-submit {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  width: auto;
  align-self: center;
}

.contact-form-container .wpcf7-submit:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.contact-cta-section {
  background: var(--white);
}

.cta-content.centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content.centered h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.cta-content.centered p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

/* ================================
   Responsive Enhancements
   ================================ */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .about-contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.25rem;
  }

  .contact-page-header h1 {
    font-size: 2.25rem;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .contact-form-container {
    padding: var(--spacing-lg);
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin: 0 auto;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: 300px;
  }

  .service-title-button {
    font-size: 0.9rem;
    padding: 12px 30px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .slider-control {
    width: 40px;
    height: 40px;
  }

  .slider-prev {
    left: 1rem;
  }

  .slider-next {
    right: 1rem;
  }
}