/*
Theme Name: Hayes Eye Clinic
Theme URI: https://hayeseyeclinic.com/
Author: Hayes Eye Clinic
Author URI: https://hayeseyeclinic.com/
Description: Professional WordPress theme for Hayes Eye Clinic. Features hero slider with full Customizer controls, 6 customisable service cards (image, content, icon picker), team section, testimonials, WhatsApp button, and Google Maps integration.
Version: 1.1.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: southall-eye-clinic
Tags: healthcare, medical, eye-care, clinic, responsive, custom-header, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --primary: #00A9E5;
  --primary-dark: #0090c5;
  --secondary: #F17732;
  --dark: #1a1a2e;
  --dark-navy: #0d1b2a;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --light-bg: #f0f9ff;
  --light-gray: #f8f9fa;
  --border: #e0e0e0;
  --font: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,169,229,0.2);
  --radius: 8px;
  --radius-lg: 16px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--text-light); }

input, textarea, select, button { font-family: var(--font); }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding { padding: 80px 0; }

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 { margin-bottom: 15px; }
.section-title p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-title .subtitle {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.grid { display: grid; }
.flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--dark-navy);
  color: #ccc;
  padding: 10px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.top-bar a { color: #ccc; }
.top-bar a:hover { color: var(--primary); }
.top-bar .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar .contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 20px;
}
.site-logo img { height: 60px; width: auto; }
.site-logo .logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.site-logo .logo-text span { color: var(--primary); }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 10px 16px;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.current-menu-item > a,
.main-nav > ul > li.current_page_item > a {
  color: var(--primary);
  background: var(--light-bg);
}

/* Dropdown */
.main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  z-index: 100;
  border-top: 3px solid var(--primary);
}
.main-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .sub-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--text);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.main-nav .sub-menu li a:hover {
  color: var(--primary);
  background: var(--light-bg);
  padding-left: 28px;
}

.header-cta .btn { white-space: nowrap; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  background: linear-gradient(135deg, #e8f7fd 0%, #f0f9ff 50%, #e8f7fd 100%);
}
.hero-slide {
  display: none;
  min-height: 85vh;
  align-items: center;
  padding: 80px 0 60px;
}
.hero-slide.active { display: flex; }
.hero-slide .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-content .subtitle {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 16px;
}
.hero-content h1 { color: var(--dark); margin-bottom: 20px; font-size: clamp(2.2rem, 5vw, 3.8rem); }
.hero-content p { font-size: 1.1rem; margin-bottom: 30px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-icons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-icon-item {
  background: var(--white);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.hero-icon-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.hero-icon-item svg { width: 32px; height: 32px; }

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: var(--primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.12;
}
.hero-image-main {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  max-height: 500px;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-badge .badge-icon {
  width: 48px;
  height: 48px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge strong { display: block; font-size: 1.2rem; color: var(--dark); }
.hero-badge span { font-size: 0.8rem; color: var(--text-light); }

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(0,169,229,0.3);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active { background: var(--primary); width: 30px; border-radius: 5px; }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  z-index: 10;
}
.slider-arrow:hover { background: var(--primary); color: var(--white); }
.slider-arrow svg { width: 20px; height: 20px; }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--primary);
  padding: 30px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 10px; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-top: 4px; }

/* =============================================
   BENEFITS SECTION
   ============================================= */
.benefits-section { background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid transparent;
  text-align: center;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.benefit-icon {
  width: 72px; height: 72px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}
.benefit-card:hover .benefit-icon {
  background: var(--primary);
}
.benefit-icon svg { width: 36px; height: 36px; stroke: var(--primary); transition: all var(--transition); }
.benefit-card:hover .benefit-icon svg { stroke: var(--white); }
.benefit-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.benefit-card p { font-size: 0.92rem; margin: 0; }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section { background: var(--light-gray); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-image {
  height: 200px;
  overflow: hidden;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-image img { transform: scale(1.05); }
.service-body { padding: 24px; }
.service-body .service-icon {
  width: 52px; height: 52px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-body .service-icon svg { width: 26px; height: 26px; stroke: var(--primary); }
.service-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-body p { font-size: 0.9rem; margin-bottom: 16px; }
.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { color: var(--primary-dark); gap: 10px; }
.service-link svg { width: 16px; height: 16px; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image { position: relative; }
.why-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}
.why-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}
.why-experience-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.why-experience-badge .years { font-size: 2.5rem; font-weight: 700; line-height: 1; }
.why-experience-badge .label { font-size: 0.8rem; opacity: 0.9; }

.why-features { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 44px; height: 44px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feature-icon svg { width: 22px; height: 22px; stroke: var(--primary); }
.why-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.why-feature p { font-size: 0.88rem; margin: 0; }

/* =============================================
   TEAM SECTION
   ============================================= */
.team-section { background: var(--light-gray); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-photo {
  height: 220px;
  overflow: hidden;
  background: var(--light-bg);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-info { padding: 20px; }
.team-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-role { color: var(--primary); font-size: 0.85rem; font-weight: 500; margin-bottom: 12px; display: block; }
.team-social { display: flex; gap: 8px; justify-content: center; }
.team-social a {
  width: 32px; height: 32px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition);
}
.team-social a:hover { background: var(--primary); color: var(--white); }
.team-social svg { width: 14px; height: 14px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--light-bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.12;
  font-family: Georgia, serif;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; }
.testimonial-text { font-style: italic; margin-bottom: 20px; font-size: 0.95rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--light-bg);
  overflow: hidden;
  flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; font-size: 0.95rem; color: var(--dark); margin: 0; }
.author-label { font-size: 0.8rem; color: var(--text-light); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1a3a5c 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 550px; margin: 0 auto 30px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* =============================================
   BLOG SECTION
   ============================================= */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-image {
  height: 200px;
  overflow: hidden;
  background: var(--light-bg);
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-body { padding: 24px; }
.blog-cat {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}
.blog-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-body h3 a { color: var(--dark); }
.blog-body h3 a:hover { color: var(--primary); }
.blog-body p { font-size: 0.88rem; margin-bottom: 16px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.blog-meta svg { width: 14px; height: 14px; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section { background: var(--light-gray); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-details { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 22px; height: 22px; stroke: var(--white); }
.contact-detail h4 { font-size: 0.9rem; margin-bottom: 2px; }
.contact-detail p, .contact-detail a { font-size: 0.88rem; margin: 0; color: var(--text-light); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all var(--transition);
  color: var(--text);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,169,229,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* Map */
.map-section { background: var(--white); padding: 0; }
.map-section iframe { display: block; width: 100%; height: 400px; border: 0; filter: grayscale(20%); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark-navy);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-about .footer-logo { margin-bottom: 16px; }
.footer-about .footer-logo img { height: 50px; filter: brightness(10); }
.footer-about p { font-size: 0.9rem; line-height: 1.8; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }

.footer-widget h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-widget h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 2px; background: var(--primary); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: all var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--primary); font-size: 1.1rem; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact-info { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; font-size: 0.88rem; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--primary); }

.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.footer-hours .hour-row { display: flex; justify-content: space-between; font-size: 0.85rem; }
.footer-hours .hour-row .day { color: rgba(255,255,255,0.5); }
.footer-hours .hour-row .time { color: rgba(255,255,255,0.8); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--primary); }

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  background: linear-gradient(135deg, var(--dark-navy), #1a3a5c);
  padding: 60px 0;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 10px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.breadcrumbs { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.breadcrumbs a { color: rgba(255,255,255,0.65); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { margin: 0 8px; }

/* =============================================
   SINGLE POST / PAGES
   ============================================= */
.content-area { padding: 70px 0; }
.content-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 50px; align-items: start; }
.post-content .post-thumbnail { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 30px; }
.post-content .post-thumbnail img { width: 100%; object-fit: cover; }
.post-body { font-size: 1rem; line-height: 1.9; }
.post-body h2, .post-body h3 { margin-top: 30px; }
.post-body p { color: var(--text); }
.post-body ul, .post-body ol { padding-left: 20px; margin-bottom: 16px; }
.post-body li { margin-bottom: 8px; }
.post-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  background: var(--light-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
}

/* Sidebar */
.sidebar .widget { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); margin-bottom: 28px; }
.sidebar .widget-title { font-size: 1rem; color: var(--dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.sidebar .widget ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.sidebar .widget ul li:last-child { border-bottom: none; }
.sidebar .widget ul li a { color: var(--text); }
.sidebar .widget ul li a:hover { color: var(--primary); }

/* =============================================
   APPOINTMENT BOOKING PAGE
   ============================================= */
.booking-section { background: var(--light-gray); }
.booking-container { max-width: 700px; margin: 0 auto; }
.booking-form { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); }

/* =============================================
   COMMENTS
   ============================================= */
.comments-area { margin-top: 50px; padding-top: 50px; border-top: 1px solid var(--border); }
.comments-area h2 { font-size: 1.4rem; margin-bottom: 30px; }
.comment-list .comment { padding: 24px 0; border-bottom: 1px solid var(--border); }
.comment-author-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment-author-meta img { width: 44px; height: 44px; border-radius: 50%; }
.comment-author-name { font-weight: 600; font-size: 0.95rem; }
.comment-date { font-size: 0.8rem; color: var(--text-light); }
.comment-body { font-size: 0.92rem; }
.comment-form input,
.comment-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.comment-form input:focus,
.comment-form textarea:focus { outline: none; border-color: var(--primary); }

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  border: none;
  box-shadow: 0 4px 16px rgba(0,169,229,0.4);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); }
.scroll-top svg { width: 20px; height: 20px; }

/* =============================================
   WOOCOMMERCE COMPATIBLE (glasses shop)
   ============================================= */
.woocommerce .products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.woocommerce ul.products li.product { margin: 0 !important; float: none !important; width: auto !important; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); }
.woocommerce ul.products li.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.woocommerce ul.products li.product .woocommerce-LoopProduct-link img { width: 100%; height: 200px; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 16px 16px 0; font-size: 1rem; }
.woocommerce ul.products li.product .price { padding: 8px 16px; color: var(--primary); font-weight: 600; }
.woocommerce ul.products li.product .button { margin: 0 16px 16px; border-radius: 30px; background: var(--primary); border-color: var(--primary); }

/* =============================================
   CONTACT FORM 7 OVERRIDE
   ============================================= */
.wpcf7 .wpcf7-form { }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font);
  transition: all var(--transition);
  margin-bottom: 4px;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,169,229,0.1); }
.wpcf7 input[type="submit"] {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 14px 32px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.wpcf7 input[type="submit"]:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .why-grid { gap: 40px; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .content-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar .container { gap: 16px; font-size: 0.78rem; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 20px;
    z-index: 999;
  }
  .main-nav.open > ul { flex-direction: column; width: 100%; gap: 0; }
  .main-nav.open > ul > li > a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .main-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; border-left: 3px solid var(--primary); margin-left: 16px; margin-top: 4px; border-radius: 0; }
  .menu-toggle { display: flex; }
  .site-header .container { position: relative; }
  .hero-slide .container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero-buttons { justify-content: center; }
  .hero-icons { justify-content: center; }
  .hero-image-wrap { max-width: 400px; margin: 0 auto; }
  .hero-badge { left: 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-experience-badge { left: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-padding { padding: 50px 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero-slide { min-height: auto; padding: 50px 0; }
  .hero-slider { min-height: auto; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .booking-form { padding: 24px; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* WP Core */
.wp-block-image { margin-bottom: 1rem; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; text-align: center; color: var(--text-light); margin-top: 6px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
