/* ===================================
   MJD AL-RIYADH - Main Stylesheet
   Plain CSS version (converted from Tailwind)
   =================================== */

/* Google Fonts - Cairo */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&display=swap');

/* ===================================
   CSS Variables (Theme)
   =================================== */
:root {
  /* Colors */
  --background: #ffffff;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --primary: #d4a834;
  --primary-foreground: #1a1a1a;
  --secondary: #f5f5f5;
  --secondary-foreground: #1a1a1a;
  --muted: #f0f0f0;
  --muted-foreground: #737373;
  --accent: #d4a834;
  --accent-foreground: #1a1a1a;
  --border: #e5e5e5;
  --input: #e5e5e5;
  --ring: #d4a834;

  /* Border Radius */
  --radius: 0.5rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
}

/* ===================================
   Base Styles
   =================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Text Selection */
::selection {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 168, 52, 0.8);
}

/* Focus Styles */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

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

/* Lists */
ul {
  list-style: none;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 168, 52, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(212, 168, 52, 0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

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

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.animate-fadeIn {
  animation: fadeIn 0.3s ease-out forwards;
}

.animate-slideUp {
  animation: slideUp 0.3s ease-out forwards;
}

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

.min-h-screen {
  min-height: 100vh;
}

/* ===================================
   Header
   =================================== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}

.header-logo:hover {
  opacity: 0.8;
}

.header-logo img {
  height: 4rem;
  width: auto;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
  background-color: rgba(212, 168, 52, 0.1);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  animation: slideUp 0.3s ease-out forwards;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu .nav-link {
  padding: 0.5rem 0;
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: rgba(212, 168, 52, 0.9);
  color: var(--primary-foreground);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid currentColor;
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--foreground);
  color: var(--background);
}

.btn-outline-light {
  background-color: transparent;
  border: 2px solid var(--background);
  color: var(--background);
}

.btn-outline-light:hover {
  background-color: var(--background);
  color: var(--foreground);
}

.btn-dark {
  background-color: var(--foreground);
  color: var(--background);
}

.btn-dark:hover {
  background-color: rgba(26, 26, 26, 0.9);
  color: var(--background);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 8rem 1rem;
}

.hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 70vh;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* ===================================
   Cards
   =================================== */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-hover-lift:hover {
  transform: translateY(-4px);
}

.card-hover-lift-lg:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-content {
  padding: 2rem;
}

.card-header {
  padding: 1.5rem 2rem 1rem;
}

/* ===================================
   Section Styles
   =================================== */
.section {
  padding: 6rem 0;
}

.section-bg-secondary {
  background-color: rgba(245, 245, 245, 0.5);
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

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

.section-bg-dark .section-title {
  color: var(--background);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.section-bg-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   Icon Box
   =================================== */
.icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-xl);
  background-color: rgba(212, 168, 52, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.icon-box svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.card:hover .icon-box {
  background-color: var(--primary);
  transform: scale(1.1);
}

.card:hover .icon-box svg {
  color: var(--primary-foreground);
}

.icon-box-sm {
  width: 3.5rem;
  height: 3.5rem;
}

.icon-box-sm svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* ===================================
   Grid Layouts
   =================================== */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-2 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===================================
   Identity Section
   =================================== */
.identity-card .card-content {
  padding: 2rem;
}

.identity-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.identity-card p {
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* ===================================
   Features Section
   =================================== */
.feature-card {
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(212, 168, 52, 0.5);
}

.feature-card .card-content {
  padding: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===================================
   Services Section
   =================================== */
.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-card .card-content {
  padding: 2rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===================================
   Workflow Section
   =================================== */
.workflow-section {
  background-color: var(--foreground);
  color: var(--background);
}

.workflow-timeline {
  position: relative;
}

.workflow-line {
  display: none;
  position: absolute;
  top: 5rem;
  right: 0;
  left: 0;
  height: 4px;
  background-color: rgba(212, 168, 52, 0.2);
}

.workflow-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--primary);
}

@media (min-width: 1024px) {
  .workflow-line {
    display: block;
  }
}

.workflow-step {
  position: relative;
  text-align: center;
}

.workflow-number {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.workflow-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-lg);
  background-color: rgba(212, 168, 52, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.workflow-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.workflow-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.workflow-step p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ===================================
   Packages Section
   =================================== */
.packages-section {
  background: linear-gradient(to bottom, #ffffff, rgba(245, 245, 245, 0.2));
}

.package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.package-badge-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.package-badge-yellow {
  background-color: #facc15;
  color: #000;
}

.package-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.package-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.package-card.highlight {
  border: 2px solid var(--primary);
}

@media (min-width: 768px) {
  .package-card.highlight {
    transform: scale(1.05);
  }
}

.package-header {
  padding: 1.5rem 2rem 1rem;
}

.package-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.package-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.package-price {
  margin-bottom: 1rem;
}

.package-price-current {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.package-price-original {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.package-duration {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background-color: rgba(212, 168, 52, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-lg);
}

.package-features {
  padding: 0 2rem 2rem;
}

.package-features-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.package-features ul {
  margin-bottom: 1.5rem;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.package-features li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.package-limited {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1rem;
}

.packages-info {
  margin-top: 4rem;
  background-color: rgba(212, 168, 52, 0.05);
  border: 1px solid rgba(212, 168, 52, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.packages-info p:first-child {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.packages-info p:last-child {
  color: var(--muted-foreground);
}

/* ===================================
   Solutions Section
   =================================== */
.solution-card {
  transition: all 0.3s ease;
}

.solution-card:hover {
  border-color: rgba(212, 168, 52, 0.5);
}

.solution-card .card-content {
  padding: 2rem;
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.solution-card > .card-content > p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.solution-features {
  list-style: none;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.solution-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--foreground) 0%, rgba(26, 26, 26, 0.9) 100%);
  padding: 6rem 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.cta-bg-circle {
  position: absolute;
  width: 24rem;
  height: 24rem;
  background-color: var(--primary);
  border-radius: 50%;
  filter: blur(48px);
}

.cta-bg-circle:first-child {
  top: 0;
  left: 25%;
}

.cta-bg-circle:last-child {
  bottom: 0;
  right: 25%;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--background);
  margin-bottom: 1.5rem;
}

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

.cta-title span {
  color: var(--primary);
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

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

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ===================================
   Footer
   =================================== */
.footer {
  background-color: var(--foreground);
  color: var(--background);
}

.footer-content {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  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: repeat(4, 1fr);
  }
}

.footer-brand img {
  height: 6rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary);
}

.footer-social a svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-contact li p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom p {
    text-align: right;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ===================================
   WhatsApp Widget
   =================================== */
.whatsapp-widget-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 40;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #22c55e;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.whatsapp-widget-btn:hover {
  background-color: #16a34a;
  transform: scale(1.1);
}

.whatsapp-widget-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.whatsapp-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #ef4444;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  animation: bounce 1s infinite;
}

.whatsapp-chatbox {
  position: fixed;
  bottom: 6rem;
  left: 1.5rem;
  z-index: 40;
  width: 20rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: slideUp 0.3s ease-out forwards;
}

.whatsapp-chatbox-header {
  background-color: #22c55e;
  color: #fff;
  padding: 1rem;
}

.whatsapp-chatbox-header h3 {
  font-weight: 700;
  font-size: 1.125rem;
}

.whatsapp-chatbox-header p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.whatsapp-chatbox-body {
  padding: 1rem;
  background-color: #f3f4f6;
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.whatsapp-message {
  display: flex;
  gap: 0.75rem;
}

.whatsapp-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #22c55e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.whatsapp-message-text {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.whatsapp-message-text p {
  font-size: 0.875rem;
  color: #374151;
}

.whatsapp-cta {
  width: 100%;
  background-color: #22c55e;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.whatsapp-cta:hover {
  background-color: #16a34a;
}

.whatsapp-cta svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
  position: fixed;
  bottom: 6rem;
  left: 1.5rem;
  z-index: 30;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.scroll-to-top.visible {
  display: flex;
  animation: fadeIn 0.3s ease-out forwards;
}

.scroll-to-top:hover {
  background-color: rgba(212, 168, 52, 0.9);
}

.scroll-to-top svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ===================================
   Contact Page
   =================================== */
.contact-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--background) 0%, var(--background) 50%, var(--secondary) 100%);
}

.contact-hero-content {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-hero h1 {
    font-size: 3.75rem;
  }
}

.contact-hero h1 span {
  color: var(--primary);
}

.contact-hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background-color: rgba(212, 168, 52, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-info-item h3 {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-info-item p {
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-social h3 {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.contact-social-links {
  display: flex;
  gap: 0.75rem;
}

.contact-social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background-color: rgba(212, 168, 52, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-social-links a:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* Contact Form */
.contact-form-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.contact-form-card h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group textarea {
  resize: none;
  min-height: 8rem;
}

.form-status {
  padding: 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.form-status-success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.form-status-success p {
  color: #15803d;
  font-weight: 600;
}

.form-status-error {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
}

.form-status-error p {
  color: #b91c1c;
  font-weight: 600;
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================================
   Promo Badge
   =================================== */
.promo-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(212, 168, 52, 0.1);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.promo-badge span {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
}
