/* ==========================================================================
   1. Fonts & Base Styling / الخطوط والتنسيقات الأساسية
   ========================================================================== */
@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette / الألوان الرئيسية والهوية Visual Identity */
  --primary: #c59b63;
  --primary-hover: #b0854d;
  --primary-light: rgba(197, 155, 99, 0.1);
  --dark: #121418;
  --dark-surface: #1a1d24;
  --light: #f8f9fa;
  --white: #ffffff;
  --text-main: #040505;
  --text-muted: #33373b;
  --border: #e9ecef;

  /* Contact Gradients / متدرجات ألوان التواصل */
  --whatsapp-grad: linear-gradient(135deg, #25d366, #128c7e);
  --phone-grad: linear-gradient(135deg, #c59b63, #8a6534);

  /* Shadows / الظلال */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.12);

  /* Border Radius / حواف العناصر */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  /* Transitions / الانتقالات */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Cairo",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  background-color: var(--white);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.text-primary {
  color: var(--primary);
}

/* ==========================================================================
   2. Components & Buttons / المكونات والأزرار
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  z-index: 1;
  text-align: center;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(197, 155, 99, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(197, 155, 99, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-call {
  background: var(--phone-grad);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(197, 155, 99, 0.3);
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(197, 155, 99, 0.45);
}

.btn-whatsapp {
  background: var(--whatsapp-grad);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   3. Header & Navigation / الهيدر والتنقل
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  white-space: nowrap;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo span {
  color: var(--primary);
}

.menu-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.menu a {
  padding: 0.5rem 0.875rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.menu a:hover {
  color: var(--primary);
  background-color: var(--primary-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  color: var(--white);
  white-space: nowrap;
}

.nav-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.nav-whatsapp {
  background: var(--whatsapp-grad);
}

.nav-call {
  background: var(--phone-grad);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--dark);
  padding: 0.5rem;
  line-height: 1;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: var(--transition);
}

/* ==========================================================================
   4. Hero Section / القسم الرئيسي
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 4rem;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background-color: var(--dark);
}

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition:
    opacity 1.2s ease-in-out,
    transform 1.5s ease-out;
  transform: scale(1.05);
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18, 20, 24, 0.85) 0%, rgba(18, 20, 24, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 3;
}

.hero-label {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f3e5d8;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.5;
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #e2e8f0;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 24px;
  background: var(--primary);
}

/* ==========================================================================
   5. General Sections & Headings / الأقسام العامة والعناوين
   ========================================================================== */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-light {
  background-color: var(--light);
}

.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
}

.section-head small {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--dark);
  margin: 0.5rem 0 1rem;
  line-height: 1.25;
}

.section-head p {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* ==========================================================================
   6. Services Section / قسم الخدمات
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   7. Keywords Section / قسم الكلمات الدليلية
   ========================================================================== */
.keywords-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
  max-height: 180px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  margin: 30px auto 10px;
}

.keywords-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
  transition: var(--transition);
  /* تشتيت الحواف اليمنى واليسرى */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.keywords-container.expanded {
  max-height: none !important;
}

.keywords-container.expanded::after {
  opacity: 0;
}

.toggle-keywords-btn {
  display: block;
  margin: 10px auto 30px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-keywords-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.keyword-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.keyword-tag span {
  color: var(--primary);
  font-weight: bold;
}

.keyword-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.keyword-tag:hover span {
  color: var(--white);
}

/* ==========================================================================
   8. Photo Album Section / قسم ألبوم الصور
   ========================================================================== */
.photo-album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.photo-album-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.photo-album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.photo-album-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition);
}

.photo-album-overlay span {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  transform: translateY(10px);
  transition: var(--transition);
}

.photo-album-item:hover img {
  transform: scale(1.08);
}

.photo-album-item:hover .photo-album-overlay {
  opacity: 1;
}

.photo-album-item:hover .photo-album-overlay span {
  transform: translateY(0);
}

/* ==========================================================================
   9. About Section / قسم من نحن
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.about-image-card {
  position: relative;
  min-height: 380px;
  background:
    linear-gradient(135deg, rgba(197, 155, 99, 0.4), rgba(18, 20, 24, 0.7)),
    url("https://dicoratabha.com/template/images/hero1.webp") center/cover no-repeat;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.about-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.about-badge strong {
  display: block;
  font-size: 2.25rem;
  color: var(--primary);
  line-height: 1;
}

.about-badge span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

.about-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--dark);
  line-height: 1.3;
  margin: 0.5rem 0 1.25rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.features-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.95rem;
}

.features-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ==========================================================================
   10. Testimonials & CTA / قسم الآراء والدعوة للإجراء
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author h4 {
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

.cta {
  background: var(--dark-surface);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  margin: 50px auto;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.cta p {
  color: #94a3b8;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   11. Floating Sidebar & Social Widgets / الأشرطة الجانبية والعائمة
   ========================================================================== */
.side-social-bar {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-md);
}

.side-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}

.side-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.side-social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.side-social-link.tiktok {
  background: #000000;
}

.side-social-link.whatsapp {
  background: var(--whatsapp-grad);
}

.side-social-link.snapchat {
  background: #f1ee05;
  color: #000000;
}

.side-social-link.phone {
  background: var(--phone-grad);
}

.side-social-link:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.side-social-link::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 52px;
  background: var(--dark);
  color: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.side-social-link:hover::after {
  opacity: 1;
  right: 56px;
}

.mobile-contact-bar {
  display: none;
}

/* ==========================================================================
   12. Footer / الفوتر
   ========================================================================== */
footer {
  background-color: var(--dark);
  color: #94a3b8;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 900;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--primary);
}

footer h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

footer ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

footer a {
  transition: var(--transition);
}

footer a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.85rem;
}

.copyright-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.copyright-content p {
  margin: 0;
}

/* ==========================================================================
   13. Responsive Breakpoints / تجاوب الشاشات
   ========================================================================== */
@media (max-width: 1024px) {
  .menu-wrapper {
    gap: 1rem;
  }

  .menu a {
    padding: 0.4rem 0.6rem;
  }
}

@media (max-width: 992px) {
  .side-social-bar {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }

  .menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 5rem 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    overflow-y: auto;
  }

  .menu-wrapper.active {
    right: 0;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .menu a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 1.5rem;
  }

  .nav-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  /* Mobile Sticky Contact Bar at Bottom */
  .mobile-contact-bar {
    display: flex;
    position: fixed;
    bottom: 1rem;
    inset-inline: 1rem;
    z-index: 997;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 0.5rem;
    border-radius: var(--radius-pill);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
  }

  .mobile-contact-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .mobile-contact-btn.phone {
    background: var(--phone-grad);
  }

  .mobile-contact-btn.whatsapp {
    background: var(--whatsapp-grad);
  }

  .mobile-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
  }

  .mobile-social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .mobile-social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  }

  .mobile-social-icon.tiktok {
    background: #000000;
  }

  .mobile-social-icon.snapchat {
    background: #fffc00;
    color: #000000;
  }

  footer {
    padding-bottom: 6rem;
  }
}

@media (max-width: 768px) {
  .copyright-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hidden-sm {
    display: none;
  }
}

@media (max-width: 576px) {
  .container {
    width: calc(100% - 1.5rem);
  }

  .about-grid,
  .services-grid,
  .photo-album-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-image-card {
    min-height: 280px;
  }

  .slider-dots {
    bottom: 5rem;
  }

  .mobile-contact-bar {
    bottom: 0.75rem;
    inset-inline: 0.75rem;
  }
}
