/**
* Template Name: Selecao
* Template URL: https://bootstrapmade.com/selecao-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Cairo", "Noto Kufi Arabic", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Noto Kufi Arabic", "Cairo", sans-serif;
  --nav-font: "Cairo", "Noto Kufi Arabic", sans-serif;
}


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --background-color-2: #F9E02F; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2a2c39; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ef6603; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --second-color : #EAC3D2;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ef6603; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #060606; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ef6603; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #C21259;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  direction: rtl;
  text-align: right;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.header .logo {
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
}
.header .logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--background-color-2));
  transition: width 0.3s ease;
}
.header .logo:hover::after {
  width: 100%;
}
.header .logo h1 {
  font-size: 1.875rem;
  margin: 0;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--heading-color), color-mix(in srgb, var(--heading-color) 70%, white 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  transition: all 0.3s ease;
}
.header .logo:hover h1 {
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateX(-2px);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(42, 44, 57, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.25rem;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
  }

  .navmenu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--default-color), var(--background-color-2));
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }
    .navmenu a:hover::before,
  .navmenu .active::before,
  .navmenu .active:focus::before {
    opacity: 1;
    transform: scale(1);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-color);
    transform: translateY(-1px);
  }


  .navmenu a i,
  .navmenu a:focus i {
    font-size: 0.75rem;
    line-height: 0;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
  }

  .navmenu li:hover > a i {
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    margin: 0.5rem 0 0 0;
    padding: 1rem 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 140%;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    z-index: 999;
    box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.12),
      0 4px 8px rgba(0, 0, 0, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 220px;
    margin: 0;
  }

  .navmenu .dropdown ul a {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    text-transform: none;
    color: var(--nav-dropdown-color);
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
  }
    .navmenu .dropdown ul a::before {
    display: none;
  }

  .navmenu .dropdown ul a::after {
    content: '';
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, 
      transparent, 
      color-mix(in srgb, var(--default-color) 20%, transparent 80%), 
      transparent);
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    background: linear-gradient(135deg, var(--nav-hover-color), var(--background-color-2));
    color: var(--contrast-color);
    transform: translateX(8px);
    padding-left: 2rem;
  }

  .navmenu .dropdown ul a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 120%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: -1rem;
    left: -95%;
    visibility: hidden;
    transform: translateX(-10px);
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: -1rem;
    left: -100%;
    visibility: visible;
    transform: translateX(0);
  }
    .navmenu .call-button {
    background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
    color: var(--contrast-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
      0 4px 15px rgba(239, 102, 3, 0.3),
      0 1px 0 rgba(255, 255, 255, 0.2) inset;
    position: relative;
    overflow: hidden;
  }
    .navmenu .call-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
      transparent, 
      rgba(255, 255, 255, 0.2), 
      transparent);
    transition: left 0.6s ease;
  }

  .navmenu .call-button:hover::before {
    left: 100%;
  }

  .navmenu .call-button:hover {
    transform: translateY(-2px);
    box-shadow: 
      0 8px 25px rgba(239, 102, 3, 0.4),
      0 1px 0 rgba(255, 255, 255, 0.2) inset;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 1.75rem;
    line-height: 0;
    margin-right: 0.625rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
    .mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
    .navmenu ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
      transparent, 
      var(--accent-color), 
      transparent);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 0.25rem 0;
    position: relative;
  }
    .navmenu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 1px;
    background: linear-gradient(90deg, 
      transparent, 
      color-mix(in srgb, var(--default-color) 10%, transparent 90%), 
      transparent);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 0.875rem;
    line-height: 0;
    margin-left: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateX(-8px);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg) scale(1.1);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 0.5rem 0;
    margin: 0.5rem 0 0.5rem 1.5rem;
    background: color-mix(in srgb, var(--nav-dropdown-background-color) 90%, transparent 10%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navmenu .dropdown ul ul {
    background: color-mix(in srgb, var(--nav-dropdown-background-color) 85%, transparent 15%);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background: color-mix(in srgb, var(--accent-color), transparent 98%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--contrast-color);
    position: absolute;
    font-size: 2rem;
    top: 1rem;
    right: 1rem;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
  }
  .navmenu .call-button {
    background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
    color: var(--contrast-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(239, 102, 3, 0.3);
    transition: all 0.3s ease;
  }
    .navmenu .call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 102, 3, 0.4);
  }
}
/* Modern Animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--background-color) 0%, var(--background-color-2) 10%) 0%,
    color-mix(in srgb, var(--background-color) 40%, var(--background-color-2) 60%) 50%,
    color-mix(in srgb, var(--background-color-2) 80%, var(--heading-color) 20%) 100%);
  font-size: 14px;
  text-align: center;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(239, 102, 3, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer p {
  font-size: 1.125rem;
  font-style: italic;
  padding: 0;
  margin: 0 0 2.5rem 0;
  color: var(--contrast-color);
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.footer .copyright {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  color: var(--contrast-color);
  opacity: 0.8;
  font-size: 0.95rem;
  position: relative;
}
.footer .copyright::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--accent-color), 
    transparent);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
/* Modern Contact Buttons Container */
.contact-buttons {
  position: fixed;
  bottom: 120px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Modern Contact Button Base Styles */
.contact-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.15),
    0 2px 0 rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: 50%;
  z-index: -1;
}

.contact-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  transform: rotate(45deg) translate(-20px, -20px);
  transition: transform 0.6s ease;
}

.contact-btn:hover::after {
  transform: rotate(45deg) translate(20px, 20px);
}

.contact-btn i {
  font-size: 1.5rem;
  color: var(--contrast-color);
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Call Button Specific Styles */
.contact-btn.call-btn {
  background: linear-gradient(135deg, var(--second-color), color-mix(in srgb, var(--second-color) 70%, var(--background-color-2) 30%));
}

.contact-btn.call-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 
    0 12px 35px rgba(234, 195, 210, 0.4),
    0 2px 0 rgba(255, 255, 255, 0.1) inset;
}

.contact-btn.call-btn:hover i {
  transform: scale(1.2) rotate(10deg);
}

/* WhatsApp Button Specific Styles */
.contact-btn.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-btn.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 
    0 12px 35px rgba(37, 211, 102, 0.4),
    0 2px 0 rgba(255, 255, 255, 0.1) inset;
}

.contact-btn.whatsapp-btn:hover i {
  transform: scale(1.2);
}

/* Button Labels (Optional) */
.contact-btn .btn-label {
  position: absolute;
  right: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--heading-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.contact-btn .btn-label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(255, 255, 255, 0.95);
}

.contact-btn:hover .btn-label {
  opacity: 1;
  transform: translateX(0);
}

/* Modern Scroll to Top Button */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 30px;
  bottom: -20px;
  z-index: 99999;
  background: linear-gradient(135deg, var(--background-color-2), var(--accent-color));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 
    0 8px 25px rgba(194, 18, 89, 0.3),
    0 2px 0 rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.scroll-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-top::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  transform: rotate(45deg) translate(-20px, -20px);
  transition: transform 0.6s ease;
}

.scroll-top:hover::before {
  opacity: 1;
}

.scroll-top:hover::after {
  transform: rotate(45deg) translate(20px, 20px);
}

.scroll-top i {
  font-size: 1.5rem;
  color: var(--contrast-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 35px rgba(194, 18, 89, 0.4),
    0 2px 0 rgba(255, 255, 255, 0.1) inset;
}

.scroll-top:hover i {
  transform: translateY(-2px);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
  animation: bounceIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pulse Animation for Buttons */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 102, 3, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(239, 102, 3, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 102, 3, 0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(20px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) translateY(-5px);
  }
  70% {
    transform: scale(0.95) translateY(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Optional: Add pulse animation to call button */
.contact-btn.call-btn {
  animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-buttons {
    bottom: 100px;
    right: 20px;
    gap: 0.75rem;
  }
  
  .contact-btn {
    width: 55px;
    height: 55px;
  }
  
  .contact-btn i {
    font-size: 1.3rem;
  }
  
  .contact-btn .btn-label {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    right: 65px;
  }
  
  .scroll-top {
    width: 55px;
    height: 55px;
    right: 20px;
  }
  
  .scroll-top i {
    font-size: 1.3rem;
  }
  
  .scroll-top.active {
    bottom: 25px;
  }
}

@media (max-width: 480px) {
  .contact-buttons {
    bottom: 90px;
    right: 15px;
    gap: 0.5rem;
  }
  
  .contact-btn {
    width: 50px;
    height: 50px;
  }
  
  .contact-btn i {
    font-size: 1.2rem;
  }
  
  .contact-btn .btn-label {
    display: none; /* Hide labels on very small screens */
  }
  
  .scroll-top {
    width: 50px;
    height: 50px;
    right: 15px;
  }
  
  .scroll-top i {
    font-size: 1.2rem;
  }
  
  .scroll-top.active {
    bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 4rem;
  position: relative;
  text-align: right;
  direction: rtl;
}

.section-title h2 {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0;
  line-height: 1;
  margin: 0 0 0.5rem 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  font-family: var(--heading-font);
  text-transform: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--background-color) 100%, transparent 0%) 0%,
    color-mix(in srgb, var(--background-color) 60%, var(--background-color-2) 40%) 50%,
    color-mix(in srgb, var(--background-color-2) 30%, var(--accent-color) 70%) 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 90vh;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(239, 102, 3, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(194, 18, 89, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 85vh;
  padding-top: 80px;
  z-index: 2;
}

.hero h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero h2 span {
  background: linear-gradient(135deg, var(--contrast-color), color-mix(in srgb, var(--contrast-color) 80%, var(--accent-color) 20%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}
.hero h2 span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--background-color-2));
  border-radius: 2px;
  transform: scaleX(0.8);
  transition: transform 0.3s ease;
}
.hero p {
  max-width: 80%;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
  margin: 0 auto 2rem auto;
  color: var(--contrast-color);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .btn-get-started {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  margin: 0.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  border: 2px solid transparent;
  box-shadow: 
    0 8px 25px rgba(239, 102, 3, 0.3),
    0 2px 0 rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}
.hero .btn-get-started::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.6s ease;
}
.hero .btn-get-started:hover::before {
  left: 100%;
}

.hero .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(239, 102, 3, 0.4),
    0 2px 0 rgba(255, 255, 255, 0.1) inset;
  border-color: rgba(255, 255, 255, 0.3);
}
.hero .btn-get-started:active {
  transform: translateY(-1px);
  box-shadow: 
    0 6px 20px rgba(239, 102, 3, 0.3),
    0 2px 0 rgba(255, 255, 255, 0.1) inset;
}
@media (min-width: 1024px) {
  .hero p {
    max-width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 90vh;
  }

  .hero h2 {
    font-size: 28px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: -2s;
  fill: var(--contrast-color);
  opacity: 0.7;
}

.hero .wave2 use {
  animation: move-forever2 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: -2s;
  fill: var(--contrast-color);
  opacity: 0.5;
}
.hero .wave3 use {
  animation: move-forever3 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: -2s;
  fill: var(--contrast-color);
  opacity: 0.3;
}

@keyframes move-forever1 {
  0% {
    transform: translateX(-90px) translateY(0) scaleY(1);
  }
  50% {
    transform: translateX(45px) translateY(-5px) scaleY(1.1);
  }
  100% {
    transform: translateX(85px) translateY(0) scaleY(1);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translateX(-85px) translateY(3px) scaleY(0.9);
  }
  50% {
    transform: translateX(40px) translateY(-2px) scaleY(1);
  }
  100% {
    transform: translateX(90px) translateY(3px) scaleY(0.9);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translateX(-95px) translateY(5px) scaleY(0.8);
  }
  50% {
    transform: translateX(35px) translateY(0) scaleY(0.9);
  }
  100% {
    transform: translateX(95px) translateY(5px) scaleY(0.8);
  }
}
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero .carousel-container::before {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.about ul li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: right;
}
.about ul li::before {
  content: '';
  position: absolute;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    color-mix(in srgb, var(--accent-color), transparent 95%), 
    transparent);
  transition: right 0.5s ease;
  z-index: -1;
}

.about ul li:hover {
  transform: translateX(-8px);
  border-bottom-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about ul li:hover::before {
  right: 100%;
}

.about ul li:last-child {
  border-bottom: none;
}

.about ul i {
  font-size: 1.375rem;
  padding-left: 0.75rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.about ul li:hover i {
  transform: scale(1.2) rotate(5deg);
  color: var(--background-color-2);
}

/* Modern icon background */
.about ul i::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about ul li:hover i::before {
  opacity: 1;
}


.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}
.about ul li {
  animation: listItemFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.about ul li:nth-child(1) { animation-delay: 0.1s; }
.about ul li:nth-child(2) { animation-delay: 0.2s; }
.about ul li:nth-child(3) { animation-delay: 0.3s; }
.about ul li:nth-child(4) { animation-delay: 0.4s; }
.about ul li:nth-child(5) { animation-delay: 0.5s; }
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  display: flex;
  background: transparent;
}

.features .nav-link {
  background: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 1.5rem 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  flex-direction: column;
  text-align: center;
  gap: 0.75rem;
}

.features .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.features .nav-link::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transform: rotate(45deg) translate(-20px, -20px);
  transition: transform 0.6s ease;
  z-index: 0;
}

.features .nav-link:hover::after {
  transform: rotate(45deg) translate(20px, 20px);
}

.features .nav-link i {
  padding-left: 0;
  font-size: 3rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  color: var(--accent-color);
}

.features .nav-link h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.features .nav-link:hover {
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.features .nav-link:hover::before {
  opacity: 1;
}

.features .nav-link:hover i {
  color: var(--contrast-color);
  transform: scale(1.1);
}

.features .nav-link.active {
  background: linear-gradient(135deg, var(--background-color-2), var(--accent-color));
  color: var(--contrast-color);
  border-color: transparent;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(194, 18, 89, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.features .nav-link.active::before {
  opacity: 1;
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .nav-link.active i {
  color: var(--contrast-color);
  transform: scale(1.1);
}

.features .tab-content {
  margin-top: 2.5rem;
  position: relative;
}

.features .tab-pane {
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.features .tab-pane ul li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.features .tab-pane ul li:last-child {
  border-bottom: none;
}

.features .tab-pane ul i {
  font-size: 1.25rem;
  padding-left: 0.75rem;
  color: var(--accent-color);
  margin-top: 0.125rem;
  transition: all 0.3s ease;
}

.features .tab-pane ul li:hover {
  transform: translateX(-5px);
}

.features .tab-pane ul li:hover i {
  transform: scale(1.2) rotate(5deg);
  color: var(--background-color-2);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

.features .tab-pane p {
  color: var(--default-color);
  line-height: 1.7;
  font-size: 1.05rem;
}

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

@media (max-width: 768px) {
  .features .nav-tabs {
    gap: 0.75rem;
    flex-direction: column;
  }
  
  .features .nav-link {
    padding: 1.25rem 1rem;
    flex-direction: row;
    text-align: right;
    gap: 1rem;
  }
  
  .features .nav-link i {
    font-size: 2.25rem;
  }
  
  .features .nav-link h4 {
    font-size: 1rem;
    text-align: right;
  }
  
  .features .tab-content {
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 1rem 0.875rem;
  }
  
  .features .nav-link i {
    font-size: 1.75rem;
  }
  
  .features .nav-link h4 {
    font-size: 0.95rem;
  }
  
  .features .tab-pane h3 {
    font-size: 1.5rem;
  }
  
  .features .tab-pane ul li {
    padding: 0.5rem 0;
  }
  
  .features .tab-pane ul i {
    font-size: 1.125rem;
    padding-left: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .features .nav-link,
  .features .nav-link i,
  .features .nav-link h4,
  .features .tab-pane,
  .features .tab-pane ul li,
  .features .tab-pane ul i {
    transition: none;
    animation: none;
  }
  
  .features .nav-link:hover,
  .features .nav-link.active {
    transform: none;
  }
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--background-color-2) 0%, var(--accent-color) 100%) 0%,
    color-mix(in srgb, var(--background-color-2) 60%, var(--accent-color) 40%) 50%,
    color-mix(in srgb, var(--accent-color) 80%, var(--background-color-2) 20%) 100%);
}

.call-to-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(239, 102, 3, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.call-to-action::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  animation: shimmer 8s linear infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    transform: rotate(45deg) translate(-30%, -30%);
  }
  100% {
    transform: rotate(45deg) translate(20%, 20%);
  }
}

.call-to-action .container {
  position: relative;
  z-index: 3;
  text-align: center;
}

.call-to-action h3 {
  color: var(--contrast-color);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.call-to-action p {
  color: var(--contrast-color);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0.5rem;
  background: var(--contrast-color);
  color: var(--background-color-2);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 
    0 8px 30px rgba(255, 255, 255, 0.2),
    0 2px 0 rgba(255, 255, 255, 0.1) inset;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
  backdrop-filter: blur(10px);
}

.call-to-action .cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4), 
    transparent);
  transition: left 0.6s ease;
}

.call-to-action .cta-btn:hover::before {
  left: 100%;
}

.call-to-action .cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  opacity: 0;
  border-radius: 50px;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.call-to-action .cta-btn:hover::after {
  opacity: 1;
}

.call-to-action .cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 2px 0 rgba(255, 255, 255, 0.1) inset;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 
    0 8px 25px rgba(255, 255, 255, 0.25),
    0 2px 0 rgba(255, 255, 255, 0.1) inset;
}

.call-to-action .cta-btn i {
  font-size: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.call-to-action .cta-btn:hover i {
  transform: translateX(-5px);
}

/* Floating elements animation */
.call-to-action .floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.call-to-action .floating-element:nth-child(1) {
  width: 40px;
  height: 40px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.call-to-action .floating-element:nth-child(2) {
  width: 60px;
  height: 60px;
  bottom: 30%;
  right: 15%;
  animation-delay: -2s;
}

.call-to-action .floating-element:nth-child(3) {
  width: 30px;
  height: 30px;
  top: 60%;
  left: 20%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .call-to-action {
    padding: 4rem 0;
  }
  
  .call-to-action h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .call-to-action p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .call-to-action .cta-btn {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
  }
  
  .call-to-action .floating-element {
    display: none;
  }
}

@media (max-width: 480px) {
  .call-to-action {
    padding: 3rem 0;
  }
  
  .call-to-action h3 {
    font-size: 1.75rem;
  }
  
  .call-to-action p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .call-to-action .cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .call-to-action::after,
  .call-to-action .floating-element,
  .call-to-action h3,
  .call-to-action p,
  .call-to-action .cta-btn {
    animation: none;
    transition: none;
  }
  
  .call-to-action .cta-btn:hover {
    transform: none;
  }
  
  .call-to-action .cta-btn::before {
    display: none;
  }
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background: var(--surface-color);
  box-shadow: 
    0 8px 40px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 3rem 2rem 3rem 4.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.services .service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(239, 102, 3, 0.03) 0%,
    rgba(194, 18, 89, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.services .service-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
  z-index: 0;
}
.services .service-item:hover::before {
  opacity: 1;
}
.services .service-item:hover::after {
  transform: rotate(45deg) translate(20px, 20px);
}

.services .service-item .icon {
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.services .service-item .icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.2) 0%,
    transparent 50%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services .service-item:hover .icon::before {
  opacity: 1;
}

.services .service-item .icon i {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--contrast-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.services .service-item:hover .icon {
  transform: translateY(-50%) scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 35px rgba(239, 102, 3, 0.4),
    0 2px 0 rgba(255, 255, 255, 0.2) inset;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 0.5rem 0 1rem 0;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
  line-height: 1.2;
  text-align: right;
}

.services .service-item p {
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--default-color);
  opacity: 0.8;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  text-align: right;
}

/* Responsive Design */
@media (min-width: 1365px) {
  .services .service-item {
    padding: 3.5rem 2.5rem 3.5rem 5rem;
  }
  
  .services .service-item .icon {
    width: 90px;
    height: 90px;
    left: -2rem;
  }
  
  .services .service-item .icon i {
    font-size: 3rem;
  }
}

@media (max-width: 1199px) {
  .services .service-item {
    padding: 2.5rem 1.5rem 2.5rem 4rem;
  }
  
  .services .service-item .icon {
    width: 70px;
    height: 70px;
    left: -1.25rem;
  }
  
  .services .service-item .icon i {
    font-size: 2rem;
  }
  
  .services .service-item h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .services .service-item {
    padding: 2rem 1.5rem 2rem 3.5rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
  }
  
  .services .service-item .icon {
    width: 60px;
    height: 60px;
    left: -1rem;
    border-radius: 16px;
  }
  
  .services .service-item .icon i {
    font-size: 1.75rem;
  }
  
  .services .service-item h3 {
    font-size: 1.125rem;
    margin: 0.25rem 0 0.75rem 0;
  }
  
  .services .service-item p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .services .service-item:hover {
    transform: translateY(-8px) scale(1.01);
  }
}

@media (max-width: 480px) {
  .services .service-item {
    padding: 1.75rem 1.25rem 1.75rem 3rem;
  }
  
  .services .service-item .icon {
    width: 50px;
    height: 50px;
    left: -0.75rem;
    border-radius: 14px;
  }
  
  .services .service-item .icon i {
    font-size: 1.5rem;
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  direction: rtl;
  text-align: right;
}

.testimonials .testimonial-item {
  background: var(--surface-color);
  box-shadow: 
    0 8px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
  padding: 2.5rem;
  margin: 1rem;
  position: relative;
  height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: right;
  direction: rtl;
  overflow: hidden;
}

.testimonials .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(239, 102, 3, 0.03) 0%,
    rgba(194, 18, 89, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.testimonials .testimonial-item:hover::before {
  opacity: 1;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-direction: row;
}

.testimonials .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonials .testimonial-item:hover .testimonial-img {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-info {
  flex: 1;
  text-align: right;
}

.testimonials .testimonial-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
  line-height: 1.2;
}

.testimonials .testimonial-item h4 {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-weight: 500;
}

.testimonials .stars {
  margin: 0.75rem 0;
  display: flex;
  gap: 0.25rem;
  justify-content: flex-end;
}

.testimonials .stars i {
  color: #FFD700;
  font-size: 1.125rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.testimonials .testimonial-item:hover .stars i {
  transform: scale(1.2);
  color: #FFC107;
}

.testimonials .quote-icon-left,
.testimonials .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
  font-size: 1.5rem;
  line-height: 0;
  position: relative;
  opacity: 0.7;
  transition: all 0.3s ease;
  display: inline-block;
}

.testimonials .quote-icon-left {
  margin-left: 0.5rem;
  transform: rotate(180deg);
}

.testimonials .quote-icon-right {
  margin-right: 0.5rem;
  transform: rotate(180deg);
}

.testimonials .testimonial-item:hover .quote-icon-left,
.testimonials .testimonial-item:hover .quote-icon-right {
  color: var(--accent-color);
  opacity: 1;
  transform: rotate(180deg) scale(1.1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 1.5rem 0 0 0;
  color: var(--default-color);
  line-height: 1.7;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
  text-align: right;
  direction: rtl;
}

.testimonials .testimonial-item p span {
  display: inline-block;
  padding: 0 0.5rem;
}

/* Modern decorative element */
.testimonial-decoration {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  border-radius: 0 0 60px 0;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.testimonials .testimonial-item:hover .testimonial-decoration {
  opacity: 0.2;
}

/* Modern Swiper Pagination */
.testimonials .swiper-wrapper {
  height: auto;
  padding: 1rem 0;
}

.testimonials .swiper-pagination {
  margin-top: 2rem;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  opacity: 1;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonials .swiper-pagination .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  border-radius: inherit;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: transparent;
  width: 32px;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active::before {
  transform: scale(1);
}

/* Animation for testimonial items */
@keyframes testimonialFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

.testimonials .swiper-slide {
  animation: testimonialFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 2rem 1.5rem;
    margin: 0.5rem;
    border-radius: 20px;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .testimonial-info {
    text-align: center;
  }
  
  .testimonials .stars {
    justify-content: center;
  }
  
  .testimonials .testimonial-img {
    width: 70px;
    height: 70px;
  }
  
  .testimonials .testimonial-item h3 {
    font-size: 1.125rem;
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 0.85rem;
  }
  
  .testimonials .quote-icon-left,
  .testimonials .quote-icon-right {
    font-size: 1.25rem;
  }
  
  .testimonials .testimonial-item:hover {
    transform: translateY(-5px) scale(1.01);
  }
}

@media (max-width: 480px) {
  .testimonials .testimonial-item {
    padding: 1.5rem 1.25rem;
  }
  
  .testimonials .testimonial-img {
    width: 60px;
    height: 60px;
  }
  
  .testimonials .testimonial-item h3 {
    font-size: 1rem;
  }
  
  .testimonials .testimonial-item p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .testimonials .stars i {
    font-size: 1rem;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .testimonials .testimonial-item,
  .testimonials .testimonial-img,
  .testimonials .stars i,
  .testimonials .quote-icon-left,
  .testimonials .quote-icon-right,
  .testimonials .swiper-pagination .swiper-pagination-bullet,
  .testimonials .swiper-slide {
    transition: none;
    animation: none;
  }
  
  .testimonials .testimonial-item:hover {
    transform: none;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-right: 1rem;
}
.faq .content-subtitle::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  border-radius: 2px;
}

.faq .content-title {
  color: var(--heading-color);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
  position: relative;
}
.faq .content-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--background-color-2));
  border-radius: 2px;
}
.faq p {
  line-height: 1.7;
  color: var(--default-color);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.faq .custom-accordion {
  background: transparent;
  border: none;
  border-radius: 16px;
  overflow: hidden;
}
.faq .custom-accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 1rem;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.faq .custom-accordion .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  text-align: left;
  color: var(--default-color);
  border: none;
  padding-left: 40px;
  border-radius: 0;
  position: relative;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
}

.faq .custom-accordion .accordion-item .btn-link::before {
  content: "\f282";
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.25rem;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  color: var(--contrast-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(239, 102, 3, 0.2);
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true] {
  color: var(--accent-color);
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";
  position: absolute;
  color: var(--accent-color);
  top: 50%;
  transform: translateY(-50%);
}

.faq .custom-accordion .accordion-item .accordion-body {
  padding: 20px 20px 20px 20px;
  color: var(--default-color);
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item + .info-item {
  margin-top: 2.5rem;
}

.contact .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.contact .info-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  transition: height 0.4s ease;
  border-radius: 0 16px 16px 0;
}

.contact .info-item:hover::before {
  height: 100%;
}

.contact .info-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transform: rotate(45deg) translate(-20px, -20px);
  transition: transform 0.6s ease;
}

.contact .info-item:hover::after {
  transform: rotate(45deg) translate(20px, 20px);
}

.contact .info-item i {
  color: var(--accent-color);
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--accent-color), transparent 92%),
    color-mix(in srgb, var(--background-color-2), transparent 92%));
  font-size: 1.25rem;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(239, 102, 3, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact .info-item i::before {
  position: relative;
  z-index: 1;
}

.contact .info-item i::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact .info-item:hover i {
  transform: scale(1.1) rotate(5deg);
  color: var(--contrast-color);
  box-shadow: 0 8px 25px rgba(239, 102, 3, 0.25);
}

.contact .info-item:hover i::after {
  opacity: 1;
}

.contact .info-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.contact .info-item:hover h3 {
  color: var(--accent-color);
  transform: translateX(-5px);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.6;
  transition: all 0.3s ease;
}

.contact .info-item:hover p {
  transform: translateX(-3px);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contact .info-item .info-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.contact .info-item .info-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--background-color-2));
  transition: width 0.3s ease;
  border-radius: 1px;
}

.contact .info-item .info-link:hover {
  color: var(--background-color-2);
}

.contact .info-item .info-link:hover::after {
  width: 100%;
}

/* Animation for info items */
@keyframes infoItemFadeIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact .info-item {
  animation: infoItemFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.contact .info-item:nth-child(1) { animation-delay: 0.1s; }
.contact .info-item:nth-child(2) { animation-delay: 0.2s; }
.contact .info-item:nth-child(3) { animation-delay: 0.3s; }
.contact .info-item:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
  .contact .info-item + .info-item {
    margin-top: 1.5rem;
  }
  
  .contact .info-item {
    padding: 1.25rem;
    gap: 1rem;
  }
  
  .contact .info-item i {
    width: 50px;
    height: 50px;
    font-size: 1.125rem;
    border-radius: 12px;
  }
  
  .contact .info-item h3 {
    font-size: 1.125rem;
  }
  
  .contact .info-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .contact .info-item {
    padding: 1rem;
    gap: 0.875rem;
    flex-direction: column;
    text-align: center;
  }
  
  .contact .info-item i {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    align-self: center;
  }
  
  .contact .info-item h3 {
    font-size: 1rem;
  }
  
  .contact .info-item p {
    font-size: 0.9rem;
  }
  
  .contact .info-item:hover h3,
  .contact .info-item:hover p {
    transform: none;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .contact .info-item,
  .contact .info-item i,
  .contact .info-item h3,
  .contact .info-item p,
  .contact .info-item .info-link,
  .contact .info-item::before,
  .contact .info-item::after {
    transition: none;
    animation: none;
  }
  
  .contact .info-item:hover i {
    transform: none;
  }
  
  .contact .info-item:hover h3,
  .contact .info-item:hover p {
    transform: none;
  }
}
.premium-services {
  padding: 6rem 0;
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--background-color) 0%, #f8f9fa 100%) 0%,
    color-mix(in srgb, var(--background-color) 60%, #f8f9fa 40%) 50%,
    color-mix(in srgb, #f8f9fa 80%, var(--background-color) 20%) 100%);
  position: relative;
  overflow: hidden;
}
.premium-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(239, 102, 3, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(194, 18, 89, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.premium-services .row {
  margin-bottom: 4rem;
  align-items: center;
  background: var(--surface-color);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 
    0 8px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.premium-services .row::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  transition: height 0.4s ease;
  border-radius: 0 24px 24px 0;
}
.premium-services .row:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.premium-services .row:hover::before {
  height: 100%;
}

.premium-services .row:nth-child(even)::before {
  right: auto;
  left: 0;
  border-radius: 24px 0 0 24px;
}

.device-img {
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  max-height: 450px;
}
.device-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(239, 102, 3, 0.1) 0%,
    rgba(194, 18, 89, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.device-img:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.1);
}

.device-img:hover::before {
  opacity: 1;
}

.premium-services .col-md-6:last-child {
  padding: 2rem;
}

.premium-services h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--background-color-2);
  margin-bottom: 1.5rem;
  position: relative;
  padding-right: 1.5rem;
}
.premium-services h3::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 30px;
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  border-radius: 3px;
}

.premium-services .row:nth-child(even) h3::before {
  right: auto;
  left: 0;
}

.premium-services p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  text-align: right;
  direction: rtl;
}

.premium-services strong {
  color: var(--accent-color);
  font-weight: 700;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.premium-services .row:hover strong {
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  color: var(--contrast-color);
}

.contact-highlight {
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(239, 102, 3, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.contact-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  transition: left 0.6s ease;
}

.contact-highlight:hover::before {
  left: 100%;
}

.contact-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 102, 3, 0.4);
}

.service-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(239, 102, 3, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(239, 102, 3, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(239, 102, 3, 0.5);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .premium-services {
    padding: 4rem 0;
  }
  
  .premium-services .row {
    margin-bottom: 3rem;
    padding: 1.5rem;
    border-radius: 20px;
  }
  
  .premium-services .col-md-6:last-child {
    padding: 1.5rem 0;
  }
  
  .device-img {
    margin-bottom: 2rem;
    border-radius: 16px;
  }
  
  .premium-services h3 {
    padding-right: 1rem;
  }
  
  .premium-services h3::before {
    width: 4px;
    height: 25px;
  }
  
  .premium-services p {
    font-size: 1rem;
    text-align: center;
  }
  
  .service-badge {
    top: 1rem;
    left: 1rem;
    font-size: 0.8rem;
    padding: 0.375rem 0.875rem;
  }
}

@media (max-width: 576px) {
  .premium-services .row {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 16px;
  }
  
  .premium-services .section-title h2 {
    font-size: 1.75rem;
  }
  
  .premium-services .section-title p {
    font-size: 1rem;
  }
  
  .device-img {
    border-radius: 12px;
  }
  
  .premium-services h3 {
    font-size: 1.375rem;
    text-align: center;
    padding-right: 0;
  }
  
  .premium-services h3::before {
    display: none;
  }
  
  .contact-highlight {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .premium-services .row,
  .device-img,
  .contact-highlight,
  .premium-services strong,
  .service-badge {
    transition: none;
    animation: none;
  }
  
  .premium-services .row:hover,
  .device-img:hover {
    transform: none;
  }
  
  .contact-highlight:hover {
    transform: none;
  }
}
.maintenance-request {
  padding: 6rem 0;
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--background-color) 0%, #f8f9fa 100%) 0%,
    color-mix(in srgb, var(--background-color) 60%, #f8f9fa 40%) 50%,
    color-mix(in srgb, #f8f9fa 80%, var(--background-color) 20%) 100%);
  position: relative;
  overflow: hidden;
}

.maintenance-request::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(239, 102, 3, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(194, 18, 89, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.maintenance-form {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.maintenance-form::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--background-color-2));
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(239, 102, 3, 0.3);
}

.form-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.form-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
}

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

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

.required {
  color: #dc3545;
}

.input-group {
  position: relative;
  transition: all 0.3s ease;
}

.input-group-text {
  background: linear-gradient(135deg, var(--accent-color), var(--background-color-2));
  border: none;
  color: var(--contrast-color);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control,
.form-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--surface-color);
  color: var(--default-color);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
  background: var(--surface-color);
  color: var(--default-color);
}

.form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.form-text {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.5rem;
}

/* Modern validation styles */
.was-validated .form-control:valid,
.was-validated .form-select:valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.4.4.4-.4'/%3e%3cpath d='M6 7v2'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback {
  display: block;
}

/* Submit button styles */
.form-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.btn-submit {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--contrast-color);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  transition: left 0.6s ease;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.btn-submit:active {
  transform: translateY(-1px);
}

.btn-icon {
  font-size: 1.25rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-note i {
  color: var(--accent-color);
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success i {
  font-size: 4rem;
  color: #25D366;
  margin-bottom: 1rem;
}

.form-success h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

/* Animations */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.form-shake {
  animation: shake 0.5s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .maintenance-request {
    padding: 4rem 0;
  }
  
  .maintenance-form {
    padding: 2rem;
    border-radius: 20px;
  }
  
  .form-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }
  
  .form-icon i {
    font-size: 1.5rem;
  }
  
  .form-header h3 {
    font-size: 1.5rem;
  }
  
  .btn-submit {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .maintenance-form {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  .form-header {
    margin-bottom: 2rem;
  }
  
  .form-header h3 {
    font-size: 1.375rem;
  }
  
  .form-header p {
    font-size: 1rem;
  }
}
.manual-whatsapp {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffc107 !important;
    border-radius: 12px;
}

.message-preview {
    max-height: 200px;
    overflow-y: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
}

.copy-message {
    transition: all 0.3s ease;
}

.copy-message:hover {
    transform: translateY(-2px);
}

/* WhatsApp API loading states */
.whatsapp-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    color: white;
    font-size: 1.2rem;
}

/* Enhanced phone number formatting */
.phone-prefix {
    background: #e9ecef;
    border: 1px solid #ced4da;
    border-right: none;
    padding: 0.75rem;
    border-radius: 12px 0 0 12px;
    font-weight: 600;
    color: var(--default-color);
}