/*
Theme Name: اركان البلاد - صيانة وتركيب مكيفات جدة
Theme URI: https://arkanelbelad-sa.com/
Author: اركان البلاد لأعمال المكيفات
Author URI: https://arkanelbelad-sa.com/
Description: القالب المخصص لشركة اركان البلاد لأعمال المكيفات بجدة - تصميم احترافي متوافق بالكامل مع الهوية الأصلية ومحسن لمحركات البحث والسرعة وRTL.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arkan-albilad
Domain Path: /languages
*/

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

:root {
  --primary: #1e40af;
  --primary-hover: #1d3557;
  --primary-light: #eff6ff;
  --secondary: #d4af37;
  --secondary-hover: #b89628;
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f8fafc;
  --muted-dark: #f1f5f9;
  --muted-foreground: #64748b;
  --card: #ffffff;
  --border: #e2e8f0;
  --destructive: #ef4444;
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --radius-lg: 1.5rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  direction: rtl;
  text-align: right;
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--foreground);
  background-color: var(--background);
}

body {
  font-family: 'Tajawal', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--foreground);
}

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-muted { color: var(--muted-foreground) !important; }
.text-white { color: #ffffff !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-muted { background-color: var(--muted) !important; }
.bg-white { background-color: #ffffff !important; }

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(30, 64, 175, 0.2);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--primary);
}
.btn-secondary:hover {
  background-color: #ffffff;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background-color: #ffffff;
  color: var(--primary);
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2.25rem;
  font-size: 1.125rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-badge {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.site-logo:hover .logo-badge {
  transform: rotate(12deg);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
}

.main-nav {
  display: none;
}
@media (min-width: 768px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  font-size: 1rem;
  font-weight: 700;
  color: #334155;
  position: relative;
  padding: 0.5rem 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 9999px 9999px 0 0;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .header-actions {
    display: flex;
  }
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  background-color: rgba(30, 64, 175, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(30, 64, 175, 0.1);
}
.phone-badge:hover {
  color: var(--secondary);
}

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--primary);
  cursor: pointer;
}
@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background-color: #ffffff;
  padding: 1rem 1.25rem 1.5rem;
}
.mobile-menu.open {
  display: block;
}
.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 700;
  border-radius: 0.5rem;
  margin-bottom: 0.25rem;
}
.mobile-nav-link.active {
  background-color: rgba(30, 64, 175, 0.1);
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(30, 64, 175, 0.85);
  mix-blend-mode: multiply;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(30, 64, 175, 0.95), rgba(30, 64, 175, 0.4));
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  padding: 5rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(212, 175, 55, 0.2);
  color: var(--secondary);
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: var(--secondary);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .hero-title { font-size: 3.5rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 4.25rem; }
}
.hero-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .hero-desc { font-size: 1.25rem; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.hero-badges {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-badge-item svg {
  color: var(--secondary);
}

/* Sections */
.section {
  padding: 5rem 0;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-title { font-size: 2.5rem; }
}
.section-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* Grid & Cards */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Feature Card */
.feature-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}
.feature-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.feature-icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius);
  background-color: rgba(30, 64, 175, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Service Card */
.service-card {
  background-color: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.service-card-img-wrap {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card-img-wrap img {
  transform: scale(1.05);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}
.service-card-title-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
}
.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}
.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card-desc {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.warranty-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.service-card-link {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}
.service-card-link:hover {
  color: var(--secondary);
}

/* Portfolio Card */
.portfolio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background-color: #000000;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.portfolio-card:hover img {
  transform: scale(1.1);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 64, 175, 0.95), rgba(30, 64, 175, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-badge {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--foreground);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}
.portfolio-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.portfolio-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* Blog Card */
.blog-card {
  background-color: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}
.blog-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.blog-card-img-wrap {
  position: relative;
  height: 14rem;
  overflow: hidden;
}
.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.blog-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background-color: rgba(30, 64, 175, 0.08);
  color: var(--primary);
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
}
.blog-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.blog-card-title a:hover {
  color: var(--primary);
}
.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.blog-read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}
.blog-read-more:hover {
  color: var(--secondary);
}

/* Page Header (Inner pages) */
.page-hero {
  background-color: var(--primary);
  color: #ffffff;
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, rgba(30, 64, 175, 0.8) 100%);
}
.page-hero .container {
  position: relative;
  z-index: 10;
}
.page-hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .page-hero-title { font-size: 3rem; }
}
.page-hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 42rem;
  margin: 0 auto;
}

/* Contact Section & Form */
.contact-form-wrap {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .contact-form-wrap { padding: 2.5rem; }
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  background-color: #ffffff;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Info Cards */
.info-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background-color: rgba(30, 64, 175, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.info-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Single Post / Prose */
.prose {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #334155;
}
.prose h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.prose p {
  margin-bottom: 1.5rem;
  color: #475569;
}
.prose ul, .prose ol {
  margin-bottom: 1.5rem;
  padding-right: 1.5rem;
}
.prose li {
  margin-bottom: 0.75rem;
  color: #475569;
}
.prose a, .content-link {
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(30, 64, 175, 0.3);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.prose a:hover, .content-link:hover {
  color: var(--secondary);
  text-decoration-color: var(--secondary);
}

.internal-links-box {
  margin: 3rem 0;
  padding: 2rem;
  background-color: var(--muted);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.internal-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .internal-links-grid { grid-template-columns: repeat(2, 1fr); }
}
.quick-link-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #ffffff;
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--foreground);
  transition: all 0.2s ease;
}
.quick-link-item:hover {
  border-color: rgba(30, 64, 175, 0.3);
  color: var(--primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.quick-link-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(30, 64, 175, 0.05);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-box {
  background-color: rgba(30, 64, 175, 0.05);
  border: 1px solid rgba(30, 64, 175, 0.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 3rem 0;
}

/* Footer */
.site-footer {
  background-color: var(--primary);
  color: #ffffff;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 6px solid var(--secondary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 3rem;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 9999px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}
.footer-contact-item svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .footer-copyright {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.floating-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}
.floating-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25);
}
.floating-whatsapp {
  background-color: #25D366;
}
.floating-phone {
  background-color: var(--primary);
}
.floating-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background-color: var(--foreground);
  color: #ffffff;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.floating-btn:hover .floating-tooltip {
  opacity: 1;
}
