/* Sparkle Clean Jax - Modern Responsive CSS Framework */

/* CSS Variables */
:root {
  --primary-gold: #efb54b;
  --primary-blue: #0f70b7;
  --blue-gradient-start: #0e71bc;
  --blue-gradient-end: #122839;
  --gray-bg: #f6f6f6;
  --white: #ffffff;
  --dark-text: #333333;
  --light-text: #666666;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Blue Background Text Contrast Fix */
[style*="background: linear-gradient"][style*="blue"],
[style*="background-color: #0"],
[class*="blue-bg"],
.bg-blue,
.blue-background,
[style*="background: #0"],
[style*="background:#0"],
.primary-blue-bg,
.blue-gradient-bg {
  color: var(--white) !important;
}

[style*="background: linear-gradient"][style*="blue"] *,
[style*="background-color: #0"] *,
[class*="blue-bg"] *,
.bg-blue *,
.blue-background *,
[style*="background: #0"] *,
[style*="background:#0"] *,
.primary-blue-bg *,
.blue-gradient-bg * {
  color: var(--white) !important;
}

/* Ensure all elements with blue variable backgrounds have white text */
[style*="var(--primary-blue)"],
[style*="var(--blue-gradient-start)"],
[style*="var(--blue-gradient-end)"] {
  color: var(--white) !important;
}

[style*="var(--primary-blue)"] *,
[style*="var(--blue-gradient-start)"] *,
[style*="var(--blue-gradient-end)"] * {
  color: var(--white) !important;
}

/* White Background Text Contrast Fix - Use Gold Text */
[style*="background: white"],
[style*="background-color: white"],
[style*="background: #fff"],
[style*="background-color: #fff"],
[style*="background: #ffffff"],
[style*="background-color: #ffffff"],
[class*="white-bg"],
.bg-white,
.white-background {
  color: var(--primary-gold) !important;
}

[style*="background: white"] *,
[style*="background-color: white"] *,
[style*="background: #fff"] *,
[style*="background-color: #fff"] *,
[style*="background: #ffffff"] *,
[style*="background-color: #ffffff"] *,
[class*="white-bg"] *,
.bg-white *,
.white-background * {
  color: var(--primary-gold) !important;
}

/* Elements with white variable backgrounds should have gold text */
[style*="var(--white)"] {
  color: var(--primary-gold) !important;
}

[style*="var(--white)"] * {
  color: var(--primary-gold) !important;
}

/* White/Semi-transparent Background Elements - Use Dark Text */
[style*="rgba(255, 255, 255"],
[style*="background: white"],
[style*="background-color: white"],
[style*="background: #fff"],
[style*="background-color: #fff"],
[style*="background: #ffffff"],
[style*="background-color: #ffffff"],
.white-overlay,
.hero-image-overlay,
.header,
.contact-form input,
.stat-item {
  color: var(--dark-text) !important;
}

[style*="rgba(255, 255, 255"] *,
[style*="background: white"] *,
[style*="background-color: white"] *,
[style*="background: #fff"] *,
[style*="background-color: #fff"] *,
[style*="background: #ffffff"] *,
[style*="background-color: #ffffff"] *,
.white-overlay *,
.hero-image-overlay *,
.header *,
.contact-form input *,
.stat-item * {
  color: var(--dark-text) !important;
}

/* Additional white background fixes */
*[style*="rgba(255,255,255"],
*[class*="white"],
*[class*="light"] {
  color: var(--dark-text) !important;
}

*[style*="rgba(255,255,255"] *,
*[class*="white"] *,
*[class*="light"] * {
  color: var(--dark-text) !important;
}

/* Ultra-aggressive white background text fix */
div[style*="255, 255, 255"],
span[style*="255, 255, 255"],
p[style*="255, 255, 255"],
.hero-image *,
.hero-stats *,
.stat-item *,
.stat-number,
.stat-label {
  color: var(--dark-text) !important;
  text-shadow: none !important;
  -webkit-text-fill-color: var(--dark-text) !important;
}

/* Beautiful Gold Titles - Override all other styles */
h1:not(.hero-text h1), 
h2:not(.hero h2):not(.contact h2), 
h3:not(.hero h3):not(.contact h3),
.about h1, .about h2, .about h3,
.services h1, .services h2, .services h3,
.testimonials h1, .testimonials h2, .testimonials h3,
section:not(.hero):not(.contact) h1, 
section:not(.hero):not(.contact) h2, 
section:not(.hero):not(.contact) h3,
.section-title,
.about-title,
.service-title,
.text-booking {
  color: var(--primary-gold) !important;
  text-shadow: 0 2px 4px rgba(239, 181, 75, 0.3) !important;
  -webkit-text-fill-color: var(--primary-gold) !important;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Bootstrap Grid Enhancements */
.container {
  max-width: 1200px;
}

/* Responsive Utilities */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Mobile-First Responsive Design */
@media (max-width: 575.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary-gold) !important;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(239, 181, 75, 0.3);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-gold) !important;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(239, 181, 75, 0.2);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary-gold) !important;
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-sparkle {
  animation: sparkle 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-slide-in-top {
  animation: slideInFromTop 0.6s ease-out forwards;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 4rem 0;
}

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

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

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.8rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Mobile Call Button - Hide on large screens, show on mobile */
@media (min-width: 992px) {
  .mobile-call-btn {
    display: none;
  }
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
  list-style: none;
  color: var(--dark-text) !important;
}

.dropdown-menu * {
  color: var(--dark-text) !important;
}

/* Allow Bootstrap's JS-driven dropdowns to display (especially on mobile) */
.dropdown-menu.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  display: block;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: rgba(239, 181, 75, 0.1);
  color: var(--primary-gold);
}

.dropdown-menu a.active {
  background: rgba(239, 181, 75, 0.15);
  color: var(--primary-gold);
  font-weight: 600;
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
  /* Typography adjustments for mobile */
  h1 {
    font-size: 2rem !important;
  }
  
  h2 {
    font-size: 1.75rem !important;
  }
  
  h3 {
    font-size: 1.5rem !important;
  }
  
  /* Section padding adjustments */
  .section-padding {
    padding: 3rem 0;
  }
  
  /* Service cards mobile optimization */
  .service-card {
    margin-bottom: 1rem;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  /* About section mobile */
  .about-image-small {
    margin-top: 1rem;
  }
  
  /* Gallery mobile optimization */
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  /* Button adjustments */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 1.75rem !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .service-content {
    padding: 1rem;
  }
  
  .about-feature {
    margin-bottom: 1rem;
  }
}

.btn.btn-secondary {
  background: linear-gradient(135deg, var(--primary-gold), #f7d78b);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  font-size: 1.5rem;
  color: var(--dark-text);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-blue));
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 113, 188, 0.4);
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-secondary {
  background: var(--primary-gold);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: #d49a3d;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(239, 181, 75, 0.3);
}

/* Call Now Button Style */
.btn-call {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-call:hover {
  background: #0d5a94;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(15, 112, 183, 0.3);
}

/* Hero Section */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-gradient-start) 0%, var(--blue-gradient-end) 100%);
  padding: 2rem 0;
  position: relative;
  color: var(--white);
}

.hero * {
  color: var(--white) !important;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6,
.hero p,
.hero span,
.hero div {
  color: var(--white) !important;
}

.hero .highlight {
  color: var(--primary-gold) !important;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/pattern-overlay.png');
  opacity: 0.05;
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 113, 188, 0.1);
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-shape-1 {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(239, 181, 75, 0.15) 0%, rgba(239, 181, 75, 0) 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.hero-shape-2 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 0.5; }
}

/* Hero content now uses Bootstrap grid */
.hero-content {
  z-index: 2;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  animation: fadeInDown 1s ease-out;
}

.hero-text h1 {
  color: var(--white) !important;
  margin-bottom: 1rem;
  background: none;
  -webkit-text-fill-color: var(--white) !important;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.hero-text h1 .highlight {
  color: var(--primary-gold);
  position: relative;
  background: linear-gradient(to right, #efb54b, #f7d78b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-text h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #efb54b, #f7d78b);
  border-radius: 1px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.4;
}


/* Hero Features */
.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.hero-features .feature-item:hover {
  transform: translateY(-3px);
}

.hero-features .feature-item i {
  color: var(--primary-gold);
  font-size: 1rem;
  width: 28px;
  height: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.btn-phone {
  background: var(--primary-blue);
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  text-align: center;
  line-height: 1.4;
  padding: 1rem 1.5rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.6s;
  transform: skewX(-15deg);
}

.btn-phone:hover::before {
  transform: skewX(-15deg) translateX(200%);
}

.btn-phone:hover {
  background: #0d5a94;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: var(--white) !important;
}

.phone-number {
  font-size: 0.9rem;
  font-weight: 700;
}

.btn-phone i {
  color: var(--white) !important;
  margin-right: 5px;
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Elegant full portrait image (no crop) */
.hero-image img.portrait-full,
.portrait-full {
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center top;
  border-radius: 16px;
  background: #ffffff;
  padding: 8px;
  box-shadow: var(--shadow);
}

.hero-image-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  color: var(--dark-text) !important;
}

.hero-image-overlay * {
  color: var(--dark-text) !important;
}

/* Force all hero image overlay elements to be visible */
.hero-image-overlay .stat-item,
.hero-image-overlay .stat-number,
.hero-image-overlay .stat-label,
.hero-image-overlay div,
.hero-image-overlay span,
.hero-image-overlay p {
  color: var(--dark-text) !important;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold) !important;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--dark-text) !important;
  font-weight: 500;
}

/* Section Badges */
.section-badge {
  display: inline-block;
  background: rgba(14, 113, 188, 0.1);
  color: var(--primary-blue);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--gray-bg);
}

/* Services Grid - Now using Bootstrap grid */
.services-grid {
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
  color: var(--dark-text) !important;
}

.service-card * {
  color: var(--dark-text) !important;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 113, 188, 0.8), rgba(239, 181, 75, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white) !important;
}

.service-overlay * {
  color: var(--white) !important;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  backdrop-filter: blur(10px);
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.service-content p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-service {
  background: var(--primary-gold);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  align-self: flex-start;
}

.btn-service:hover {
  background: var(--primary-blue) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* About Section */
.about-section {
  background: var(--white);
  color: var(--dark-text) !important;
}

.about-section * {
  color: var(--dark-text) !important;
}

/* About content now uses Bootstrap grid */

.about-images {
  position: relative;
}

.about-image-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.about-image-overlay .about-cta {
  pointer-events: auto;
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-cta.compact-cta {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex !important;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(239, 181, 75, 0.3);
  min-width: auto;
  max-width: 200px;
  z-index: 100;
  visibility: visible;
  opacity: 1;
}

.about-cta.compact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.cta-icon-compact {
  position: relative;
  width: 36px;
  height: 36px;
  background: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #1a1a1a;
  flex-shrink: 0;
}

.cta-pulse {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  animation: pulse-compact 2s infinite;
  opacity: 0.6;
}

@keyframes pulse-compact {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.cta-text-compact {
  display: flex;
  flex-direction: column;
}

.cta-number {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
  white-space: nowrap;
}

.cta-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f7d78b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #1a1a1a;
  transition: all 0.4s ease;
  border: 2px solid rgba(239, 181, 75, 0.3);
  box-shadow: 0 4px 16px rgba(239, 181, 75, 0.3);
  z-index: 2;
  position: relative;
}

.cta-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 2s infinite;
  opacity: 0.6;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

.about-cta.elegant-cta {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
  color: #1a1a1a;
  padding: 1.2rem 1.8rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(239, 181, 75, 0.2);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  min-width: 280px;
  overflow: hidden;
}

.about-cta.elegant-cta:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.2),
    0 8px 30px rgba(239, 181, 75, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(239, 181, 75, 0.4);
}

.cta-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f7d78b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #1a1a1a;
  transition: all 0.4s ease;
  border: 2px solid rgba(239, 181, 75, 0.3);
  box-shadow: 0 4px 16px rgba(239, 181, 75, 0.3);
  z-index: 2;
  position: relative;
}

.cta-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 2s infinite;
  opacity: 0.6;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

.about-cta.elegant-cta:hover .cta-icon {
  background: linear-gradient(135deg, #f7d78b 0%, var(--primary-gold) 100%);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(239, 181, 75, 0.4);
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.cta-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
  opacity: 0.9;
}

.cta-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  opacity: 0.8;
}

.cta-arrow {
  width: 32px;
  height: 32px;
  background: rgba(239, 181, 75, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--primary-gold);
  transition: all 0.3s ease;
  border: 1px solid rgba(239, 181, 75, 0.2);
}

.about-cta.elegant-cta:hover .cta-arrow {
  background: var(--primary-gold);
  color: #1a1a1a;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(239, 181, 75, 0.3);
}

.about-image-small {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}

.about-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

/* About features now use Bootstrap grid */
.about-features {
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--light-text);
}

.about-feature i {
  color: var(--primary-blue);
  font-size: 1rem;
}

.btn-about {
  background: var(--primary-gold);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-about:hover {
  background: var(--primary-blue) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
  background: var(--gray-bg);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 0;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
  color: var(--dark-text) !important;
}

.testimonial-card * {
  color: var(--dark-text) !important;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.google-icon {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #4285f4;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonial-info h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  color: var(--dark-text);
}

.testimonial-date {
  font-size: 0.8rem;
  color: var(--light-text);
  margin-bottom: 0.25rem;
}

.stars {
  color: var(--primary-gold);
  font-size: 1rem;
}

.testimonial-text {
  padding: 1rem 1.5rem;
  font-style: italic;
  color: var(--light-text);
  line-height: 1.5;
}

.testimonial-footer {
  padding: 0 1.5rem 1.5rem;
}

.read-more {
  color: var(--primary-blue);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary-gold);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--primary-blue) !important;
  color: var(--white) !important;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary-gold);
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  background: var(--gray-bg);
  position: relative;
  overflow: hidden;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-text h2 {
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* Enhanced CTA Buttons */
.btn-cta-primary,
.btn-cta-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-width: 220px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-cta-primary {
  background: linear-gradient(135deg, 
    rgba(239, 181, 75, 0.95) 0%, 
    rgba(247, 215, 139, 0.95) 50%,
    rgba(239, 181, 75, 0.95) 100%);
  color: #1a1a1a;
  box-shadow: 
    0 12px 40px rgba(239, 181, 75, 0.3),
    0 4px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 249, 250, 0.95) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  color: #1a1a1a;
  border: 2px solid rgba(239, 181, 75, 0.2);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 2rem;
  width: 100%;
  z-index: 2;
  position: relative;
}

.btn-cta-primary .btn-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.1) 0%, rgba(26, 26, 26, 0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.4s ease;
  flex-shrink: 0;
  color: #1a1a1a;
  border: 1px solid rgba(26, 26, 26, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-cta-secondary .btn-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f7d78b 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.4s ease;
  flex-shrink: 0;
  color: #1a1a1a;
  border: 1px solid rgba(239, 181, 75, 0.3);
  box-shadow: 0 4px 12px rgba(239, 181, 75, 0.2);
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.btn-label {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.btn-subtitle {
  font-size: 0.9rem;
  opacity: 0.75;
  font-weight: 500;
  line-height: 1.2;
  color: #4a4a4a;
}

/* Hover Effects */
.btn-cta-primary:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 
    0 20px 60px rgba(239, 181, 75, 0.4),
    0 8px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.2),
    0 8px 30px rgba(239, 181, 75, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(239, 181, 75, 0.4);
}

.btn-cta-primary:hover .btn-icon {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.15) 0%, rgba(26, 26, 26, 0.08) 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary:hover .btn-icon {
  background: linear-gradient(135deg, #f7d78b 0%, var(--primary-gold) 100%);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 16px rgba(239, 181, 75, 0.3);
}

/* Shine Effect for Primary Button */
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4), 
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.4),
    transparent);
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  border-radius: 20px;
}

.btn-cta-primary:hover .btn-shine {
  left: 100%;
}

/* Pulse Effect for Secondary Button */
.btn-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, 
    rgba(239, 181, 75, 0.3) 0%, 
    rgba(239, 181, 75, 0.1) 50%,
    transparent 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.btn-cta-secondary:hover .btn-pulse {
  width: 400px;
  height: 400px;
}

/* Active States */
.btn-cta-primary:active,
.btn-cta-secondary:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-phone-cta {
  background: var(--primary-blue) !important;
  color: var(--white) !important;
  border: 2px solid var(--primary-blue);
  text-align: center;
  line-height: 1.2;
}

.btn-phone-cta:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.cta-image {
  position: relative;
}

.cta-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.cta-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(239, 181, 75, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
}

.element-1 {
  top: 20%;
  right: 10%;
  animation: float 3s ease-in-out infinite;
}

.element-2 {
  bottom: 30%;
  left: 15%;
  animation: float 4s ease-in-out infinite reverse;
}

.element-3 {
  top: 60%;
  right: 20%;
  animation: float 5s ease-in-out infinite;
}

.cta-reviews-badge {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.reviews-badge {
  background: var(--white);
  padding: 1rem 2rem;
  border-radius: 25px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--dark-text) !important;
}

.reviews-badge * {
  color: var(--dark-text) !important;
}

.reviews-icon {
  width: 40px;
  height: 40px;
  background: #4285f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.reviews-content {
  text-align: center;
}

.reviews-stars {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.reviews-text {
  font-size: 0.9rem;
  color: var(--light-text);
  font-weight: 500;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--blue-gradient-start), var(--blue-gradient-end));
  color: var(--white);
}

.contact * {
  color: var(--white) !important;
}

.contact h1,
.contact h2,
.contact h3,
.contact h4,
.contact h5,
.contact h6,
.contact p,
.contact span,
.contact div {
  color: var(--white) !important;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info h2 {
  color: var(--white);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(239, 181, 75, 0.3);
}

/* Features */
.features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-top: 0.25rem;
  min-width: 24px;
}

.feature-item h4 {
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.feature-item p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Service page specific styles */
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.service-card ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
}

.service-card ul li:last-child {
  border-bottom: none;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-text) 0%, #2c2c2c 100%);
  color: var(--white);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-blue), var(--primary-gold));
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  position: relative;
}

.footer-section h3 {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-gold);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 0;
  transition: var(--transition);
}

.footer-links li:hover {
  padding-left: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
  color: var(--primary-gold);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-gold), #f7d78b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(239, 181, 75, 0.3);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--primary-blue), #027bf3) !important;
  color: var(--white) !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(15, 112, 183, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.footer-bottom a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Contact Widget */
.contact-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  transition: all 0.3s ease;
}

.contact-widget-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #d4a853 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(239, 181, 75, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
  border: none;
  animation: pulse-shadow 3s infinite;
}

.contact-widget-trigger:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px rgba(239, 181, 75, 0.5);
  background: linear-gradient(135deg, #d4a853 0%, var(--primary-gold) 100%);
}

.contact-widget-trigger i {
  font-size: 18px;
}

@keyframes pulse-shadow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(239, 181, 75, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(239, 181, 75, 0.5);
  }
}

.contact-widget.show .contact-widget-trigger {
  display: none;
}

.contact-widget.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  bottom: auto;
  right: auto;
}

.contact-widget-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

.contact-widget.show .contact-widget-overlay {
  display: block;
}

.contact-widget-content {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 20px;
  max-width: 450px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.4s ease-out;
  z-index: 10001;
}

.contact-widget.show .contact-widget-content {
  display: block;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -30%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.contact-widget-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark-text);
  z-index: 1;
}

.contact-widget-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.contact-widget-header {
  text-align: center;
  padding: 1.5rem 1.5rem 1rem;
  background: linear-gradient(135deg, var(--primary-blue), #027bf3);
  border-radius: 20px 20px 0 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-widget-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.contact-widget-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  padding: 10px;
}

.contact-widget-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
}

.contact-widget-company-name {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--primary-gold) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.contact-widget-header h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: white !important;
}

.contact-widget-header p {
  opacity: 0.9;
  margin: 0;
  font-size: 0.95rem;
}

.contact-widget-body {
  padding: 1.5rem;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(239, 181, 75, 0.05);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.contact-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-option-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-option.phone .contact-option-icon {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.contact-option.email .contact-option-icon {
  background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.contact-option.facebook .contact-option-icon {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.contact-option.instagram .contact-option-icon {
  background: linear-gradient(135deg, #e4405f, #fd1d1d, #fccc63);
}

.contact-option-info {
  flex: 1;
}

.contact-option-label {
  display: block;
  font-weight: 600;
  color: var(--dark-text);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.contact-option-value {
  display: block;
  color: var(--light-text);
  font-size: 0.85rem;
}

.contact-widget-cta {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
  margin-top: 1rem;
}

.contact-widget-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #d4a853 100%);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 181, 75, 0.2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  font-size: 0.9rem;
}

.contact-widget-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.contact-widget-btn:hover::before {
  left: 100%;
}

.contact-widget-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(239, 181, 75, 0.4);
}

.contact-widget-guarantee {
  margin: 0.75rem 0 0;
  color: var(--light-text);
  font-size: 0.8rem;
  font-style: italic;
}

/* Additional Contact Widget Fixes */
.contact-widget {
  font-family: 'Inter', sans-serif;
}

.contact-widget-overlay {
  z-index: 10000;
}

.contact-widget-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(239, 181, 75, 0.3) transparent;
  font-family: inherit;
}

.contact-widget-content::-webkit-scrollbar {
  width: 6px;
}

.contact-widget-content::-webkit-scrollbar-track {
  background: transparent;
}

.contact-widget-content::-webkit-scrollbar-thumb {
  background: rgba(239, 181, 75, 0.3);
  border-radius: 3px;
}

.contact-widget-content::-webkit-scrollbar-thumb:hover {
  background: rgba(239, 181, 75, 0.5);
}

/* Ensure clickable elements are properly positioned */
.contact-option,
.contact-widget-btn {
  pointer-events: auto;
  text-decoration: none !important;
}

.contact-option:hover {
  text-decoration: none !important;
}

/* Fix any potential text color issues */
.contact-widget-content * {
  color: inherit;
}

.contact-widget-header h4,
.contact-widget-header p {
  color: white !important;
}

.contact-widget-company-name {
  color: var(--primary-gold) !important;
}

.contact-option-label,
.contact-option-value {
  color: #333 !important;
}

.contact-widget-btn {
  color: white !important;
}

.contact-widget-guarantee {
  color: #666 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-widget {
    bottom: 20px;
    right: 20px;
  }
  
  .contact-widget-trigger {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .contact-widget-trigger span {
    display: none;
  }
  
  .contact-widget-trigger i {
    font-size: 20px;
  }
  
  .contact-widget-content {
    max-width: 95%;
    margin: 1rem;
    max-height: 80vh;
  }
  
  .contact-widget-header,
  .contact-widget-body {
    padding: 1rem;
  }
  
  .contact-widget-icon {
    width: 70px;
    height: 70px;
    padding: 8px;
  }
  
  .contact-widget-company-name {
    font-size: 1.4rem;
  }
  
  .contact-widget-header h4 {
    font-size: 1.1rem;
  }
  
  .contact-options {
    gap: 0.5rem;
  }
  
  .contact-option {
    padding: 0.6rem;
  }
  
  .contact-widget-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .contact-widget-guarantee {
    font-size: 0.75rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  
  .hero {
    min-height: 65vh;
    padding: 1rem 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .hero-features {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-cta.compact-cta {
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
    gap: 10px;
    max-width: 180px;
  }
  
  .cta-icon-compact {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .cta-number {
    font-size: 13px;
  }
  
  .cta-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
  
  .cta-pulse-ring {
    width: 48px;
    height: 48px;
  }
  
  .cta-label {
    font-size: 0.9rem;
  }
  
  .cta-phone {
    font-size: 1rem;
  }
  
  .cta-subtitle {
    font-size: 0.8rem;
  }
  
  .cta-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .about-image-small {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 200px;
    margin-top: 1rem;
  }
  
  .cta-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    min-width: 100%;
    border-radius: 16px;
  }
  
  .btn-content {
    padding: 1.2rem 1.5rem;
    gap: 1rem;
  }
  
  .btn-cta-primary .btn-icon,
  .btn-cta-secondary .btn-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    border-radius: 12px;
  }
  
  .btn-label {
    font-size: 1.1rem;
  }
  
  .btn-subtitle {
    font-size: 0.85rem;
  }
  
  .btn-cta-primary:hover,
  .btn-cta-secondary:hover {
    transform: translateY(-3px) scale(1.01);
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-track {
    grid-template-columns: 1fr;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 55vh;
  }
  
  .hero-image img {
    height: 250px;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-features {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-features .feature-item {
    font-size: 0.85rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

/* Scroll Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease-out;
}

.animate-fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease-out;
}

.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.animate-fade-in-down {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.animate-fade-in-down.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced button hover effects */
.btn {
  position: relative;
  overflow: hidden;
}

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  100% { transform: translateX(100%) rotate(30deg); }
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Improved loading animation */
.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-bg);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.privacy-content h2 {
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--gray-bg);
    padding-bottom: 0.5rem;
}

.privacy-content h3 {
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.privacy-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.privacy-content .contact-info {
    background: var(--gray-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.privacy-content .contact-info p {
    margin-bottom: 0;
    font-weight: 500;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--white), var(--gray-bg));
    transition: var(--transition);
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--gray-bg), var(--white));
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--dark-text);
    line-height: 1.6;
}

/* Content Section Styles */
.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    margin-bottom: 1.5rem;
}

.content-section h3 {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

/* Hero Stats Styles */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 120px;
    }
}

/* Elegant Service Areas Section */
.service-areas-section.elegant-areas {
  background: linear-gradient(135deg, 
    rgba(248, 249, 250, 0.8) 0%, 
    rgba(255, 255, 255, 0.9) 50%,
    rgba(248, 249, 250, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.service-areas-section.elegant-areas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(239,181,75,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.areas-header {
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.areas-header h2 {
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

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

.service-areas-grid.elegant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.area-card.elegant-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.area-card.elegant-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(239, 181, 75, 0.05) 0%, 
    rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.area-card.elegant-card:hover::before {
  opacity: 1;
}

.area-card.elegant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: rgba(239, 181, 75, 0.3);
}

.area-card-inner {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.area-map-container {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.area-map {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
  transition: all 0.3s ease;
}

.area-card.elegant-card:hover .area-map {
  filter: grayscale(0%) contrast(1.2);
  transform: scale(1.05);
}

.map-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  pointer-events: none;
}

.map-overlay .area-icon-wrapper {
  margin-bottom: 0;
}

.map-overlay .area-icon {
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.area-content {
  padding: 1.5rem 2rem 2rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.area-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.area-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f7d78b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #1a1a1a;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(239, 181, 75, 0.3);
}

.area-icon.primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e88e5 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(15, 112, 183, 0.3);
}

.icon-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, var(--primary-gold), #f7d78b);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
  filter: blur(15px);
}

.area-icon.primary + .icon-glow {
  background: linear-gradient(135deg, var(--primary-blue), #1e88e5);
}

.area-card.elegant-card:hover .icon-glow {
  opacity: 0.3;
  transform: scale(1.2);
}

.area-card.elegant-card:hover .area-icon {
  transform: scale(1.1) rotate(5deg);
}

.area-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.area-content p {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.area-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e88e5 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

/* Mobile Responsiveness for Service Areas */
@media (max-width: 768px) {
  .service-areas-grid.elegant-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .area-card-inner {
    padding: 0;
  }
  
  .area-map-container {
    height: 150px;
  }
  
  .map-overlay {
    top: 10px;
    right: 10px;
  }
  
  .map-overlay .area-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .area-content {
    padding: 1rem 1.5rem 1.5rem;
  }
  
  .area-content h3 {
    font-size: 1.2rem;
  }
  
  .areas-header {
    margin-bottom: 3rem;
  }
}

/* Elegant FAQ Section */
.faq-section.elegant-faq {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(248, 249, 250, 0.95) 100%);
  position: relative;
}

.faq-section.elegant-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(15,112,183,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-dots)"/></svg>');
  opacity: 0.4;
}

.faq-header {
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.faq-header h2 {
  margin-bottom: 1.5rem;
  color: var(--dark-text);
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e88e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-header p {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

.faq-container.elegant-accordion {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item.elegant-item {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.95) 0%, 
    rgba(20, 20, 20, 0.98) 100%);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(239, 181, 75, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.faq-item.elegant-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(239, 181, 75, 0.1) 0%, 
    rgba(255, 215, 0, 0.05) 50%,
    rgba(239, 181, 75, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.faq-item.elegant-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(239, 181, 75, 0.6);
}

.faq-item.elegant-item:hover::before {
  opacity: 1;
}

.faq-item.elegant-item.active {
  border-color: rgba(239, 181, 75, 0.8);
  box-shadow: 0 12px 40px rgba(239, 181, 75, 0.2);
}

.faq-item.elegant-item.active::before {
  opacity: 0.7;
}

.faq-question {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}

.faq-question:hover {
  background: rgba(239, 181, 75, 0.1);
}

.faq-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(239, 181, 75, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%);
  border: 2px solid rgba(239, 181, 75, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 181, 75, 0.2);
}

.faq-item.elegant-item:hover .faq-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--primary-gold) 0%, #ffd700 100%);
  color: #1a1a1a;
  border-color: var(--primary-gold);
  box-shadow: 0 6px 20px rgba(239, 181, 75, 0.4);
}

.faq-text {
  flex: 1;
}

.faq-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-gold);
  line-height: 1.4;
  margin: 0;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-item.elegant-item:hover .faq-text h3 {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.faq-toggle {
  width: 40px;
  height: 40px;
  background: rgba(239, 181, 75, 0.2);
  border: 1px solid rgba(239, 181, 75, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-gold);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.elegant-item.active .faq-toggle {
  background: var(--primary-gold);
  color: #1a1a1a;
  border-color: var(--primary-gold);
  transform: rotate(45deg);
}

.faq-item.elegant-item:hover .faq-toggle {
  background: rgba(239, 181, 75, 0.3);
  border-color: rgba(239, 181, 75, 0.6);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.elegant-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-content {
  padding: 0 2rem 2rem;
  padding-left: 5.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease 0.1s;
  position: relative;
  z-index: 2;
}

.faq-item.elegant-item.active .faq-answer-content {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer-content p {
  color: rgba(51, 51, 51, 0.9);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
  text-shadow: none;
}

.faq-answer-content strong {
  color: var(--primary-gold);
  font-weight: 600;
  text-shadow: 0 0 5px rgba(239, 181, 75, 0.3);
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
  .faq-question {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .faq-text h3 {
    font-size: 1.1rem;
  }
  
  .faq-toggle {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    padding-left: 3.5rem;
  }
  
  .faq-header {
    margin-bottom: 3rem;
  }
}
