/*
Theme Name: IDG Modern
Theme URI: https://buycryptoca.io
Author: Modern Design Team
Author URI: https://buycryptoca.io
Description: A modern, fast-loading WordPress theme for International Derivatives Group with optimized performance, clean design, and mobile-first responsive layout.
Version: 2.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: idg-modern
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, responsive-layout, accessibility-ready
*/

/* ===================================
   CSS Variables for Easy Customization
   =================================== */
:root {
  --primary-color: #1a4d7f;
  --secondary-color: #d4af37;
  --accent-color: #e74c3c;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --max-width: 1200px;
  --border-radius: 8px;
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --font-heading: 'Helvetica Neue', Arial, sans-serif;
}

/* ===================================
   Modern CSS Reset
   =================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--secondary-color);
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p {
  margin-bottom: 1.25rem;
}

/* ===================================
   Layout Structure
   =================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
  position: relative;
}

.section > .container {
  position: relative;
  z-index: 2;
}

/* Pulse animation for loading elements */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

/* ===================================
   Header & Navigation
   =================================== */
.site-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
  position: relative;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  z-index: -1;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 15px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.site-logo img {
  max-height: 80px;
  width: auto;
}

.header-contact {
  display: none;
}

@media (min-width: 768px) {
  .header-contact {
    display: flex;
    align-items: center;
    margin-right: 15px;
  }
  
  .phone-number {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    white-space: nowrap;
    padding: 10px 18px;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.15));
    transition: all var(--transition-fast);
    position: relative;
  }
  
  .phone-number::before {
    content: '📞';
    margin-right: 8px;
    font-size: 0.9rem;
  }
  
  .phone-number:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  }
}

/* Mobile Navigation Toggle */
.menu-toggle {
  display: block;
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition-fast);
}

.menu-toggle:hover {
  background: var(--secondary-color);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

/* Navigation Menu */
.main-navigation {
  display: none;
  background: var(--bg-white);
}

.main-navigation.mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  transition: left var(--transition-normal);
  z-index: 9999;
  overflow-y: auto;
  display: block;
}

.main-navigation.mobile.is-open {
  left: 0;
}

.nav-menu {
  list-style: none;
  padding: 20px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 0;
}

.nav-menu li {
  margin-bottom: 15px;
  display: block !important;
}

.nav-menu a {
  display: block !important;
  padding: 12px 15px;
  color: var(--text-dark);
  font-weight: 500;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  visibility: visible !important;
  text-decoration: none;
}

.nav-menu a:hover {
  background: var(--secondary-color);
  color: var(--bg-white);
}

/* Reset all WordPress-added active states first */
.nav-menu .current-menu-item a,
.nav-menu .current_page_item a,
.nav-menu .current-menu-ancestor a,
.nav-menu .current-page-ancestor a {
  background: transparent !important;
  color: var(--text-dark) !important;
}

/* Only apply active style to the item with our custom active class */
.nav-menu li.active-menu-item a {
  background: var(--primary-color) !important;
  color: var(--bg-white) !important;
}

@media (min-width: 768px) {
  .main-navigation {
    position: static;
    width: auto;
    display: flex !important;
    background: transparent;
    box-shadow: none;
  }
  
  .nav-menu {
    display: flex !important;
    gap: 5px;
    padding: 0;
    margin: 0;
    align-items: center;
  }
  
  .nav-menu li {
    margin: 0;
    display: inline-block !important;
  }
  
  .nav-menu a {
    padding: 10px 18px;
    white-space: nowrap;
    color: var(--text-dark);
    background: transparent;
    font-size: 0.95rem;
  }
  
  .nav-menu a:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
  }
  
  /* Reset all WordPress-added active states first */
  .nav-menu .current-menu-item a,
  .nav-menu .current_page_item a,
  .nav-menu .current-menu-ancestor a,
  .nav-menu .current-page-ancestor a {
    background: transparent !important;
    color: var(--text-dark) !important;
  }
  
  /* Only apply active style to the item with our custom active class */
  .nav-menu li.active-menu-item a {
    background: var(--primary-color) !important;
    color: var(--bg-white) !important;
  }
}

/* Mobile Menu Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 300px;
  right: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.menu-overlay.is-active {
  display: block;
}

@media (max-width: 375px) {
  .menu-overlay {
    left: 80%;
  }
}

/* ===================================
   Hero Banner
   =================================== */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  max-height: 500px;
}

.hero-banner .metaslider,
.hero-banner .flexslider,
.hero-banner .rslides_container {
  margin: 0;
  border: none;
  padding: 0;
  max-height: 500px;
}

.hero-banner img {
  width: 100%;
  height: 500px;
  max-height: 500px;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Responsive Hero Banner */
@media (max-width: 992px) {
  .hero-banner,
  .hero-banner .metaslider,
  .hero-banner .flexslider,
  .hero-banner .rslides_container {
    max-height: 450px;
  }
  
  .hero-banner img {
    height: 450px;
    max-height: 450px;
  }
}

@media (max-width: 768px) {
  .hero-banner,
  .hero-banner .metaslider,
  .hero-banner .flexslider,
  .hero-banner .rslides_container {
    max-height: 380px;
  }
  
  .hero-banner img {
    height: 380px;
    max-height: 380px;
  }
}

@media (max-width: 480px) {
  .hero-banner,
  .hero-banner .metaslider,
  .hero-banner .flexslider,
  .hero-banner .rslides_container {
    max-height: 280px;
  }
  
  .hero-banner img {
    height: 280px;
    max-height: 280px;
  }
}

/* Ensure slider captions/text are visible */
.hero-banner .caption-wrap,
.hero-banner .nivo-caption,
.hero-banner .flex-caption,
.hero-banner .caption,
.hero-banner .ms-layer,
.hero-banner .slide-caption,
.hero-banner .metaslider .caption,
.hero-banner .flexslider .caption,
.hero-banner .rslides_caption,
.hero-banner .slider-caption,
.hero-banner [class*="caption"],
.hero-banner [class*="text"],
.hero-banner [class*="title"],
.hero-banner [class*="description"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 100 !important;
  position: relative !important;
  color: white !important;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9) !important;
  background: rgba(0, 0, 0, 0.6) !important;
  padding: 11px 19px !important;
  font-size: 0.83rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  max-width: none !important;
}

.hero-banner .caption h1,
.hero-banner [class*="caption"] h1 {
  font-size: 1.13rem !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}

.hero-banner .caption h2,
.hero-banner [class*="caption"] h2 {
  font-size: 0.98rem !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
}

@media (max-width: 768px) {
  .hero-banner .caption-wrap,
  .hero-banner .nivo-caption,
  .hero-banner .flex-caption,
  .hero-banner .caption,
  .hero-banner .ms-layer,
  .hero-banner .slide-caption,
  .hero-banner [class*="caption"] {
    font-size: 0.71rem !important;
    padding: 9px 14px !important;
  }
  
  .hero-banner .caption h1,
  .hero-banner [class*="caption"] h1 {
    font-size: 0.9rem !important;
  }
  
  .hero-banner .caption h2,
  .hero-banner [class*="caption"] h2 {
    font-size: 0.79rem !important;
  }
}

/* Force show any hidden text layers */
.hero-banner * {
  max-height: none !important;
}

.hero-banner [style*="display: none"],
.hero-banner [style*="visibility: hidden"],
.hero-banner [style*="opacity: 0"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ===================================
   Welcome Section
   =================================== */
.welcome-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.welcome-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.welcome-content {
  display: grid;
  gap: 30px;
  align-items: center;
}

@media (min-width: 768px) {
  .welcome-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.welcome-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.welcome-text h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.welcome-text h1 span {
  display: block;
  font-size: 0.6em;
  color: var(--secondary-color);
  font-weight: 400;
}

.welcome-text h2 {
  color: var(--text-dark);
  margin: 25px 0 15px;
}

.welcome-text h2 span {
  color: var(--secondary-color);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: var(--border-radius);
  font-weight: 600;
  margin-top: 20px;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================================
   Services Section
   =================================== */
.services-section {
  background: var(--bg-white);
  position: relative;
}

.services-section h1 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 50px;
  animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  max-width: 100%;
  width: 100%;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-image {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 77, 127, 0.9);
  color: var(--bg-white);
  padding: 12px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.service-list {
  list-style: none;
  padding: 15px;
}

.service-list li {
  padding: 10px 12px;
  border-bottom: 1px solid var(--bg-light);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.service-list li:hover {
  background: var(--bg-light);
  padding-left: 20px;
}

.service-list a {
  color: var(--text-dark);
  font-weight: 500;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose-section {
  background: var(--bg-light);
  position: relative;
}

.why-choose-section h1 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 50px;
  animation: bounce 2s ease;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-10px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(-5px); }
}

.features-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background: var(--secondary-color);
  transform: rotate(360deg);
}

.feature-icon img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.feature-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

/* Golden vine decorations with leaves */
.faq-section::before {
  content: '';
  position: absolute;
  top: 8%;
  right: 3%;
  width: 420px;
  height: 550px;
  background-image: 
    /* Curved vine stems with multiple segments for curvature */
    radial-gradient(ellipse 8px 120px at 48% 0%, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.45) 30%, transparent 60%),
    radial-gradient(ellipse 7px 100px at 35% 20%, rgba(212, 175, 55, 0.48), rgba(212, 175, 55, 0.43) 30%, transparent 60%),
    radial-gradient(ellipse 6px 90px at 55% 40%, rgba(212, 175, 55, 0.46), rgba(212, 175, 55, 0.41) 30%, transparent 60%),
    radial-gradient(ellipse 7px 110px at 42% 60%, rgba(212, 175, 55, 0.47), rgba(212, 175, 55, 0.42) 30%, transparent 60%),
    /* Leaves hanging from vine */
    radial-gradient(ellipse 18px 30px at 50% 10%, rgba(212, 175, 55, 0.58) 0%, rgba(212, 175, 55, 0.50) 35%, transparent 65%),
    radial-gradient(ellipse 20px 32px at 30% 25%, rgba(212, 175, 55, 0.60) 0%, rgba(212, 175, 55, 0.52) 35%, transparent 65%),
    radial-gradient(ellipse 16px 28px at 70% 35%, rgba(212, 175, 55, 0.56) 0%, rgba(212, 175, 55, 0.48) 35%, transparent 65%),
    radial-gradient(ellipse 19px 31px at 45% 48%, rgba(212, 175, 55, 0.59) 0%, rgba(212, 175, 55, 0.51) 35%, transparent 65%),
    radial-gradient(ellipse 17px 29px at 65% 58%, rgba(212, 175, 55, 0.57) 0%, rgba(212, 175, 55, 0.49) 35%, transparent 65%),
    radial-gradient(ellipse 21px 33px at 35% 70%, rgba(212, 175, 55, 0.61) 0%, rgba(212, 175, 55, 0.53) 35%, transparent 65%),
    radial-gradient(ellipse 15px 27px at 68% 82%, rgba(212, 175, 55, 0.55) 0%, rgba(212, 175, 55, 0.47) 35%, transparent 65%),
    /* Smaller decorative leaves */
    radial-gradient(ellipse 13px 22px at 55% 15%, rgba(212, 175, 55, 0.53) 0%, rgba(212, 175, 55, 0.45) 35%, transparent 65%),
    radial-gradient(ellipse 14px 24px at 42% 40%, rgba(212, 175, 55, 0.54) 0%, rgba(212, 175, 55, 0.46) 35%, transparent 65%),
    radial-gradient(ellipse 12px 21px at 72% 65%, rgba(212, 175, 55, 0.52) 0%, rgba(212, 175, 55, 0.44) 35%, transparent 65%),
    radial-gradient(ellipse 11px 20px at 58% 90%, rgba(212, 175, 55, 0.51) 0%, rgba(212, 175, 55, 0.43) 35%, transparent 65%);
  opacity: 1;
  animation: vineFloatLarge 25s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.faq-section::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: 3%;
  width: 380px;
  height: 500px;
  background-image: 
    /* Curved vine stems - more visible */
    radial-gradient(ellipse 9px 130px at 52% 100%, rgba(212, 175, 55, 0.71), rgba(212, 175, 55, 0.64) 30%, transparent 60%),
    radial-gradient(ellipse 10px 120px at 65% 80%, rgba(212, 175, 55, 0.72), rgba(212, 175, 55, 0.65) 30%, transparent 60%),
    radial-gradient(ellipse 8px 110px at 45% 60%, rgba(212, 175, 55, 0.69), rgba(212, 175, 55, 0.62) 30%, transparent 60%),
    radial-gradient(ellipse 9px 140px at 58% 40%, rgba(212, 175, 55, 0.70), rgba(212, 175, 55, 0.63) 30%, transparent 60%),
    /* Leaves hanging from vine - prominent */
    radial-gradient(ellipse 21px 35px at 50% 90%, rgba(212, 175, 55, 0.82) 0%, rgba(212, 175, 55, 0.74) 35%, transparent 65%),
    radial-gradient(ellipse 19px 33px at 70% 78%, rgba(212, 175, 55, 0.80) 0%, rgba(212, 175, 55, 0.72) 35%, transparent 65%),
    radial-gradient(ellipse 23px 37px at 30% 68%, rgba(212, 175, 55, 0.83) 0%, rgba(212, 175, 55, 0.75) 35%, transparent 65%),
    radial-gradient(ellipse 20px 34px at 60% 55%, rgba(212, 175, 55, 0.79) 0%, rgba(212, 175, 55, 0.71) 35%, transparent 65%),
    radial-gradient(ellipse 18px 32px at 45% 42%, rgba(212, 175, 55, 0.78) 0%, rgba(212, 175, 55, 0.70) 35%, transparent 65%),
    radial-gradient(ellipse 22px 36px at 75% 30%, rgba(212, 175, 55, 0.81) 0%, rgba(212, 175, 55, 0.73) 35%, transparent 65%),
    radial-gradient(ellipse 17px 31px at 38% 20%, rgba(212, 175, 55, 0.77) 0%, rgba(212, 175, 55, 0.69) 35%, transparent 65%),
    /* Smaller decorative leaves */
    radial-gradient(ellipse 15px 27px at 55% 85%, rgba(212, 175, 55, 0.75) 0%, rgba(212, 175, 55, 0.67) 35%, transparent 65%),
    radial-gradient(ellipse 16px 29px at 48% 60%, rgba(212, 175, 55, 0.76) 0%, rgba(212, 175, 55, 0.68) 35%, transparent 65%),
    radial-gradient(ellipse 14px 26px at 62% 12%, rgba(212, 175, 55, 0.74) 0%, rgba(212, 175, 55, 0.66) 35%, transparent 65%);
  opacity: 1;
  animation: goldFloat 20s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 1;
}

@keyframes vineFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(15px, -20px) rotate(2deg);
  }
  66% {
    transform: translate(-10px, -15px) rotate(-2deg);
  }
}

@keyframes goldFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(35px, -25px) rotate(2deg) scale(1.03);
  }
  50% {
    transform: translate(-30px, -30px) rotate(-2deg) scale(1.04);
  }
  75% {
    transform: translate(40px, -20px) rotate(3deg) scale(1.03);
  }
}

/* Additional vine decorations */
.faq-vine-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.vine-top-left {
  top: 5%;
  left: 2%;
  width: 260px;
  height: 320px;
  background-image: 
    /* Curved vine stem - more visible */
    radial-gradient(ellipse 8px 110px at 30% 10%, rgba(212, 175, 55, 0.74), rgba(212, 175, 55, 0.66) 30%, transparent 60%),
    radial-gradient(ellipse 9px 120px at 50% 35%, rgba(212, 175, 55, 0.75), rgba(212, 175, 55, 0.67) 30%, transparent 60%),
    radial-gradient(ellipse 8px 105px at 65% 60%, rgba(212, 175, 55, 0.73), rgba(212, 175, 55, 0.65) 30%, transparent 60%),
    radial-gradient(ellipse 9px 115px at 75% 82%, rgba(212, 175, 55, 0.74), rgba(212, 175, 55, 0.66) 30%, transparent 60%),
    /* Leaves hanging from vine - prominent */
    radial-gradient(ellipse 19px 33px at 25% 15%, rgba(212, 175, 55, 0.85) 0%, rgba(212, 175, 55, 0.77) 30%, transparent 60%),
    radial-gradient(ellipse 21px 35px at 40% 30%, rgba(212, 175, 55, 0.83) 0%, rgba(212, 175, 55, 0.75) 30%, transparent 60%),
    radial-gradient(ellipse 17px 31px at 55% 48%, rgba(212, 175, 55, 0.81) 0%, rgba(212, 175, 55, 0.73) 30%, transparent 60%),
    radial-gradient(ellipse 20px 34px at 68% 62%, rgba(212, 175, 55, 0.84) 0%, rgba(212, 175, 55, 0.76) 30%, transparent 60%),
    radial-gradient(ellipse 18px 32px at 78% 78%, rgba(212, 175, 55, 0.82) 0%, rgba(212, 175, 55, 0.74) 30%, transparent 60%),
    /* Small accent leaves */
    radial-gradient(ellipse 15px 27px at 32% 22%, rgba(212, 175, 55, 0.78) 0%, rgba(212, 175, 55, 0.70) 30%, transparent 60%),
    radial-gradient(ellipse 14px 26px at 62% 55%, rgba(212, 175, 55, 0.77) 0%, rgba(212, 175, 55, 0.69) 30%, transparent 60%),
    radial-gradient(ellipse 16px 29px at 48% 88%, rgba(212, 175, 55, 0.79) 0%, rgba(212, 175, 55, 0.71) 30%, transparent 60%);
  animation: goldFloat 30s ease-in-out infinite;
}

.vine-bottom-right {
  bottom: 6%;
  right: 2%;
  width: 280px;
  height: 350px;
  background-image: 
    /* Curved vine stem - more visible */
    radial-gradient(ellipse 9px 120px at 70% 90%, rgba(212, 175, 55, 0.75), rgba(212, 175, 55, 0.67) 30%, transparent 60%),
    radial-gradient(ellipse 8px 110px at 50% 65%, rgba(212, 175, 55, 0.73), rgba(212, 175, 55, 0.65) 30%, transparent 60%),
    radial-gradient(ellipse 9px 115px at 35% 40%, rgba(212, 175, 55, 0.74), rgba(212, 175, 55, 0.66) 30%, transparent 60%),
    radial-gradient(ellipse 8px 105px at 25% 18%, rgba(212, 175, 55, 0.72), rgba(212, 175, 55, 0.64) 30%, transparent 60%),
    /* Leaves hanging from vine - prominent */
    radial-gradient(ellipse 21px 35px at 75% 85%, rgba(212, 175, 55, 0.86) 0%, rgba(212, 175, 55, 0.78) 30%, transparent 60%),
    radial-gradient(ellipse 19px 33px at 60% 72%, rgba(212, 175, 55, 0.84) 0%, rgba(212, 175, 55, 0.76) 30%, transparent 60%),
    radial-gradient(ellipse 23px 37px at 45% 58%, rgba(212, 175, 55, 0.87) 0%, rgba(212, 175, 55, 0.79) 30%, transparent 60%),
    radial-gradient(ellipse 20px 34px at 32% 42%, rgba(212, 175, 55, 0.83) 0%, rgba(212, 175, 55, 0.75) 30%, transparent 60%),
    radial-gradient(ellipse 18px 32px at 22% 28%, rgba(212, 175, 55, 0.81) 0%, rgba(212, 175, 55, 0.73) 30%, transparent 60%),
    /* Small accent leaves */
    radial-gradient(ellipse 16px 29px at 68% 78%, rgba(212, 175, 55, 0.79) 0%, rgba(212, 175, 55, 0.71) 30%, transparent 60%),
    radial-gradient(ellipse 15px 27px at 38% 50%, rgba(212, 175, 55, 0.78) 0%, rgba(212, 175, 55, 0.70) 30%, transparent 60%),
    radial-gradient(ellipse 17px 31px at 52% 65%, rgba(212, 175, 55, 0.80) 0%, rgba(212, 175, 55, 0.72) 30%, transparent 60%),
    radial-gradient(ellipse 14px 26px at 58% 15%, rgba(212, 175, 55, 0.77) 0%, rgba(212, 175, 55, 0.69) 30%, transparent 60%);
  animation: goldFloat 35s ease-in-out infinite reverse;
}

.faq-section h1 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.faq-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(26, 77, 127, 0.2);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--secondary-color);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before,
.faq-question:hover::before {
  transform: scaleY(1);
}

.faq-question-text {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
  color: var(--primary-color);
}

.faq-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 1.75rem;
  font-weight: 300;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--secondary-color);
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease 0.1s;
}

.faq-item.active .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
  }
  
  .faq-question-text {
    font-size: 1rem;
  }
  
  .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
  background: #f8f9fa;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: 
    radial-gradient(circle at 60% 40%, rgba(212, 175, 55, 0.17) 0%, transparent 60%),
    radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.15) 0%, transparent 55%);
  border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
  animation: floatVine 26s ease-in-out infinite;
  pointer-events: none;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, transparent 65%);
  border-radius: 50%;
  animation: floatVine 21s ease-in-out infinite reverse;
  pointer-events: none;
}

.testimonials-section .container {
  overflow: hidden;
  position: relative;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-section h1 {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 50px;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.testimonials-wrapper {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 25px;
  width: 100%;
  max-width: 1200px;
}

.testimonials-wrapper::-webkit-scrollbar {
  height: 12px;
}

.testimonials-wrapper::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 6px;
  margin: 0 20px;
}

.testimonials-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
  border: 2px dotted var(--secondary-color);
}

.testimonials-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
  border: 2px dotted var(--primary-color);
}

.testimonials-grid {
  display: flex;
  gap: 30px;
  padding: 20px 10px;
  width: max-content;
  margin: 0 auto;
  justify-content: center;
}

/* Navigation Buttons */
.testimonial-nav-btn {
  display: none;
}

.testimonial-card {
  flex: 0 0 320px;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--primary-color);
  min-height: 280px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -5px;
  left: 20px;
  font-size: 4rem;
  line-height: 1;
  color: var(--secondary-color);
  opacity: 0.2;
  font-family: Georgia, serif;
  font-weight: bold;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--secondary-color);
}

.testimonial-content {
  flex: 1;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 3px solid var(--secondary-color);
  position: relative;
  z-index: 1;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 5px 0;
}

.author-title {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 767px) {
  .testimonials-section .container {
    padding: 0 60px;
  }
  
  .testimonial-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .testimonial-nav-btn.prev {
    left: 5px;
  }
  
  .testimonial-nav-btn.next {
    right: 5px;
  }
  
  .testimonial-card {
    flex: 0 0 300px;
    padding: 25px 20px;
  }
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 320px;
  }
}

/* ===================================
   Footer
   =================================== */
.site-footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 50px 0 0;
}

.footer-content {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.footer-consultation {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius);
}

.footer-consultation h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.footer-contact h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.footer-logo {
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--bg-light);
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
}

.contact-item a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-item a:hover {
  color: var(--bg-white);
  text-decoration: underline;
}

.contact-item.location p {
  margin-bottom: 0.35rem;
}

.footer-menu-wrapper {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px 0;
}

.footer-menu {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-menu a {
  color: var(--bg-light);
  font-size: 0.9rem;
}

.copyright {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--bg-light);
}

.disclaimer {
  margin-top: 10px;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ===================================
   Forms
   =================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--bg-light);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: var(--bg-white);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 77, 127, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button[type="submit"],
.submit-btn,
input[type="submit"],
.wpcf7-submit,
.wpcf7-form input[type="submit"] {
  background: var(--secondary-color) !important;
  color: var(--text-dark) !important;
  padding: 18px 50px !important;
  border: none !important;
  border-radius: var(--border-radius) !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all var(--transition-normal) !important;
  font-size: 1.25rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  display: inline-block !important;
  min-width: 200px !important;
}

button[type="submit"]:hover,
.submit-btn:hover,
input[type="submit"]:hover,
.wpcf7-submit:hover,
.wpcf7-form input[type="submit"]:hover {
  background: var(--primary-color) !important;
  color: var(--bg-white) !important;
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* ===================================
   Utility Classes
   =================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ===================================
   Loading Animation
   =================================== */
.loading {
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ===================================
   Accessibility
   =================================== */
.screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 8px;
  z-index: 100000;
}

.skip-link:focus {
  top: 0;
}

/* ===================================
   Print Styles
   =================================== */
@media print {
  .site-header,
  .site-footer,
  .menu-toggle,
  .btn-primary {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
}

/* ===================================
   Critical Display Fixes (High Priority)
   =================================== */
/* Force navigation menu to always show on desktop */
@media (min-width: 768px) {
  .main-navigation,
  .main-navigation .nav-container,
  .nav-menu,
  .nav-menu li,
  .nav-menu li a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .nav-menu {
    display: flex !important;
  }
  
  .nav-menu li {
    display: inline-block !important;
  }
}

/* ===================================
   Page Hero Banner (Inner Pages) - Simple Image Only
   =================================== */
.page-hero-banner-simple {
  position: relative;
  width: 100%!important;
  max-height: 400px;
  overflow: hidden;
  margin-bottom: 0;
  display: block!important;
  visibility: visible!important;
}

.page-hero-image-simple {
  width: 100%!important;
  height: 100%;
  display: block!important;
}

.page-hero-image-simple img {
  width: 100%!important;
  height: 400px!important;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
  display: block!important;
  visibility: visible!important;
}

/* Overlay text on inner pages */
.page-hero-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
  padding: 40px 30px 30px;
  z-index: 10;
}

.page-hero-overlay-text h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s ease;
}

/* Entry Header for Pages */
.page-main-content .entry-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--secondary-color);
}

.page-main-content .entry-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin: 0;
}

.page-main-content .entry-meta {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.page-main-content .entry-meta span {
  margin-right: 15px;
}

/* Page Content Wrapper */
.page-content-wrapper {
  padding: 60px 20px;
  background: white;
}

.page-layout {
  max-width: 900px;
  margin: 0 auto;
}

.page-main-content {
  background: white;
  animation: fadeInUp 0.6s ease;
}

/* Enhanced Entry Content Styling */
.page-main-content .entry-content {
  line-height: 1.8;
  color: var(--text-dark);
}

.page-main-content .entry-content > * {
  margin-bottom: 1.5rem;
}

.page-main-content .entry-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--secondary-color);
  position: relative;
}

.page-main-content .entry-content h2::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.page-main-content .entry-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.page-main-content .entry-content h4 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.page-main-content .entry-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.page-main-content .entry-content ul,
.page-main-content .entry-content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.page-main-content .entry-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  position: relative;
}

.page-main-content .entry-content ul li::marker {
  color: var(--secondary-color);
  font-size: 1.2em;
}

.page-main-content .entry-content blockquote {
  border-left: 4px solid var(--secondary-color);
  padding: 20px 30px;
  margin: 2rem 0;
  background: var(--bg-light);
  font-style: italic;
  color: var(--text-dark);
  border-radius: var(--border-radius);
}

.page-main-content .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin: 1.5rem 0;
}

.page-main-content .entry-content a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: var(--transition-fast);
}

.page-main-content .entry-content a:hover {
  color: var(--secondary-color);
}

/* Featured Content Boxes */
.page-main-content .entry-content .wp-block-column {
  padding: 25px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  transition: var(--transition-normal);
}

.page-main-content .entry-content .wp-block-column:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Page Links (Pagination) */
.page-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
  font-weight: 600;
}

.page-links a {
  display: inline-block;
  padding: 8px 15px;
  margin: 0 5px;
  background: var(--primary-color);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.page-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.page-links .current {
  display: inline-block;
  padding: 8px 15px;
  margin: 0 5px;
  background: var(--secondary-color);
  color: white;
  border-radius: 4px;
}

/* Entry Footer */
.entry-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--bg-light);
}

.entry-footer .edit-link a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-light);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition-fast);
}

.entry-footer .edit-link a:hover {
  background: var(--primary-color);
  color: white;
}

/* Comments Section Enhancement */
.comments-area {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 3px solid var(--secondary-color);
}

.comments-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment {
  background: var(--bg-light);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary-color);
}

/* Responsive Design for Page Hero */
@media (max-width: 768px) {
  .page-hero-image-simple img {
    height: 300px;
  }
  
  .page-main-content .entry-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .page-hero-overlay-text h1 {
    font-size: 1.8rem;
  }
  
  .page-content-wrapper {
    padding: 40px 15px;
  }
  
  .page-main-content .entry-content h2 {
    font-size: 1.5rem;
  }
  
  .page-main-content .entry-content h3 {
    font-size: 1.25rem;
  }
  
  .page-main-content .entry-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-hero-image-simple img {
    height: 250px;
  }
  
  .page-main-content .entry-title {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .page-hero-overlay-text h1 {
    font-size: 1.5rem;
  }
  
  .page-hero-overlay-text,
  .hero-overlay-text {
    padding: 30px 20px 20px;
  }
}

/* ===================================
   Blog Post Hero Enhancements
   =================================== */
.post-hero-banner .page-hero-content {
  padding: 100px 20px;
}

.post-meta-hero {
  font-size: 0.95rem;
  margin-top: 15px;
  opacity: 0.95;
  animation: fadeInUp 1s ease;
}

.post-meta-hero .separator {
  margin: 0 10px;
  opacity: 0.7;
}

.post-meta-hero .category {
  background: var(--secondary-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Post Navigation Styling */
.post-navigation {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 2px solid var(--bg-light);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.post-navigation a {
  flex: 1;
  padding: 20px 25px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.post-navigation a:hover {
  background: white;
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-navigation .meta-nav {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-navigation .post-title {
  display: block;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.post-navigation .nav-previous {
  text-align: left;
}

.post-navigation .nav-next {
  text-align: right;
}

/* Category and Tags in Footer */
.entry-footer .cat-links,
.entry-footer .tags-links {
  display: block;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.entry-footer .cat-links a,
.entry-footer .tags-links a {
  display: inline-block;
  padding: 6px 15px;
  margin: 5px 5px 5px 0;
  background: var(--bg-light);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 20px;
  transition: var(--transition-fast);
  font-weight: 500;
}

.entry-footer .cat-links a:hover,
.entry-footer .tags-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Post Navigation */
@media (max-width: 640px) {
  .post-navigation {
    flex-direction: column;
  }
  
  .post-navigation .nav-next {
    text-align: left;
  }
  
  .post-hero-banner .page-hero-content {
    padding: 70px 20px;
  }
  
  .post-meta-hero {
    font-size: 0.85rem;
  }
}

/* ===================================
   Contact Map Section
   =================================== */
.contact-map-section {
  padding: 80px 20px;
  background: white;
}

.contact-map-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
  font-weight: 700;
}

/* Office Maps Grid - 3 columns */
.office-maps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto 50px;
}

.office-map-item {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-map-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.office-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  background: var(--bg-light);
  padding: 15px 20px;
  margin: 0;
  font-weight: 600;
  border-bottom: 3px solid var(--secondary-color);
}

.office-map-item iframe {
  width: 100%;
  height: 250px;
  border: 0;
  display: block;
}

/* Contact Form Section - Full width below maps */
.contact-form-section {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.contact-form-section h3 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .office-maps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .office-map-item iframe {
    height: 300px;
  }
  
  .contact-form-section {
    padding: 30px 25px;
  }
}

@media (max-width: 640px) {
  .contact-map-section {
    padding: 60px 15px;
  }
  
  .contact-map-section .section-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }
  
  .office-title {
    font-size: 1.1rem;
    padding: 12px 15px;
  }
  
  .contact-form-section {
    padding: 25px 20px;
  }
  
  .contact-form-section h3 {
    font-size: 1.5rem;
  }
}

/* ===================================
   Modern Footer Design
   =================================== */
.site-footer {
  background: linear-gradient(135deg, #1a4d7f 0%, #0d2d4a 100%);
  color: white;
}

.footer-main {
  padding: 60px 20px 40px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-col h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

/* Footer About Column */
.footer-about .footer-logo img {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.footer-slogan {
  border-left: 4px solid var(--secondary-color);
  padding-left: 20px;
  margin: 0;
  font-style: italic;
  position: relative;
}

.footer-slogan p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Footer Links Column */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav li {
  margin-bottom: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav li:last-child {
  border-bottom: none;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  padding: 12px 0 12px 25px;
  position: relative;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--secondary-color);
  padding-left: 30px;
}

.footer-nav a:hover::before {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 10px var(--secondary-color);
}

/* Footer Contact Column */
.footer-contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact .contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.footer-contact .contact-item i {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-top: 3px;
}

.footer-contact .contact-item strong {
  display: block;
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.footer-contact .contact-item p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact .contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-contact .contact-item a:hover {
  color: var(--secondary-color);
}

/* Footer Social Column */
.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-icon svg {
  fill: currentColor;
}

.footer-global ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-global ul li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content p {
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-content .disclaimer {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    padding: 40px 20px 30px;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* ===================================
   Sticky Header Enhancement
   =================================== */
.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}