/* INDEX PAGE SPECIFIC STYLES */

/* HERO SECTION */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
}

.video-background video {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.35) contrast(1.2);
}

.video-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg,rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.6) 50%,rgba(0,0,0,0.8) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--secondary-color);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* HERO TEXT STRUCTURE */
.hero-title {
  font-family: 'Lato', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.static-text {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--secondary-color);
  white-space: nowrap;
  margin-bottom: 0;
}

.sliding-text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: clamp(3rem, 10vw, 6rem);
  overflow: hidden;
  width: 100%;
  min-width: 100vw;
}

.sliding-text {
  position: absolute;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--accent-color);
  opacity: 0;
  white-space: nowrap;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
}

.sliding-text {
  animation: slideTextDynamic 15s infinite;
}

.sliding-text:nth-child(1) { animation-delay: 0s; }
.sliding-text:nth-child(2) { animation-delay: 3s; }
.sliding-text:nth-child(3) { animation-delay: 6s; }
.sliding-text:nth-child(4) { animation-delay: 9s; }
.sliding-text:nth-child(5) { animation-delay: 12s; }

@keyframes slideTextDynamic {
  0% { 
    opacity: 0; 
    transform: translateX(-50%) translateY(50px);
  }
  6.67% {
    opacity: 1; 
    transform: translateX(-50%) translateY(0);
  }
  13.33% {
    opacity: 1; 
    transform: translateX(-50%) translateY(0);
  }
  20% {
    opacity: 0; 
    transform: translateX(-50%) translateY(-50px);
  }
  100% { 
    opacity: 0; 
    transform: translateX(-50%) translateY(-50px);
  }
}

.hero-subtitle {
  opacity: 0;
  animation: fadeIn 1s ease-out 1.2s forwards;
  margin-top: 1rem;
}

.hero-subtitle p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: clamp(1px, 0.5vw, 3px);
  color: var(--accent-color);
}

.no-slide-text {
  opacity: 0;
  animation: fadeInOnly 1.5s ease-out 1.5s forwards;
}

@keyframes fadeInOnly {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeIn { 
  to { opacity: 1; } 
}

/* HERO CTA BUTTON */
.hero-cta {
  opacity: 0;
  animation: fadeIn 1s ease-out 2s forwards;
  margin-top: 2rem;
}

.hero-appointment-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--accent-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 230, 0, 0.3);
  text-transform: uppercase;
}

.hero-appointment-btn:hover {
  background: #e6cf00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 230, 0, 0.4);
}

.hero-appointment-btn:active {
  transform: translateY(0);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--secondary-color);
  font-size: 0.8rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--accent-color);
  margin-bottom: 1rem;
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse { 
  0%,100%{opacity:0.3;} 
  50%{opacity:1;} 
}

/* ABOUT SECTION */
.about {
  padding: 8rem 0;
  background: var(--secondary-color);
}

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

.about-image {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.about-image img {
  width: 100%;
  height: auto;
  max-width: 550px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  display: block;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
  line-height: 1.8;
}

/* BRANDS SECTION */
.brands {
  padding: 6rem 0;
  background: var(--primary-color);
  color: var(--secondary-color);
}

.brands .section-title {
  color: var(--secondary-color);
  margin-bottom: 3rem;
}

.splide__slide img {
  max-height: 140px;
  width: auto;
  margin: 0 auto;
  filter: grayscale(0.2) brightness(1.1);
  transition: filter 0.3s, max-height 0.3s;
}

.splide__slide.is-active img,
.splide__slide:hover img {
  filter: none;
}

.splide__list {
  align-items: center;
}

.splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* SERVICES SECTION WITH VIDEO BACKGROUND */
.services {
  padding: 8rem 0;
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.services-video-background {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}

.services-video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1);
}

.services-video-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.3) 50%,rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.services-content {
  position: relative;
  z-index: 2;
}

.services-video-bg .section-title {
  color: #fff;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(255, 230, 0, 0.3);
}

.service-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(0);
}

.service-card h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.service-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.testimonials-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="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.testimonials-section .section-title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.testimonials-wrapper {
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  margin: 0 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 230, 0, 0.03), transparent);
  transition: left 0.6s ease;
}

.testimonial-card:hover::before {
  left: 100%;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 230, 0, 0.2);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quote-icon {
  color: var(--accent-color);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.testimonial-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin: 0;
  flex: 1;
  display: block;
  overflow: visible;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.author-avatar {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.avatar-fallback {
  display: flex;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 0.2rem 0;
}

.author-info span {
  font-size: 0.85rem;
  color: #666;
}

/* Desktop specific adjustments */
@media (min-width: 769px) {
  .testimonial-card {
    min-height: 350px;
    padding: 2.5rem 2rem;
  }
  
  .testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    max-height: none;
    overflow: visible;
    -webkit-line-clamp: none;
    -webkit-box-orient: initial;
    display: block;
  }
}

/* GALLERY SECTION - CHROME OPTIMIZED */
.gallery-section {
  background: var(--primary-color);
}

.scrolling-banner {
  background: var(--primary-color);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.scrolling-text {
  display: inline-block;
  color: var(--secondary-color);
  font-family: 'Lato', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  animation: scrollRightContinuous 15s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

@keyframes scrollRightContinuous {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

.gallery-container {
  padding: 2rem 0 8rem 0;
  background: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 250px);
  gap: 1rem;
  margin-top: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.gallery-item:hover {
  transform: scale(1.02) translateZ(0);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.gallery-item:hover img {
  transform: scale(1.1) translateZ(0);
}

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  will-change: transform;
}

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

.gallery-overlay h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Chrome-specific gallery fixes */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .gallery-section {
        transform: none !important;
        will-change: auto !important;
        contain: none !important;
        isolation: auto !important;
    }
    
    .gallery-item {
        transform: none !important;
        will-change: auto !important;
        backface-visibility: visible !important;
        contain: none !important;
        transition: opacity 0.2s ease, filter 0.2s ease;
    }
    
    .gallery-item img {
        transform: none !important;
        will-change: auto !important;
        image-rendering: auto !important;
        contain: none !important;
        transition: opacity 0.2s ease, filter 0.2s ease;
    }
    
    .gallery-item.chrome-hover {
        opacity: 0.95;
        filter: brightness(1.05);
    }
    
    .gallery-item.chrome-hover img {
        opacity: 0.9;
        filter: contrast(1.1);
    }
    
    .gallery-item.chrome-click {
        opacity: 0.8;
        filter: brightness(0.9);
    }
    
    .gallery-overlay {
        transform: none !important;
        will-change: auto !important;
        opacity: 0;
        transition: opacity 0.2s ease;
    }
    
    .gallery-item.chrome-hover .gallery-overlay {
        opacity: 1;
        transform: none !important;
    }
}

/* Disable smooth scrolling for Chrome in gallery area */
@supports (-webkit-appearance: none) {
    .gallery-section * {
        scroll-behavior: auto !important;
    }
}

/* CONTACT CTA SECTION */
.contact-cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.contact-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="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

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

.contact-hero-text h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
  line-height: 1.6;
}

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.highlight-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.highlight-text p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

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

.primary-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.primary-cta-btn:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.secondary-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.secondary-cta-btn:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.contact-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-card {
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid #e9ecef;
  width: 100%;
  max-width: 400px;
}

.contact-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f3f4;
}

.contact-card-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.contact-badge {
  background: #d4edda;
  color: #155724;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.detail-icon {
  width: 32px;
  height: 32px;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  flex-shrink: 0;
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
}

.detail-text span {
  font-size: 0.85rem;
  color: #666;
}

.contact-card-footer {
  padding-top: 1rem;
  border-top: 1px solid #f1f3f4;
  display: flex;
  justify-content: center;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--accent-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  justify-content: center;
  min-width: 160px;
}

.directions-btn:hover {
  background: #e6cf00;
  transform: translateY(-1px);
}

/* LOGO LINK STYLING */
.logo-link {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.logo-link:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

.logo-link:focus {
  outline: 2px solid #ffe600;
  outline-offset: 2px;
  border-radius: 4px;
}

.logo-link img {
  display: block;
  height: inherit;
  width: auto;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .about-flex { 
    flex-direction: column; 
    gap: 2rem; 
  }
  
  .about-image, .about-text { 
    width: 100%; 
  }
  
  .contact-cta-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .contact-highlights {
    max-width: 600px;
    margin: 0 auto 3rem auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 200px);
  }
  
  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .gallery-wide {
    grid-column: span 2;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {
  /* Fix for Ready to Experience Excellence section */
  .contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-bottom: 0.5rem;
  }

  .highlight-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .highlight-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    text-align: center;
  }

  .highlight-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    text-align: center;
  }

  /* Fix for Visit Our Shop section */
  .contact-card {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
  }

  .detail-icon {
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
    flex: 1;
  }

  .detail-text strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
  }

  .detail-text span {
    font-size: 0.85rem;
    color: #666;
    text-align: left;
    line-height: 1.4;
  }

  /* Other existing mobile styles */
  .about-text h2 {
    font-size: 2.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 200px);
  }
  
  .gallery-large,
  .gallery-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-section {
    padding: 4rem 0;
  }
  
  .testimonial-card {
    padding: 1.5rem 1.25rem;
    margin: 0 0.25rem;
    min-height: auto;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  }
  
  .testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-content p {
    -webkit-line-clamp: none;
    overflow: visible;
    display: block;
  }
  
  .contact-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .primary-cta-btn,
  .secondary-cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-appointment-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .phone-btn {
    display: none;
  }
}

/* Additional mobile fixes for smaller screens */
@media (max-width: 480px) {
  .highlight-item {
    gap: 0.75rem;
  }

  .highlight-icon {
    width: 42px;
    height: 42px;
  }

  .highlight-text h3 {
    font-size: 1rem;
  }

  .highlight-text p {
    font-size: 0.9rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .detail-text strong {
    font-size: 0.85rem;
  }

  .detail-text span {
    font-size: 0.8rem;
  }

  /* Other existing small mobile styles */
  .about-text h2 {
    font-size: 2rem;
  }
  
  .about-text p {
    font-size: 1rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon img {
    width: 30px;
    height: 30px;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
  }
  
  .testimonial-card {
    padding: 1.25rem 1rem;
    min-height: auto;
  }
  
  .testimonial-content p {
    font-size: 0.9rem;
  }
  
  .hero-cta {
    margin-top: 1.5rem;
  }
  
  .hero-appointment-btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
}