/* ===================================
   LUXURY MINIMALIST DESIGN SYSTEM
   Klinik Pergigian Diana Kuantan
   Premium Dental Care Website
   =================================== */

/* ===================================
   CSS VARIABLES - WARM NEUTRAL PALETTE
   =================================== */
:root {
  /* Primary Backgrounds - Warm foundation */
  --bg-primary: #fffef2;
  --bg-secondary: #f6f5e8;
  --bg-subtle: #ebeade;
  
  /* Text Hierarchy - Rich contrast */
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #bcbbb4;
  --text-meta: #4a4a4a;
  
  /* Interactive States - Minimal emphasis */
  --interactive-base: #333333;
  --interactive-hover: #000000;
  --focus-outline: #252525;
  
  /* Borders & Separators */
  --border-light: #bcbbb4;
  --border-medium: #cccccc;
  --border-subtle: rgba(51, 51, 51, 0.2);
  
  /* Gold Accent */
  --gold: #D4AF37;
  --gold-light: #E8D4A0;
  
  /* Status Colors - Muted */
  --status-success: #4a4a4a;
  
  /* Pastel Blue Accent */
  --pastel-blue: #C8D9E6;
  --pastel-blue-light: #E5EEF5;
}

/* ===================================
   GLOBAL RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: opacity 0.3s ease;
}

/* Prevent flash of unstyled content */
body {
  opacity: 1;
}

/* ===================================
   TYPOGRAPHY SYSTEM
   =================================== */

/* Hero Typography - Extra Large */
.hero-large {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
  margin-bottom: 24px;
}

/* Hero Typography - Medium */
.hero-medium {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
}

/* Heading Levels */
.heading-1 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
}

.heading-2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
}

.heading-3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
}

/* Body Text */
.body-large {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
}

.body-regular {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
}

.body-small {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  color: var(--text-secondary);
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ===================================
   CONTAINER SYSTEM
   =================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
}

/* ===================================
   SPACING SYSTEM
   =================================== */
.section-padding {
  padding: 120px 0;
}

.section-padding-small {
  padding: 80px 0;
}

@media (max-width: 1024px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .section-padding-small {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-padding-small {
    padding: 40px 0;
  }
}

/* ===================================
   DECORATIVE ELEMENTS
   =================================== */

/* Gold Dividers */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 24px 0;
}

.gold-divider-center {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 24px auto;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
   BUTTON SYSTEM
   =================================== */

/* Primary Button - Sharp rectangular with 0px border radius */
.btn-primary {
  background: transparent;
  color: var(--interactive-base);
  border: 1px solid var(--interactive-base);
  border-radius: 0px;
  padding: 18px 32px;
  min-width: 200px;
  height: 56px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary:hover {
  background: var(--interactive-base);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  background: var(--interactive-hover);
  color: var(--bg-primary);
  transform: translateY(0);
}

.btn-primary:focus {
  outline: 2px solid var(--focus-outline);
  outline-offset: 4px;
}

/* Secondary Button - Text with underline animation */
.btn-secondary {
  background: none;
  border: none;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: var(--interactive-base);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 16px;
  width: 0;
  height: 1px;
  background: var(--interactive-base);
  transition: width 0.5s ease-in-out;
}

.btn-secondary:hover:after {
  width: calc(100% - 32px);
}

/* Secondary Hero/CTA Buttons */
.btn-secondary-hero,
.btn-secondary-cta {
  background: transparent;
  color: var(--interactive-base);
  border: 1px solid var(--border-medium);
  border-radius: 0px;
  padding: 18px 32px;
  min-width: 200px;
  height: 56px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-secondary-hero:hover,
.btn-secondary-cta:hover {
  border-color: var(--interactive-base);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ===================================
   NAVIGATION
   =================================== */
.navigation-header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.navigation-header.scrolled {
  background: rgba(255, 254, 242, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navigation-logo {
  font-size: 22px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.navigation-logo:hover {
  color: var(--gold);
}

.navigation-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation-link {
  color: var(--text-primary);
  background: none;
  border: none;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
}

.navigation-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.navigation-link:hover {
  color: var(--gold);
}

.navigation-link:hover:after,
.navigation-link.active:after {
  width: 100%;
}

.navigation-utilities {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid var(--border-light);
  border-radius: 0px;
  transition: all 0.3s ease;
}

.nav-phone-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Navigation */
@media (max-width: 1024px) {
  .navigation-menu {
    display: none;
  }
  
  .navigation-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    padding: 20px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-phone-text {
    display: none;
  }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fffef2;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}

.hero-text-container {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 20px;
  border-radius: 0px;
  border: 1px solid var(--gold-light);
  margin-bottom: 32px;
}

.rating-stars {
  display: flex;
  gap: 4px;
}

.rating-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
}

@media (max-width: 1024px) {
  .hero-section {
    min-height: 600px;
  }
  
  .hero-image-container {
    width: 60%;
  }
  
  .hero-text-container {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    flex-direction: column;
    padding: 60px 0;
  }
  
  .hero-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    order: -1;
  }
  
  .hero-content {
    padding: 40px 0;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary-hero {
    width: 100%;
  }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
  background: var(--bg-primary);
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-main-image:hover {
  transform: scale(1.02);
}

.about-title {
  margin-bottom: 16px;
}

.about-description {
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel-blue-light);
  border-radius: 0px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: var(--gold-light);
}

.feature-text h3 {
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-main-image {
    height: 400px;
  }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-primary);
  padding: 40px 32px;
  border-radius: 0px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--gold-light);
}

.service-icon-container {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel-blue-light);
  border-radius: 0px;
  margin-bottom: 24px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-container {
  background: var(--gold-light);
}

.service-title {
  margin-bottom: 12px;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===================================
   GALLERY SECTION - CUSTOM CAROUSEL
   =================================== */
.gallery-section {
  background: var(--bg-primary);
}

.simple-carousel {
  margin-top: 60px;
  position: relative;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: 0px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.carousel-button {
  background: var(--bg-primary);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-button:hover {
  background: var(--interactive-base);
  color: var(--bg-primary);
  border-color: var(--interactive-base);
  transform: scale(1.05);
}

.carousel-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicator.active {
  background: var(--gold);
  transform: scale(1.3);
}

.carousel-indicator:hover {
  background: var(--gold-light);
}

@media (max-width: 768px) {
  .carousel-wrapper {
    gap: 12px;
  }
  
  .carousel-button {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  
  .carousel-image {
    height: 350px;
  }
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews-section {
  background: var(--bg-secondary);
}

.reviews-rating-badge {
  text-align: center;
  margin-top: 40px;
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.rating-number {
  font-size: 48px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
}

.rating-stars-large {
  display: flex;
  gap: 4px;
}

.rating-count {
  color: var(--text-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.review-card {
  background: var(--bg-primary);
  padding: 32px;
  border-radius: 0px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.author-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--pastel-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.author-info h4 {
  margin-bottom: 4px;
}

.review-date {
  color: var(--text-light);
}

.review-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.google-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bg-secondary);
  border-radius: 0px;
  font-size: 12px;
  color: var(--text-secondary);
}

.reviews-cta {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   FAMILY SECTION
   =================================== */
.family-section {
  background: var(--bg-primary);
}

.family-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.family-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.family-main-image:hover {
  transform: scale(1.02);
}

.family-title {
  margin-bottom: 16px;
}

.family-description {
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.family-features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.family-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.family-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel-blue-light);
  border-radius: 0px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.family-feature-item:hover .family-feature-icon {
  background: var(--gold-light);
}

.family-feature-text h3 {
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .family-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .family-text-side {
    order: 2;
  }
  
  .family-image-side {
    order: 1;
  }
  
  .family-main-image {
    height: 400px;
  }
}

/* ===================================
   LOCATION SECTION
   =================================== */
.location-section {
  background: var(--bg-secondary);
}

.location-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.location-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.info-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-primary);
  border-radius: 0px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.info-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel-blue-light);
  border-radius: 0px;
  color: var(--text-primary);
}

.info-text h3 {
  margin-bottom: 12px;
}

.info-text p {
  margin-bottom: 4px;
}

.contact-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--interactive-hover);
  text-decoration: underline;
}

.location-map-container {
  height: 100%;
  min-height: 500px;
  border-radius: 0px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.google-map {
  filter: grayscale(0.2);
}

@media (max-width: 1024px) {
  .location-content-grid {
    grid-template-columns: 1fr;
  }
  
  .location-map-container {
    min-height: 400px;
  }
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--pastel-blue-light) 100%);
  padding: 100px 0;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  color: var(--text-primary);
  margin-bottom: 20px;
}

.cta-subtitle {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 22px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .final-cta-section {
    padding: 60px 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary-cta {
    width: 100%;
    max-width: 300px;
  }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  color: var(--bg-primary);
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--text-light);
}

.footer-heading {
  color: var(--bg-primary);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-address,
.footer-hours {
  display: flex;
  gap: 12px;
  color: var(--text-light);
}

.footer-address svg,
.footer-hours svg {
  min-width: 16px;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(188, 187, 180, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-copyright {
  color: var(--text-light);
}

/* ===================================
   FLOATING ACTION BUTTONS
   =================================== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.floating-buttons.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
}

.whatsapp-btn:hover {
  background: #1fb855;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.call-btn {
  background: var(--gold);
  color: white;
}

.call-btn:hover {
  background: var(--interactive-hover);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-btn {
    width: 52px;
    height: 52px;
  }
}

/* ===================================
   ANIMATIONS
   =================================== */

/* Fade-in animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse animation for loading */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

/* Smooth transitions */
.transition-smooth {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Hover lift effect */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-2px);
}

/* Text alignment */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Display utilities */
.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none;
}

/* Gap utilities */
.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.gap-4 {
  gap: 32px;
}

/* ===================================
   ACCESSIBILITY
   =================================== */

/* Focus states for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .navigation-header,
  .floating-buttons,
  .hero-cta-buttons,
  .cta-buttons {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero-section,
  .services-section,
  .reviews-section,
  .location-section {
    page-break-inside: avoid;
  }
}

/* ===================================
   END OF STYLESHEET
   =================================== */
