@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Luxury Hotel Color Palette */
  --background: 40 33% 98%;
  --foreground: 210 50% 25%;

  --card: 40 30% 97%;
  --card-foreground: 210 50% 25%;

  --popover: 40 30% 97%;
  --popover-foreground: 210 50% 25%;

  /* Vibrant Blue - Primary (أزرق حيوي) */
  --primary: 210 50% 35%;
  --primary-foreground: 40 30% 97%;

  /* Warm Sand - Secondary */
  --secondary: 35 35% 90%;
  --secondary-foreground: 210 50% 35%;

  /* Soft Cream - Muted */
  --muted: 40 20% 94%;
  --muted-foreground: 210 25% 50%;

  /* Vibrant Gold - Accent (ذهبي حيوي) */
  --accent: 45 85% 58%;
  --accent-foreground: 210 50% 35%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 40 30% 97%;

  --border: 210 30% 85%;
  --input: 210 30% 85%;
  --ring: 45 85% 58%;

  --radius: 0.5rem;

  /* Custom Hotel Colors */
  --hotel-navy: 210 50% 35%;
  --hotel-navy-light: 210 45% 50%;
  --hotel-gold: 45 85% 58%;
  --hotel-gold-light: 45 80% 70%;
  --hotel-sand: 35 35% 90%;
  --hotel-sand-dark: 35 30% 80%;
  --hotel-cream: 40 33% 98%;
  --hotel-gray: 210 25% 50%;

  /* Gradients */
  --gradient-hero: linear-gradient(180deg, hsla(210, 50%, 20%, 0.75) 0%, hsla(210, 50%, 25%, 0.5) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(45, 85%, 58%) 0%, hsl(45, 80%, 65%) 100%);
  --gradient-navy: linear-gradient(135deg, hsl(210, 50%, 35%) 0%, hsl(210, 45%, 45%) 100%);

  /* Shadows */
  --shadow-soft: 0 4px 20px -4px hsla(210, 50%, 20%, 0.12);
  --shadow-elegant: 0 10px 40px -10px hsla(210, 50%, 20%, 0.18);
  --shadow-gold: 0 4px 20px -4px hsla(45, 85%, 58%, 0.35);
}

* {
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure Tailwind color classes work with CSS variables */
.bg-background {
  background-color: hsl(var(--background));
}

.bg-foreground {
  background-color: hsl(var(--foreground));
}

.bg-primary {
  background-color: hsl(var(--primary));
}

.bg-primary-foreground {
  background-color: hsl(var(--primary-foreground));
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.bg-secondary-foreground {
  background-color: hsl(var(--secondary-foreground));
}

.bg-accent {
  background-color: hsl(var(--accent));
}

.bg-accent-foreground {
  background-color: hsl(var(--accent-foreground));
}

.bg-muted {
  background-color: hsl(var(--muted));
}

.bg-muted-foreground {
  background-color: hsl(var(--muted-foreground));
}

.bg-card {
  background-color: hsl(var(--card));
}

.bg-card-foreground {
  background-color: hsl(var(--card-foreground));
}

.text-background {
  color: hsl(var(--background));
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-primary-foreground {
  color: hsl(var(--primary-foreground));
}

.text-secondary {
  color: hsl(var(--secondary));
}

.text-secondary-foreground {
  color: hsl(var(--secondary-foreground));
}

.text-accent {
  color: hsl(var(--accent));
}

.text-accent-foreground {
  color: hsl(var(--accent-foreground));
}

.text-muted {
  color: hsl(var(--muted));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.text-card {
  color: hsl(var(--card));
}

.text-card-foreground {
  color: hsl(var(--card-foreground));
}

.border-border {
  border-color: hsl(var(--border));
}

.border-primary {
  border-color: hsl(var(--primary));
}

.border-accent {
  border-color: hsl(var(--accent));
}

/* RTL Support */
[dir="rtl"] {
  text-align: right;
}

[dir="ltr"] {
  text-align: left;
}

/* Utility Classes */
.hotel-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .hotel-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hotel-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.heading-primary {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: hsl(var(--primary));
}

@media (min-width: 768px) {
  .heading-primary {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .heading-primary {
    font-size: 3rem;
  }
}

.heading-secondary {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

@media (min-width: 768px) {
  .heading-secondary {
    font-size: 1.875rem;
  }
}

.text-elegant {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  font-size: 1.125rem;
}

.gold-underline {
  position: relative;
  display: inline-block;
}

.gold-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: hsl(var(--accent));
  right: 0;
}

[dir="rtl"] .gold-underline::after {
  right: auto;
  left: 0;
}

.card-hover {
  transition: all 0.5s ease-out;
}

.card-hover:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-elegant);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  border-radius: 0.125rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: hsl(var(--hotel-navy-light));
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 0.125rem;
  transition: all 0.3s;
  background: var(--gradient-gold);
  color: hsl(var(--foreground));
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  background-color: transparent;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transform: translateX(-4px);
}

/* Animations */
.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

.animate-slide-right {
  animation: slideRight 0.8s ease-out forwards;
  opacity: 0;
}

.animation-delay-100 {
  animation-delay: 0.1s;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-300 {
  animation-delay: 0.3s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

.animation-delay-500 {
  animation-delay: 0.5s;
}

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

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

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

[dir="rtl"] .animate-slide-right {
  animation: slideLeft 0.8s ease-out forwards;
  opacity: 0;
}

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

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Navbar Scrolled State */
.navbar-scrolled {
  background-color: hsla(var(--background), 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Mobile Menu */
#mobile-menu {
  display: none;
}

#mobile-menu.active {
  display: block;
}

/* Booking Modal */
#booking-modal {
  display: none;
}

#booking-modal.active {
  display: flex;
}

/* Gallery Lightbox */
#gallery-lightbox {
  display: none;
}

#gallery-lightbox.active {
  display: flex;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-elegant);
  z-index: 1000;
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Line clamp utility */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Why Choose Us Section - Light Background */
.why-choose-us-section {
  background-color: hsl(var(--background));
  position: relative;
}

/* Decorative background circles */
.why-choose-us-section > div.absolute.inset-0 > div:first-child {
  background-color: hsla(45, 85%, 58%, 0.08);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.why-choose-us-section > div.absolute.inset-0 > div:last-child {
  background-color: hsla(45, 85%, 58%, 0.08);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

/* Why Choose Us Cards */
.why-choose-us-section .why-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.why-choose-us-section .why-card:hover {
  border-color: hsla(45, 85%, 58%, 0.4);
}

/* Text colors in Why Choose Us section */
.why-choose-us-section h2 {
  color: hsl(var(--primary));
}

.why-choose-us-section .why-card h3 {
  color: hsl(var(--foreground));
}

.why-choose-us-section .why-card:hover h3 {
  color: hsl(var(--accent));
}

.why-choose-us-section > div.hotel-container > div:first-child p {
  color: hsl(var(--muted-foreground));
}

.why-choose-us-section .why-card p {
  color: hsl(var(--muted-foreground));
}

/* Badge in Why Choose Us */
.why-choose-us-section > div.hotel-container > div:first-child > div.inline-flex {
  background-color: hsla(45, 85%, 58%, 0.15);
  border: 1px solid hsla(45, 85%, 58%, 0.3);
}

.why-choose-us-section > div.hotel-container > div:first-child > div.inline-flex span {
  color: hsl(45, 85%, 58%);
}

.why-choose-us-section > div.hotel-container > div:first-child > div.inline-flex svg {
  color: hsl(45, 85%, 58%);
}

/* Icon backgrounds in cards */
.why-choose-us-section .why-card .relative.z-10 > div:first-child {
  background-color: hsla(45, 85%, 58%, 0.25);
}

.why-choose-us-section .why-card:hover .relative.z-10 > div:first-child {
  background-color: hsl(45, 85%, 58%);
}

.why-choose-us-section .why-card .relative.z-10 > div:first-child svg {
  color: hsl(45, 85%, 58%);
}

.why-choose-us-section .why-card:hover .relative.z-10 > div:first-child svg {
  color: hsl(40, 30%, 97%);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--muted));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--accent));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--hotel-gold-light));
}

/* Dropdown Menu Styles */
.relative.group:hover .absolute {
  animation: fadeInDown 0.3s ease-out;
}

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

/* Mobile Dropdown */
.mobile-dropdown-btn {
  cursor: pointer;
}

.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-dropdown-content:not(.hidden) {
  max-height: 500px;
}

/* ============================================
   Inner Page Styles (Page Template)
   ============================================ */

/* Page Hero Section */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--hotel-navy-light)) 100%);
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsla(45, 85%, 58%, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(50%, -50%);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 4xl;
  margin: 0 auto;
}

.page-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px hsla(210, 50%, 20%, 0.4);
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .page-title {
    font-size: 4rem;
  }
}

.page-subtitle {
  font-size: 1.125rem;
  line-height: 1.75;
  color: hsl(var(--primary-foreground) / 0.9);
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-subtitle {
    font-size: 1.25rem;
  }
}

/* Inner Page Section */
.inner-page-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: hsl(var(--background));
  position: relative;
}

@media (min-width: 768px) {
  .inner-page-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .inner-page-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.inner-page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .inner-page-wrapper {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .inner-page-wrapper {
    padding: 0 2rem;
  }
}

/* Featured Image */
.inner-page-image {
  margin-bottom: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  position: relative;
}

.inner-page-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, hsla(210, 50%, 20%, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.page-featured-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.inner-page-image:hover .page-featured-img {
  transform: scale(1.05);
}

/* Page Content Card */
.inner-page-content {
  background-color: hsl(var(--card));
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(var(--border) / 0.5);
}

@media (min-width: 768px) {
  .inner-page-content {
    padding: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .inner-page-content {
    padding: 4rem;
  }
}

/* Page Summary */
.page-summary {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, hsla(45, 85%, 58%, 0.15) 0%, hsla(45, 85%, 58%, 0.08) 100%);
  border-radius: 1rem;
  border: 1px solid hsla(45, 85%, 58%, 0.3);
  margin-bottom: 2.5rem;
}

.summary-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--accent));
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.page-summary p {
  color: hsl(var(--foreground));
  line-height: 1.75;
  margin: 0;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .page-summary {
    padding: 2rem;
  }
  
  .page-summary p {
    font-size: 1.125rem;
  }
}

/* WYSIWYG Content */
.wysiwyg-content {
  color: hsl(var(--foreground));
  line-height: 1.875;
  font-size: 1.0625rem;
}

.wysiwyg-content h1,
.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4,
.wysiwyg-content h5,
.wysiwyg-content h6 {
  color: hsl(var(--primary));
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.wysiwyg-content h1 {
  font-size: 2.25rem;
}

.wysiwyg-content h2 {
  font-size: 1.875rem;
}

.wysiwyg-content h3 {
  font-size: 1.5rem;
}

.wysiwyg-content h4 {
  font-size: 1.25rem;
}

.wysiwyg-content p {
  margin-bottom: 1.5rem;
  color: hsl(var(--muted-foreground));
}

.wysiwyg-content p:last-child {
  margin-bottom: 0;
}

.wysiwyg-content a {
  color: hsl(var(--accent));
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.wysiwyg-content a:hover {
  color: hsl(var(--hotel-gold-light));
}

.wysiwyg-content ul,
.wysiwyg-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  color: hsl(var(--muted-foreground));
}

.wysiwyg-content li {
  margin-bottom: 0.75rem;
}

.wysiwyg-content ul li {
  list-style-type: disc;
}

.wysiwyg-content ol li {
  list-style-type: decimal;
}

.wysiwyg-content blockquote {
  border-left: 4px solid hsl(var(--accent));
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: hsl(var(--muted-foreground));
}

.wysiwyg-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
}

.wysiwyg-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  overflow-x: auto;
  display: block;
}

@media (min-width: 768px) {
  .wysiwyg-content table {
    display: table;
  }
}

.wysiwyg-content table th,
.wysiwyg-content table td {
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border));
  text-align: left;
}

.wysiwyg-content table th {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
}

.wysiwyg-content table tr:nth-child(even) {
  background-color: hsl(var(--muted) / 0.3);
}

.wysiwyg-content code {
  background-color: hsl(var(--muted));
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
  color: hsl(var(--accent));
  font-family: 'Courier New', monospace;
}

.wysiwyg-content pre {
  background-color: hsl(var(--muted));
  padding: 1.5rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  margin: 2rem 0;
}

.wysiwyg-content pre code {
  background: none;
  padding: 0;
  color: hsl(var(--foreground));
}

/* Page Footer Actions */
.page-footer-actions {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
  display: flex;
  justify-content: center;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--gradient-gold);
  color: hsl(var(--foreground));
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-contact .icon-sm {
  width: 1.25rem;
  height: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .page-hero {
    min-height: 40vh;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  
  .inner-page-content {
    padding: 1.5rem;
  }
  
  .page-summary {
    flex-direction: column;
    padding: 1.25rem;
  }
  
  .wysiwyg-content {
    font-size: 1rem;
  }
  
  .wysiwyg-content h1 {
    font-size: 1.875rem;
  }
  
  .wysiwyg-content h2 {
    font-size: 1.5rem;
  }
  
  .wysiwyg-content h3 {
    font-size: 1.25rem;
  }
}

/* ============================================
   Services Page Styles
   ============================================ */

/* Service Page Card Link */
.service-card {
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  text-decoration: none;
  color: inherit;
}

/* Service Card Image Hover Effect */
.service-card img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Service Card Badge */
.service-card .bg-accent\/95 {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Back Button */
.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: hsl(var(--card));
  border: 2px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-back:hover {
  background-color: hsl(var(--muted));
  border-color: hsl(var(--accent));
  color: hsl(var(--accent));
  transform: translateX(-4px);
}

.btn-back svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Service Page Footer Actions */
.page-footer-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 767px) {
  .page-footer-actions {
    flex-direction: column;
  }
  
  .btn-back,
  .btn-contact {
    width: 100%;
  }
}

