/* Luxury Auto Battery Services Auctions - Main CSS */

/* Color Palette */
:root {
  --primary-1: #c9b18e; /* Champagne - primary brand color */
  --primary-2: #573e25; /* Dark mahogany - for contrasting elements */
  --primary-3: #f3ece2; /* Ivory - for backgrounds */
  --primary-4: #a48f75; /* Taupe - for dividers and accents */
  --primary-5: #2d2d2d; /* Charcoal - for text and dark elements */
  
  --accent-1: #d7ae64; /* Gold - for luxury accents */
  --accent-2: #5a6e5f; /* Forest green - for secondary elements */
  --accent-3: #c76d4e; /* Terracotta - for call to action */
  
  /* Shade variants */
  --primary-1-light: #dfd1b9;
  --primary-1-dark: #b09268;
  --primary-2-light: #7a5c3c;
  --primary-2-dark: #41301c;
  
  /* Shadows and overlays */
  --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.1);
  --shadow-md: 0 4px 12px rgba(45, 45, 45, 0.15);
  --shadow-lg: 0 8px 24px rgba(45, 45, 45, 0.2);
  --overlay-dark: rgba(45, 45, 45, 0.7);
  --overlay-light: rgba(243, 236, 226, 0.85);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-2);
  background-color: var(--primary-3);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px; /* Added padding to account for fixed header */
  width: 100%;
  max-width: 100%;
}

/* Style for body when mobile menu is open */
body.menu-open {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-2);
  margin-bottom: 1rem;
  line-height: 1.3; /* Improved line height for headings */
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-2);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-1);
}

img {
  max-width: 100%;
  height: auto;
  display: block; /* Prevent image spacing issues */
}

/* Error styles for form validation */
.error {
  border-color: #dc3545 !important;
}

.error-message {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
}

.form-success {
  padding: 15px;
  background-color: rgba(90, 110, 95, 0.2);
  color: var(--accent-2);
  border-radius: 5px;
  text-align: center;
  margin-top: 20px;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 100px 0;
  position: relative; /* Ensure positioned elements work correctly */
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-2);
  color: var(--primary-3);
  border: none;
  border-radius: 3px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-2-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--primary-3); /* Maintain text color on hover */
}

.btn-accent {
  background-color: var(--accent-3);
}

.btn-accent:hover {
  background-color: #b05e43;
  color: var(--primary-3);
}

.section-title {
  position: relative;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-2);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-1);
}

.subtitle {
  font-size: 1.1rem;
  color: var(--primary-4);
  margin-bottom: 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background-color: rgba(243, 236, 226, 0.95); /* Made more opaque */
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm); /* Added default shadow for better visibility */
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  background-color: rgba(243, 236, 226, 0.98); /* Made even more opaque when scrolled */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* Add this to ensure proper positioning context */
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-2);
  line-height: 1.2;
  z-index: 1001; /* Ensure logo stays above menu */
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0; /* Reset margin */
  padding: 0; /* Reset padding */
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  color: var(--primary-2);
}

.nav-menu a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-1);
  transition: width 0.3s ease;
}

.nav-menu a:hover:after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001; /* Ensure hamburger stays above menu */
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease;
  background-color: var(--primary-2);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -80px; /* Compensate for the header padding */
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slider-item {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex !important; /* Changed from none to flex to fix visibility issues */
  align-items: center;
  justify-content: center;
}

.swiper-slide-active {
  display: flex !important; /* Ensure active slide displays */
}

.hero-slider-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
  color: var(--primary-3);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-3);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-img-small {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--primary-3);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.hero-img-1 {
  bottom: 10%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-img-2 {
  top: 15%;
  right: 15%;
  animation: float 8s ease-in-out infinite 1s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Swiper overrides to ensure proper slider functionality */
.swiper-wrapper {
  height: 100%;
}

.swiper-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1; /* Fixed from 0 to ensure slides are visible */
  transition: opacity 0.5s ease;
}

.swiper-slide-active {
  opacity: 1;
}

.swiper-pagination {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid var(--primary-3);
  opacity: 0.7;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-3);
  opacity: 1;
}

.swiper-button-next, 
.swiper-button-prev {
  color: var(--primary-3);
  width: 50px;
  height: 50px;
  background-color: rgba(45, 45, 45, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
  background-color: rgba(45, 45, 45, 0.8);
}

.swiper-button-next:after, 
.swiper-button-prev:after {
  font-size: 20px;
}

/* About Section */
.about {
  position: relative;
  background-color: var(--primary-3);
  overflow: hidden; /* Prevent elements from spilling out */
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.about-text {
  flex: 1;
  min-width: 300px; /* Ensure minimum width on small screens */
}

.about-images {
  flex: 1;
  position: relative;
  height: 500px;
  min-width: 300px; /* Ensure minimum width on small screens */
}

.about-img {
  position: absolute;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  max-width: 100%; /* Ensure images don't overflow */
}

.about-img:hover {
  transform: scale(1.03);
}

.about-img-1 {
  width: 60%;
  height: 60%;
  top: 0;
  left: 0;
  z-index: 2;
  object-fit: cover;
}

.about-img-2 {
  width: 60%;
  height: 60%;
  bottom: 0;
  right: 0;
  z-index: 1;
  object-fit: cover;
}

.about-feature {
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about-feature i {
  color: var(--accent-1);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.about-feature h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

/* Shape divider */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* Services Section */
.services {
  background-color: #fff;
  position: relative;
  overflow: hidden; /* Prevent elements from spilling out */
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: var(--primary-3);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%; /* Ensure equal height */
  display: flex;
  flex-direction: column;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--accent-1);
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 2.5rem;
  color: var(--accent-1);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-desc {
  color: var(--primary-2);
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-top: auto; /* Push to bottom of flex container */
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--primary-2);
}

.service-features li:last-child {
  margin-bottom: 0;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-1);
}

/* Features Section */
.features {
  background-color: var(--primary-3);
  position: relative;
  overflow: hidden; /* Prevent elements from spilling out */
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%; /* Ensure equal height */
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: var(--primary-3);
  border-radius: 50%;
  border: 2px solid var(--accent-1);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--accent-1);
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-2);
}

/* Page Hero (for additional pages) */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-color: var(--primary-2);
  color: var(--primary-3);
  margin-top: -80px; /* Compensate for the header padding */
}

.page-hero-content h1 {
  font-size: 3rem;
  color: var(--primary-3);
  line-height: 1.2;
}

.page-hero-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Additional Page Sections */
.add-page-section-1,
.add-page-section-2,
.add-page-section-3,
.add-page-section-4,
.add-page-section-5 {
  position: relative;
  overflow: hidden; /* Prevent elements from spilling out */
}

.add-page-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.add-page-item {
  margin-bottom: 30px;
}

.add-page-item-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.add-page-item-icon i {
  font-size: 1.8rem;
  color: var(--accent-1);
}

.bg-light {
  background-color: var(--primary-3);
}

/* Gallery */
.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.gallery-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.gallery-image:hover img {
  transform: scale(1.1);
}

.gallery-image:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  text-align: center;
  color: var(--primary-3);
}

.gallery-info h3 {
  font-size: 1.5rem;
  color: var(--primary-3);
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background-color: var(--primary-2);
  color: var(--primary-3);
  padding: 70px 0 20px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-3);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-desc {
  margin-bottom: 25px;
  opacity: 0.8;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  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(--primary-3);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--accent-1);
  transform: translateY(-5px);
  color: var(--primary-2);
}

.footer-title {
  font-size: 1.3rem;
  color: var(--primary-3);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-1);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--primary-3);
  opacity: 0.8;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(5px);
  color: var(--accent-1);
}

.footer-contact-item {
  display: flex;
  margin-bottom: 20px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.footer-contact-item p {
  margin-bottom: 0;
  opacity: 0.8;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  opacity: 0.7;
}

/* Process Timeline (for additional pages) */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--accent-1);
}

.process-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.process-item:last-child {
  margin-bottom: 0;
}

.process-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent-1);
  z-index: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.process-icon i {
  font-size: 1.8rem;
  color: var(--accent-1);
}

.process-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  width: calc(50% - 50px);
  position: relative;
}

.process-item:nth-child(odd) .process-content {
  margin-right: auto;
  margin-left: 0;
}

.process-item:nth-child(even) .process-content {
  margin-left: auto;
  margin-right: 0;
}

.process-content h3 {
  margin-bottom: 10px;
  color: var(--primary-2);
}

.process-content p {
  margin-bottom: 0;
  color: var(--primary-2);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(215, 174, 100, 0.3);
  border-radius: 50%;
  border-top-color: var(--accent-1);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.preloader-hide {
  opacity: 0;
  pointer-events: none;
}


/* Decorative shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--accent-1);
  top: -150px;
  right: -150px;
  animation: morph 15s linear infinite alternate;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background-color: var(--accent-2);
  bottom: -150px;
  left: -150px;
  animation: morph 15s linear infinite alternate-reverse;
}

@keyframes morph {
  0% {
    border-radius: 50%;
  }
  25% {
    border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%;
  }
  50% {
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  }
  75% {
    border-radius: 40% 60% 70% 30% / 60% 40% 60% 40%;
  }
  100% {
    border-radius: 50% 50% 40% 60% / 40% 60% 60% 40%;
  }
}

/* Reviews Section */
.reviews {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.reviews-slider {
  padding: 30px 10px 60px;
  overflow: visible;
}

.reviews-slider .swiper-wrapper {
  padding-bottom: 20px;
}

.review-item {
  background-color: var(--primary-3);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.review-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.review-text {
  font-style: italic;
  position: relative;
  padding-left: 25px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.review-text::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-1);
  font-size: 1.2rem;
}

.review-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.review-author-name {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.review-author-title {
  color: var(--primary-4);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.reviews-pagination {
  bottom: 0;
}

.reviews-button-next,
.reviews-button-prev {
  color: var(--primary-2);
  background-color: var(--primary-3);
}

/* Team Section */
.team {
  background-color: var(--primary-3);
  position: relative;
  overflow: hidden;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.team-img-container {
  height: 300px;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-4);
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--primary-3);
  border-radius: 50%;
  color: var(--primary-2);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: var(--accent-1);
  color: #fff;
}

/* Price Plan Section */
.price-plan {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.price-plan-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.price-plan-item {
  background-color: var(--primary-3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-plan-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.price-plan-header {
  padding: 30px;
  text-align: center;
  background-color: var(--primary-2);
  color: var(--primary-3);
}

.price-plan-title {
  font-size: 1.5rem;
  color: var(--primary-3);
  margin-bottom: 10px;
}

.price-plan-desc {
  opacity: 0.8;
  margin-bottom: 0;
}

.price-plan-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.price-plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-1);
  margin-bottom: 20px;
  text-align: center;
}

.price-plan-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.price-plan-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

.price-plan-features li:last-child {
  margin-bottom: 0;
}

.price-plan-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-1);
}

.price-plan-item .btn {
  text-align: center;
  margin-top: auto;
}

/* Contact Section */
.contact {
  background-color: var(--primary-3);
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
  margin-top: 30px;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--primary-4);
  border-radius: 5px;
  background-color: #fff;
  color: var(--primary-2);
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(215, 174, 100, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.w-100 {
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--primary-2);
  color: var(--primary-3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 1.2rem;
}

.contact-text h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.contact-text p {
  margin-bottom: 0;
  color: var(--primary-4);
}

.contact-hours {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.contact-hours h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--primary-4);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.hours-item:last-child {
  margin-bottom: 0;
}

.hours-item span:first-child {
  font-weight: 600;
}

.hours-item span:last-child {
  color: var(--primary-4);
}

/* Desktop navigation fix */
@media (min-width: 768px) {
  .nav-menu {
    position: static !important;
    height: auto !important;
    background-color: transparent !important;
    box-shadow: none !important;
    left: 0 !important;
    display: flex !important;
    width: auto !important;
    padding: 0 !important;
    overflow: visible !important;
  }
} 