/*
Theme Name: KS Detailing DFW Pro
Theme URI: https://ksdetailingdfw.com
Author: KS Detailing DFW
Author URI: https://ksdetailingdfw.com
Description: A premium custom theme for KS Detailing DFW, a mobile car detailing business serving the Dallas-Fort Worth area.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ks-detailing-dfw
Tags: mobile-detailing, car-detailing, dallas, fort-worth, dfw, responsive, mobile-first
*/

:root {
  --primary-red: #dc2626;
  --secondary-red: #ef4444;
  --light-red: #f87171;
  --pale-red: #fca5a5;
  --pure-white: #ffffff;
  --off-white: #f8fafc;
  --light-gray: #f1f5f9;
  --dark-text: #1f2937;
  --medium-text: #374151;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

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

html {
  /* scroll-behavior: smooth; */
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  background-color: var(--pure-white);
  line-height: 1.6;
  font-size: 16px;
  padding-top: 0;
}

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.btn-primary {
  background-color: var(--primary-red);
  color: var(--pure-white);
}

.btn-primary:hover {
  background-color: var(--secondary-red);
  color: var(--pure-white);
}

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

.btn-secondary:hover {
  background-color: var(--off-white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

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

/* Card Styles */
.card {
  background-color: var(--pure-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

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

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--medium-text);
  margin-bottom: 1.5rem;
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col {
  padding: 0 1rem;
  margin-bottom: 2rem;
  width: 100%;
}

/* Responsive Grid */
@media (min-width: 576px) {
  .col-sm-6 {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    width: 33.333333%;
  }
  .col-md-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
}

/* Header Styles */
.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 90px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  transform: translateZ(0);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Main header container */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 2rem;
  padding: 0 1rem;
}

/* Logo/Branding - Left section */
.site-branding {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 50px;
}

.custom-logo {
  max-height: 50px;
  width: auto;
  display: block;
}

.site-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.site-title a {
  color: var(--dark-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-title a:hover {
  color: var(--primary-red);
}

/* Main Navigation - Center section */
.main-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 auto;
  padding: 0 1rem;
}

/* Navigation menu */
.main-navigation .menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem;
}

.main-navigation .menu-item {
  margin: 0;
  padding: 0;
}

.main-navigation .menu-item a {
  color: var(--dark-text);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  position: relative;
}

.main-navigation .menu-item a:hover {
  color: var(--primary-red);
  background-color: rgba(var(--primary-red-rgb), 0.05);
}

.main-navigation .menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-navigation .menu-item a:hover::after {
  width: 80%;
}

/* Header Actions - Right section */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 0 0 auto;
}

.header-phone {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--dark-text);
  white-space: nowrap;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

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

.header-phone i {
  margin-right: 0.5rem;
  color: var(--primary-red);
  font-size: 1rem;
}

.header-phone .phone-text {
  margin-right: 0.25rem;
}

.header-phone .phone-number {
  font-weight: 700;
}

.header-social {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.25rem;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.header-social:hover {
  background-color: rgba(var(--primary-red-rgb), 0.1);
  transform: translateY(-1px);
}

.header-cta {
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(var(--primary-red-rgb), 0.2);
  margin-right: 0.5rem;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-red-rgb), 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-text);
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background-color: rgba(var(--primary-red-rgb), 0.05);
  color: var(--primary-red);
}

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--pure-white);
  z-index: 1001;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-header {
  position: relative;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.close-menu {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-text);
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.close-menu:hover {
  background-color: rgba(var(--primary-red-rgb), 0.05);
  color: var(--primary-red);
}

.mobile-nav-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  margin-bottom: 0;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark-text);
  text-decoration: none;
  border-bottom: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--primary-red);
  padding-left: 0.5rem;
}

.mobile-nav-links a i {
  color: var(--primary-red);
  font-size: 1.25rem;
  width: 1.5rem;
  text-align: center;
}

.mobile-nav-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: rgba(var(--primary-red-rgb), 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(var(--primary-red-rgb), 0.1);
}

.mobile-phone, .mobile-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  padding: 0.75rem;
  text-decoration: none;
  color: var(--dark-text);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  background-color: var(--pure-white);
}

.mobile-phone:hover, .mobile-social:hover {
  background-color: rgba(var(--primary-red-rgb), 0.1);
  color: var(--primary-red);
  transform: translateY(-1px);
}

.mobile-phone i, .mobile-social i {
  color: var(--primary-red);
  font-size: 1.25rem;
  width: 1.5rem;
  text-align: center;
}

.mobile-nav-cta {
  margin-top: 0.5rem;
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(var(--primary-red-rgb), 0.2);
}

.mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-red-rgb), 0.3);
}

.mobile-cta i {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .header-phone .phone-text {
    display: none;
  }
  
  .header-phone i {
    font-size: 1.25rem;
    margin-right: 0;
  }
  
  .header-actions {
    gap: 1rem;
  }
}

@media (max-width: 991px) {
  .main-navigation {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .header-actions {
    gap: 0.75rem;
  }
}

@media (max-width: 767px) {
  .header-container {
    gap: 1rem;
  }
}

@media (max-width: 575px) {
  .header-phone {
    display: none;
  }
  
  .header-social {
    display: none;
  }
  
  .site-branding {
    flex: 1;
  }
  
  .site-title {
    font-size: 1.25rem;
  }
}

/* Global Styles */
html {
    /* scroll-behavior: smooth; */
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  width: 100%;
  z-index: 3;
  padding: 0;
  margin-top: 0;
}

.hero-text-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.brand-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--pure-white);
  margin-bottom: 2.5rem;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  align-items: center;
}

.hero-secondary-link {
  margin-top: 0.5rem;
}

.link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pure-white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.link-secondary:hover {
  opacity: 1;
  border-bottom-color: var(--pure-white);
  transform: translateY(-1px);
}

.link-secondary i {
  font-size: 0.9rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-red-rgb), 0.3);
}

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

.btn-secondary:hover {
  background: var(--pure-white);
  color: var(--dark-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.trust-badges {
  margin-top: 2rem;
}

.badge-wrapper {
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  border-radius: var(--border-radius);
  max-width: fit-content;
  margin: 0 auto;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--pure-white);
  font-size: 1rem;
}

.badge i {
  font-size: 1.25rem;
  color: var(--primary-red);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.scroll-arrow {
  color: var(--pure-white);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  opacity: 0.8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-height: 700px) {
  .hero-content {
    margin-top: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-cta {
    margin-bottom: 2rem;
  }
  
  .badge-wrapper {
    padding: 1rem;
  }
  
  .scroll-indicator {
    bottom: 1rem;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .badge-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .badge-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .badge {
    font-size: 0.875rem;
    gap: 0.5rem;
  }
  
  .badge i {
    font-size: 1rem;
  }
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  color: var(--medium-text);
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-text h3 {
  color: var(--dark-text);
  margin: 2rem 0 1.5rem;
  font-size: 1.75rem;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-text li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
}

.about-text li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background-color: var(--primary-red);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-image-rounded {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.trust-stat {
  padding: 1.5rem;
  background: var(--pure-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--medium-text);
  font-weight: 500;
}

@media (max-width: 991px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .trust-stats {
    grid-template-columns: 1fr;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }
}

/* Services Preview Section */
.service-card {
  background: var(--pure-white);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(220,38,38,0.1) 0%, rgba(239,68,68,0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

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

.service-icon i {
  font-size: 2rem;
  color: var(--primary-red);
}

.service-title {
  font-size: 1.5rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-description {
  color: var(--medium-text);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-benefits {
  margin: 1.5rem 0;
  text-align: left;
}

.benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--medium-text);
  margin-bottom: 0.75rem;
}

.benefit-tag i {
  color: var(--primary-red);
  font-size: 0.9rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-text);
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-from {
  font-size: 1rem;
  color: var(--medium-text);
  font-weight: 400;
}

.service-cta {
  margin-top: auto;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--pure-white);
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

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

.btn-service i {
  transition: transform 0.3s ease;
}

.btn-service:hover i {
  transform: translateX(5px);
}

.popular-tag {
  position: absolute;
  top: 1.5rem;
  right: -2rem;
  background: var(--primary-red);
  color: var(--pure-white);
  padding: 0.5rem 3rem;
  font-size: 0.9rem;
  font-weight: 600;
  transform: rotate(45deg);
  z-index: 1;
}

@media (max-width: 991px) {
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
  }
  
  .service-icon i {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .service-title {
    font-size: 1.35rem;
  }
  
  .service-description {
    font-size: 1rem;
  }
  
  .service-price {
    font-size: 1.75rem;
  }
}

/* Why Choose Us Section */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.feature {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-red);
  margin-right: 1rem;
}

/* Gallery Section */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 250px;
}

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

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--pure-white);
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* Testimonials Section */
.testimonial {
  text-align: center;
  padding: 2rem;
  background-color: var(--pure-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
}

.testimonials-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8B0000 0%, #2C1810 50%, #1A1A1A 100%);
    color: var(--pure-white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    color: var(--pure-white);
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
}

.cta-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: left 0.5s ease;
}

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

.cta-btn-primary {
    background: var(--primary-red);
    color: var(--pure-white);
    border: 2px solid var(--primary-red);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
    background: #a00000;
}

.cta-btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: scale(1.1);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.cta-guarantee i {
    color: #4caf50;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 1.25rem 2rem;
    }
    
    .cta-guarantee {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-option {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(145deg, var(--pure-white) 0%, var(--off-white) 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.2);
}

.contact-option:hover::before {
  transform: scaleX(1);
}

.contact-option-header {
  margin-bottom: 2rem;
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.contact-option:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
}

.contact-icon i {
  font-size: 2.5rem;
  color: var(--pure-white);
  transition: all 0.3s ease;
}

.contact-option:hover .contact-icon i {
  transform: scale(1.1);
}

.contact-option h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.contact-option:hover h2 {
  color: var(--primary-red);
}

.contact-number,
.contact-instagram {
  margin-bottom: 1.5rem;
}

.contact-number a,
.contact-instagram a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-red);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.contact-number a::after,
.contact-instagram a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  transition: width 0.3s ease;
}

.contact-number a:hover::after,
.contact-instagram a:hover::after {
  width: 100%;
}

.contact-option p {
  color: var(--medium-text);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-buttons .btn {
  padding: 1rem 1.5rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
}

.contact-buttons .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: left 0.5s ease;
}

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

.contact-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  color: var(--pure-white);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.contact-buttons .btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-red) 0%, var(--light-red) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.contact-buttons .btn-secondary {
  background: var(--pure-white);
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.1);
}

.contact-buttons .btn-secondary:hover {
  background: var(--primary-red);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.contact-buttons .btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.contact-buttons .btn:hover i {
  transform: scale(1.1);
}

/* Instagram specific enhancements */
.contact-option .contact-instagram a {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.contact-option .contact-instagram a::after {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Business info cards enhancement */
.business-info-card {
  background: linear-gradient(145deg, var(--pure-white) 0%, var(--off-white) 100%);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.business-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.business-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.2);
}

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

.business-info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.business-info-card:hover h3 {
  color: var(--primary-red);
}

.business-info-card h3 i {
  font-size: 1.5rem;
  color: var(--primary-red);
  transition: all 0.3s ease;
}

.business-info-card:hover h3 i {
  transform: scale(1.1);
}

.business-info-card p {
  color: var(--medium-text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Instagram feed section enhancement */
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-red);
  text-decoration: none;
  padding: 1rem 2rem;
  background: linear-gradient(145deg, var(--pure-white) 0%, var(--off-white) 100%);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.instagram-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.3);
}

.instagram-link i {
  font-size: 1.5rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

.instagram-link:hover i {
  transform: scale(1.1);
}

/* Service area content enhancement */
.service-area-content {
  background: linear-gradient(145deg, var(--pure-white) 0%, var(--off-white) 100%);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.1);
  height: 100%;
}

.cities-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.cities-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cities-columns li {
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  background: var(--pure-white);
  border-radius: 8px;
  border-left: 3px solid var(--primary-red);
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 500;
}

.cities-columns li:hover {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-option {
    padding: 2rem 1.5rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-icon i {
    font-size: 2rem;
  }
  
  .cities-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .business-info-card {
    padding: 2rem;
  }
  
  .service-area-content {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .contact-buttons .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .contact-option h2 {
    font-size: 1.25rem;
  }
  
  .contact-number a,
  .contact-instagram a {
    font-size: 1.1rem;
  }
}

/* Footer Styles */
.site-footer {
  background-color: var(--dark-text);
  color: var(--light-gray);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-title {
  color: var(--pure-white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-item {
  margin-bottom: 0.75rem;
}

.footer-menu-item a {
  color: var(--light-gray);
}

.footer-menu-item a:hover {
  color: var(--primary-red);
}

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

.footer-contact-icon {
  margin-right: 0.75rem;
  color: var(--primary-red);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--pure-white);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-red);
  color: var(--pure-white);
}

/* Before/After Comparison */
.comparison-slider {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.comparison-before,
.comparison-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.comparison-before img,
.comparison-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  z-index: 1;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.comparison-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: var(--pure-white);
  transform: translateX(-50%);
  z-index: 3;
  cursor: ew-resize;
}

.comparison-handle:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.comparison-handle:after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-red);
  font-size: 1.25rem;
  font-weight: bold;
}

/* Pricing Table */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-plan {
  background: linear-gradient(145deg, var(--pure-white) 0%, var(--off-white) 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
}

.pricing-plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.2);
}

.pricing-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: var(--pure-white);
  padding: 3rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.pricing-plan:nth-child(2) .pricing-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.pricing-plan:nth-child(3) .pricing-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.pricing-plan:nth-child(4) .pricing-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.pricing-title {
  color: var(--pure-white);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-duration {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

.pricing-body {
  padding: 2.5rem 2rem;
  background: var(--pure-white);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pricing-feature {
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: flex-start;
  text-align: left;
  transition: all 0.3s ease;
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature:hover {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, rgba(239, 68, 68, 0.02) 100%);
  padding-left: 0.5rem;
  border-radius: 8px;
}

.pricing-feature i {
  color: var(--primary-red);
  margin-right: 1rem;
  margin-top: 0.25rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-feature strong {
  color: var(--dark-text);
  font-weight: 700;
}

.pricing-body p {
  color: var(--medium-text);
  font-style: italic;
  text-align: center;
  margin: 0;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
  border-radius: 8px;
}

.pricing-footer {
  padding: 0 2rem 2.5rem;
  text-align: center;
  background: var(--pure-white);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  color: var(--pure-white);
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 20px 0 20px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  z-index: 1;
}

/* Enhanced Add-On Services */
.add-on-card {
  background: linear-gradient(145deg, var(--pure-white) 0%, var(--off-white) 100%);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.add-on-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.add-on-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.2);
}

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

.add-on-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  transition: all 0.4s ease;
}

.add-on-card:hover .add-on-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.add-on-icon i {
  font-size: 1.25rem;
  color: var(--pure-white);
  transition: all 0.3s ease;
}

.add-on-card:hover .add-on-icon i {
  transform: scale(1.1);
}

.add-on-content {
  text-align: center;
}

.add-on-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.add-on-card:hover .add-on-content h3 {
  color: var(--primary-red);
}

.add-on-content p {
  color: var(--medium-text);
  line-height: 1.4;
  margin-bottom: 1rem;
  text-align: left;
  font-size: 0.9rem;
}

.add-on-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-red);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
}

.add-on-card:hover .add-on-price {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(239, 68, 68, 0.15) 100%);
  transform: scale(1.05);
}

/* Enhanced Info Cards */
.info-card {
  background: linear-gradient(145deg, var(--pure-white) 0%, var(--off-white) 100%);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.2);
}

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

.info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.info-card:hover h3 {
  color: var(--primary-red);
}

.info-card h3 i {
  font-size: 1.5rem;
  color: var(--primary-red);
  transition: all 0.3s ease;
}

.info-card:hover h3 i {
  transform: scale(1.1);
}

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

/* Enhanced Pricing Note */
.pricing-note {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.1);
  margin-top: 3rem;
}

.pricing-note p {
  color: var(--medium-text);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.pricing-note p:last-child {
  margin-bottom: 0;
}

/* Enhanced Button Styles for Pricing */
.pricing-footer .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 160px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pricing-footer .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: left 0.5s ease;
}

.pricing-footer .btn:hover::before {
  left: 100%;
}

.pricing-footer .btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  color: var(--pure-white);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.pricing-footer .btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-red) 0%, var(--light-red) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  color: var(--pure-white);
}

.pricing-footer .btn-secondary {
  background: var(--pure-white);
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.1);
}

.pricing-footer .btn-secondary:hover {
  background: var(--primary-red);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.pricing-footer .btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.pricing-footer .btn:hover i {
  transform: scale(1.1);
}

/* Enhanced CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: var(--pure-white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

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

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  text-align: center;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 180px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cta-buttons .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: left 0.5s ease;
}

.cta-buttons .btn:hover::before {
  left: 100%;
}

.cta-buttons .btn-secondary {
  background: var(--pure-white);
  color: var(--dark-text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn-secondary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--dark-text);
}

.cta-buttons .btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.cta-buttons .btn:hover i {
  transform: scale(1.1);
}

/* Responsive adjustments for pricing */
@media (max-width: 991px) {
  .pricing-table {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .pricing-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .pricing-body {
    padding: 2rem 1.5rem;
  }
  
  .pricing-footer {
    padding: 0 1.5rem 2rem;
  }
  
  .add-on-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .info-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .pricing-table {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-price {
    font-size: 2.5rem;
  }
  
  .pricing-title {
    font-size: 1.25rem;
  }
  
  .add-on-icon {
    width: 45px;
    height: 45px;
  }
  
  .add-on-icon i {
    font-size: 1.1rem;
  }
  
  .add-on-content h3 {
    font-size: 0.95rem;
  }
  
  .add-on-content p {
    font-size: 0.85rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .pricing-header {
    padding: 1.5rem 1rem 1rem;
  }
  
  .pricing-body {
    padding: 1.5rem 1rem;
  }
  
  .pricing-footer {
    padding: 0 1rem 1.5rem;
  }
  
  .pricing-feature {
    padding: 0.75rem 0;
  }
  
  .add-on-card {
    padding: 1rem;
  }
  
  .add-on-icon {
    width: 40px;
    height: 40px;
  }
  
  .add-on-icon i {
    font-size: 1rem;
  }
  
  .add-on-content h3 {
    font-size: 0.9rem;
  }
  
  .add-on-content p {
    font-size: 0.8rem;
  }
  
  .add-on-price {
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-buttons .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* 404 Page */
.error-404 {
  text-align: center;
  padding: 6rem 0;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: 2rem;
}

.error-message {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.error-description {
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .about-text, .about-image {
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 1rem;
  }
  
  .comparison-slider {
    height: 300px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title h2:after {
    width: 60px;
  }
  
  .comparison-slider {
    height: 250px;
  }
  
  .error-code {
    font-size: 6rem;
  }
  
  .error-message {
    font-size: 1.5rem;
  }
}

/* Logo size */
.custom-logo {
    max-height: 50px;
    height: auto;
    width: auto;
}

/* Align logo on left, add spacing */
.site-branding {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    margin-right: 20px;
}

.main-navigation .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem; /* space between items */
}

.main-navigation .menu li {
    list-style: none; /* make extra sure no bullets */
}

.main-navigation .menu li a {
    color: var(--primary-red);
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
}

.main-navigation .menu li a:hover {
    color: var(--secondary-red);
}

.works-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.works-gallery-item {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.works-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.works-gallery-caption {
  padding: 1rem 0.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--primary-red);
  font-size: 1.05rem;
  background: #f8fafc;
  width: 100%;
}

/* Social Proof Section */
.social-proof {
  padding: 6rem 0;
  background: var(--pure-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial {
  background: var(--pure-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.testimonial-rating {
  color: var(--primary-red);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-text);
  text-align: right;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--primary-red);
  transition: gap 0.3s ease;
}

.cta-link:hover {
  gap: 1rem;
}

.cta-link i {
  transition: transform 0.3s ease;
}

.cta-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial {
    padding: 1.5rem;
  }
}

/* Contact Form */
.contact-form {
  background: linear-gradient(145deg, var(--pure-white) 0%, var(--off-white) 100%);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form:hover {
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.2);
}

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

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

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--pure-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  transform: translateY(-1px);
}

/* Service Area Section */
.service-area-map {
  position: relative;
  margin: 3rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  background: var(--pure-white);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-area-map:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.2);
}

.service-area-map img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.service-area-map:hover img {
  transform: scale(1.02);
}

.service-regions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.region-card {
  background: linear-gradient(145deg, var(--pure-white) 0%, var(--off-white) 100%);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(220, 38, 38, 0.1);
  position: relative;
  overflow: hidden;
}

.region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.region-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.2);
}

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

.region-title {
  color: var(--primary-red);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.3s ease;
}

.region-card:hover .region-title {
  color: var(--secondary-red);
}

.region-title i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.region-card:hover .region-title i {
  transform: scale(1.1);
}

.region-cities {
  columns: 2;
  column-gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.region-cities li {
  margin-bottom: 0.75rem;
  break-inside: avoid;
  color: var(--medium-text);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-weight: 500;
}

.region-cities li:hover {
  color: var(--primary-red);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
  transform: translateX(3px);
}

.region-cities li i {
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  color: var(--primary-red);
}

.region-cities li:hover i {
  opacity: 1;
  transform: translateX(0);
}

.coverage-note {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(220,38,38,0.08) 0%, rgba(239,68,68,0.08) 100%);
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.1);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.coverage-note:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.2);
}

.coverage-note p {
  margin: 0;
  color: var(--medium-text);
  font-size: 1.1rem;
  line-height: 1.6;
}

.coverage-note strong {
  color: var(--primary-red);
  font-weight: 700;
}

@media (max-width: 768px) {
  .region-cities {
    columns: 1;
  }
  
  .region-card {
    padding: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .service-area-map {
    margin: 2rem 0;
  }
}

@media (max-width: 576px) {
  .contact-buttons .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .contact-option h2 {
    font-size: 1.25rem;
  }
  
  .contact-number a,
  .contact-instagram a {
    font-size: 1.1rem;
  }
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.form-trust-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.1);
  text-align: center;
  justify-content: center;
}

.form-trust-note i {
  font-size: 1.25rem;
  color: var(--primary-red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.form-trust-note p {
  margin: 0;
  font-weight: 600;
  color: var(--dark-text);
  font-size: 1rem;
}

/* Service Area Section Enhancements */
.service-area-section {
  padding: 3rem 0;
}

.service-area-section .section-title {
  margin-bottom: 2rem;
}

.service-area-section .section-title p {
  font-size: 1.1rem;
  color: var(--medium-text);
  margin-top: 0.5rem;
}

.service-area-intro {
  margin-bottom: 2rem;
}

.service-area-intro h3 {
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-area-intro h3::before {
  content: '';
  width: 3px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  border-radius: 2px;
}

.service-area-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--medium-text);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.cities-column h4 {
  color: var(--primary-red);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(220, 38, 38, 0.2);
  position: relative;
}

.cities-column h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
}

.cities-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cities-column li {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  background: var(--pure-white);
  border-radius: 8px;
  border-left: 3px solid var(--primary-red);
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 500;
}

.cities-column li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
  transition: left 0.3s ease;
}

.cities-column li:hover {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.cities-column li:hover::before {
  left: 100%;
}

/* Enhanced Map Styling */
.map-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  background: var(--pure-white);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.2);
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.map-container:hover img {
  transform: scale(1.02);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container:hover .map-overlay {
  opacity: 1;
}

.coverage-indicator {
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--primary-red);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.map-container:hover .coverage-indicator {
  transform: translateY(0);
}

.coverage-indicator i {
  font-size: 1.25rem;
  animation: pulse 2s infinite;
}

/* Enhanced Coverage Note */
.coverage-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(239, 68, 68, 0.08) 100%);
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.15);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.08);
  transition: all 0.3s ease;
}

.coverage-note:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.25);
}

.coverage-note i {
  font-size: 1.5rem;
  color: var(--primary-red);
  flex-shrink: 0;
}

.coverage-note p {
  margin: 0;
  color: var(--dark-text);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.coverage-note strong {
  color: var(--primary-red);
  font-weight: 700;
}

/* Responsive adjustments for service area */
@media (max-width: 991px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .service-area-section {
    padding: 2rem 0;
  }
}

@media (max-width: 768px) {
  .cities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-area-intro h3 {
    font-size: 1.25rem;
  }
  
  .cities-column h4 {
    font-size: 1rem;
  }
  
  .coverage-note {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .form-trust-note {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .service-area-section {
    padding: 1.5rem 0;
  }
  
  .cities-column li {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }
  
  .coverage-indicator {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

/* Social Proof & Instagram Section */
.social-proof-section {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.social-proof-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23dc2626" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23dc2626" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23dc2626" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%23dc2626" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.social-proof-section .section-title {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.social-proof-section .section-title p {
  font-size: 1.2rem;
  color: var(--medium-text);
  margin-top: 0.5rem;
}

/* Social Proof Cards */
.social-proof-content {
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.social-proof-card {
  background: linear-gradient(145deg, var(--pure-white) 0%, var(--off-white) 100%);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.1);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.social-proof-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.social-proof-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.2);
}

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

.proof-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
  transition: all 0.4s ease;
}

.social-proof-card:hover .proof-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
}

.proof-icon i {
  font-size: 2rem;
  color: var(--pure-white);
  transition: all 0.3s ease;
}

.social-proof-card:hover .proof-icon i {
  transform: scale(1.1);
}

.social-proof-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.social-proof-card:hover h3 {
  color: var(--primary-red);
}

.social-proof-card p {
  color: var(--medium-text);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Instagram Gallery Section */
.instagram-gallery-section {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(239, 68, 68, 0.08) 100%);
  border-bottom: 1px solid rgba(220, 38, 38, 0.15);
}

.instagram-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.instagram-branding i {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.instagram-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 0.25rem 0;
}

.instagram-info p {
  color: var(--medium-text);
  margin: 0;
  font-size: 0.95rem;
}

.instagram-follow-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--pure-white);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.instagram-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  color: var(--pure-white);
}

.instagram-follow-btn i {
  font-size: 1.1rem;
}

/* Instagram Feed Styling */
.instagram-feed {
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
}

.instagram-feed .instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
}

.instagram-feed .instagram-feed-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 1;
  background: transparent;
}

.instagram-feed .instagram-feed-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}

.instagram-feed .instagram-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-feed .instagram-feed-item:hover img {
  transform: scale(1.05);
}

.instagram-feed .instagram-feed-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.instagram-feed .instagram-feed-item:hover::before {
  opacity: 1;
}

.instagram-feed .instagram-feed-item::after {
  content: '👁';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  z-index: 2;
  transition: transform 0.3s ease;
}

.instagram-feed .instagram-feed-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Gallery CTA */
.gallery-cta {
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(239, 68, 68, 0.08) 100%);
  border-top: 1px solid rgba(220, 38, 38, 0.15);
  text-align: center;
}

.gallery-cta p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin: 0 0 1.5rem 0;
}

.gallery-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-cta-buttons .btn {
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 140px;
  justify-content: center;
}

.gallery-cta-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  color: var(--pure-white);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.gallery-cta-buttons .btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-red) 0%, var(--light-red) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  color: var(--pure-white);
}

.gallery-cta-buttons .btn-secondary {
  background: var(--pure-white);
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.1);
}

.gallery-cta-buttons .btn-secondary:hover {
  background: var(--primary-red);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.gallery-cta-buttons .btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.gallery-cta-buttons .btn:hover i {
  transform: scale(1.1);
}

/* Responsive adjustments for social proof section */
@media (max-width: 991px) {
  .social-proof-section {
    padding: 3rem 0;
  }
  
  .social-proof-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .proof-icon {
    width: 60px;
    height: 60px;
  }
  
  .proof-icon i {
    font-size: 1.5rem;
  }
  
  .gallery-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem;
  }
  
  .instagram-feed {
    padding: 1.5rem;
  }
  
  .instagram-feed .instagram-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-cta {
    padding: 1.5rem;
  }
  
  .gallery-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .gallery-cta-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .social-proof-section .section-title h2 {
    font-size: 1.75rem;
  }
  
  .social-proof-section .section-title p {
    font-size: 1rem;
  }
  
  .instagram-feed .instagram-feed-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .instagram-branding {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .instagram-info h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .social-proof-section {
    padding: 2rem 0;
  }
  
  .social-proof-card {
    padding: 1.5rem 1rem;
  }
  
  .proof-icon {
    width: 50px;
    height: 50px;
  }
  
  .proof-icon i {
    font-size: 1.25rem;
  }
  
  .social-proof-card h3 {
    font-size: 1.1rem;
  }
  
  .gallery-header {
    padding: 1rem;
  }
  
  .instagram-feed {
    padding: 1rem;
  }
  
  .gallery-cta {
    padding: 1rem;
  }
  
  .gallery-cta p {
    font-size: 1rem;
  }
}

/* Works Page Improvements */
.works-gallery-section {
  padding: 2rem 0 3rem;
}

.works-gallery-section .section-title {
  margin-bottom: 2rem;
}

.works-gallery-section .section-title p {
  color: var(--medium-text);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.works-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 0;
}

.works-gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 280px;
  background-color: var(--pure-white);
}

.works-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.works-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.works-gallery-item:hover img {
  transform: scale(1.05);
}

.works-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--pure-white);
  padding: 1.5rem 1rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.works-gallery-item:hover .works-gallery-caption {
  transform: translateY(0);
}

/* Featured Transformations Section */
.featured-transformations-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
}

.featured-transformations-section .section-title {
  margin-bottom: 2.5rem;
}

.featured-transformations-section .section-title p {
  color: var(--medium-text);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.transformations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-bottom: 0;
  justify-content: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.transformation-card {
  background: var(--pure-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.transformation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.transformation-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.transformation-card:hover .transformation-image img {
  transform: scale(1.05);
}

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

.transformation-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.transformation-description {
  color: var(--medium-text);
  margin-bottom: 1.75rem;
  flex: 1;
}

.transformation-description p {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.transformation-testimonial {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: auto;
  border-left: 4px solid var(--primary-red);
}

.testimonial-quote {
  position: relative;
  margin-bottom: 1.25rem;
}

.testimonial-quote i {
  color: var(--primary-red);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  display: block;
}

.testimonial-quote p {
  color: var(--dark-text);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

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

.testimonial-author span {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Instagram CTA Section */
.instagram-cta-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--dark-text) 0%, #2d3748 100%);
  color: var(--pure-white);
}

.instagram-cta-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 600px;
  margin: 0 auto;
}

.instagram-cta-content h3 {
  color: var(--pure-white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.instagram-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.instagram-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(253, 29, 29, 0.3);
}

.instagram-icon i {
  font-size: 2rem;
  color: var(--pure-white);
}

.instagram-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.instagram-cta-buttons .btn {
  min-width: 180px;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.instagram-cta-buttons .btn-primary {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 100%);
  color: var(--pure-white);
  border: none;
}

.instagram-cta-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #fd1d1d 0%, #833ab4 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253, 29, 29, 0.4);
}

.instagram-cta-buttons .btn-secondary {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.instagram-cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Responsive Design for Works Page */
@media (max-width: 991px) {
  .works-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
  }
  
  .transformations-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    max-width: 900px;
  }
  
  .instagram-cta-card {
    padding: 2.5rem 1.5rem;
  }
  
  .instagram-cta-content h3 {
    font-size: 1.6rem;
  }
  
  .instagram-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .instagram-cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .works-gallery-section {
    padding: 1.5rem 0 2rem;
  }
  
  .works-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .works-gallery-item {
    height: 240px;
  }
  
  .featured-transformations-section {
    padding: 2rem 0;
  }
  
  .transformations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
  }
  
  .transformation-image {
    height: 200px;
  }
  
  .transformation-content {
    padding: 1.5rem;
  }
  
  .transformation-title {
    font-size: 1.3rem;
  }
  
  .transformation-description p {
    font-size: 1rem;
  }
  
  .transformation-testimonial {
    padding: 1.25rem;
  }
  
  .instagram-cta-section {
    padding: 2rem 0;
  }
  
  .instagram-cta-card {
    padding: 2rem 1rem;
  }
  
  .instagram-icon {
    width: 60px;
    height: 60px;
  }
  
  .instagram-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .works-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .works-gallery-item {
    height: 220px;
  }
  
  .works-gallery-caption {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  }
  
  .transformation-content {
    padding: 1.25rem;
  }
  
  .transformation-title {
    font-size: 1.25rem;
  }
  
  .transformation-testimonial {
    padding: 1rem;
  }
  
  .instagram-cta-content h3 {
    font-size: 1.4rem;
  }
  
  .instagram-cta-content p {
    font-size: 1rem;
  }
}

/* About Section - Compact Mobile Layout */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.benefits-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark-text);
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
  font-size: 1.1rem;
}

.trust-stats-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  text-align: center;
}

.trust-stat i {
  font-size: 1.5rem;
  color: var(--primary-red);
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 0.25rem;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  display: flex;
  align-items: flex-end;
  z-index: 2;
}

.overlay-content {
  padding: 1.5rem;
  color: var(--pure-white);
}

.overlay-content h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-image-rounded {
  width: 100%;
  height: auto;
  display: block;
}

