:root {
    --primary: #CA1634;
    --secondary: #FFFFFF;
    --primary-light: #E74C64;
    --primary-dark: #8A0F25;
    --primary-muted: #F9D9DE;
    --neutral-dark: #212529;
    --neutral-light: #F8F9FA;
    --neutral-muted: #6C757D;
    --accent-1: #FF6B81;
    --accent-2: #B30E2C;
    --accent-3: #F2A7B4;
    --transition-speed: 0.4s;
    --navbar-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
a { text-decoration: none; }
html { scroll-behavior: smooth; scroll-padding-top: var(--navbar-height); }
body { font-family: 'Cairo', sans-serif; direction: rtl; }

/* ===== Modern Navbar Styles ===== */
.custom-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: black;
    padding: 0.75rem 1rem;
    transition: all var(--transition-speed) ease;
    height: var(--navbar-height);
    display: flex;
    align-items: center;
}

.custom-navbar.scrolled {
    background-color: var(--secondary);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.custom-navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.custom-navbar .navbar-brand {
    order: 1;
    transition: transform 0.3s ease;
}

.custom-navbar .navbar-brand:hover {
    transform: scale(1.05);
}

.custom-navbar .nav-link {
    color: var(--secondary);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.8rem;
    margin: 0 0.2rem;
}

.custom-navbar.scrolled .nav-link {
    color: var(--primary-dark);
}

.custom-navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-1);
    transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover::before,
.custom-navbar .nav-link.active::before {
    width: 100%;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: var(--accent-1);
}

.custom-navbar.scrolled .nav-link:hover,
.custom-navbar.scrolled .nav-link.active {
    color: var(--primary);
}

/* Toggler icon styling */
.custom-navbar .navbar-toggler {
    order: 2;
    border: none;
    padding: 0.25rem;
    transition: all 0.3s ease;
}

.custom-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 2px var(--accent-1);
}

.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    transition: background-image 0.3s ease;
    width: 1.5em;
    height: 1.5em;
}

.custom-navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(202,22,52,0.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Call button styling */
.call-btn {
    background-color: var(--accent-2);
    color: var(--primary-muted);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.call-btn:hover {
    background-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.ms-2-fix {
    margin-inline-start: 0.5rem;
}

/* Navbar collapse */
.custom-navbar .navbar-collapse {
    order: 3;
}

.nav-rtl-order {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

/* Responsive styles */
@media (min-width: 992px) {
    .custom-navbar .navbar-collapse {
display: flex !important;
align-items: center;
justify-content: flex-end;
gap: 1rem;
    }
}

@media (max-width: 991.98px) {
    .custom-navbar {
padding: 0.5rem 1rem;
    }
    
    .custom-navbar.scrolled {
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
    }
    
    .custom-navbar .navbar-collapse {
position: absolute;
top: 100%;
right: 0;
left: 0;
background-color: var(--secondary);
padding: 1rem;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-rtl-order {
flex-direction: column;
align-items: flex-start;
gap: 0.5rem;
    }
    
    .custom-navbar .nav-link {
color: var(--primary-dark);
padding: 0.75rem 1rem;
width: 100%;
border-radius: 8px;
transition: all 0.3s ease;
    }
    
    .custom-navbar .nav-link:hover {
background-color: var(--primary-muted);
    }
    
    .call-btn {
width: 100%;
justify-content: center;
margin-top: 0.5rem;
    }
}

/* Add space for fixed navbar */
body {
    padding-top: var(--navbar-height);
}

/* Demo content */
.section {
    height: 100vh;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

#maintenance { background-color: #dee2e6; }
#faq { background-color: #ced4da; }
#reviews { background-color: #adb5bd; }
#contact { background-color: #6c757d; color: white; }
/* hero section */
/* ========= إعداد خلفية وأوفـرلاي ========= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    isolation: isolate;
    position: relative;
    direction: rtl;
    overflow: hidden;
    padding-top: var(--navbar-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 1s ease-out;
    will-change: transform;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

@media (hover: none) and (pointer: coarse) {
  .hero-bg {
    background-attachment: scroll; /* تأكيد عدم استخدام fixed على iOS */
    transform: none;               /* يمنع إحساس الزوم على الصغير */
  }
}

/* Art-direction: صورة بديلة للموبايل (اختياري لكنه مهم للجودة) */
@media (max-width: 768px), (max-aspect-ratio: 3/4) {
  .hero-bg {
    /* لو عرّفت --hero-bg-mobile هتتطبق، وإلا يكمّل على الأساسية */
    background-image: var(--hero-bg-mobile, var(--hero-bg));
    /* اضبط الفوكس حسب موضوع صورتك */
    background-position: center top;
  }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: saturate(1.8) blur(4px);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--secondary);
    text-align: start;
    padding: 2rem 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.hero-content.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-eyebrow {
    font-size: 1rem;
    color: var(--secondary);
    letter-spacing: 0.5px;
    background: rgba(255,255,255,.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(202, 22, 52, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(202, 22, 52, 0); }
    100% { box-shadow: 0 0 0 0 rgba(202, 22, 52, 0); }
}

.hero-title {
    font-weight: 900;
    line-height: 1.2;
    font-size: clamp(2rem, 5vw, 3.8rem);
    color: var(--secondary);
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--neutral-light);
    max-width: 60ch;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    --shadow: 0 12px 30px rgba(202, 22, 52, 0.25);
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-hero-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(202, 22, 52, 0.3);
}

.btn-hero-primary:hover::before {
    transform: translateX(100%);
}

.btn-hero-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
    padding: calc(1rem - 2px) 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn-hero-outline:hover {
    color: var(--secondary);
    border-color: var(--primary);
}

.btn-hero-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.icon-fix {
    margin-inline-start: 0.35rem;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .icon-fix {
    transform: translateX(-3px);
}

.btn-hero-outline:hover .icon-fix {
    transform: translateX(3px);
}

/* تأثيرات الجسيمات المتحركة */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
transform: translateY(0) translateX(0) rotate(0deg);
opacity: 0.3;
    }
    100% {
transform: translateY(-100vh) translateX(100px) rotate(360deg);
opacity: 0;
    }
}

/* إستجابة الشاشات */
@media (max-width: 991.98px) {
    .hero {
min-height: 80vh;
text-align: center;
    }
    
    .hero-title::after {
right: 50%;
transform: translateX(50%);
    }
    
    .hero-actions {
justify-content: center;
    }
    
    .hero-features {
justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .btn-hero-primary, .btn-hero-outline {
width: 100%;
justify-content: center;
    }
    
    .hero-actions {
flex-direction: column;
    }
}
.btn-hero-outline {
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-hero-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);}
  .particle.light { background: rgba(255,255,255,.4); }

/* services section */
.services-section {
    position: relative;
    padding: 6rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;

}

.services-section .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-muted);
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    line-height: 1.6;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}
.service-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    transform: translateY(50px);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.service-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(202, 22, 52, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.5s ease;
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(202, 22, 52, 0.3);
}
.service-icon i {
    font-size: 2.5rem;
    color: white;
}
.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    transform: scale(1.5);
    transition: all 0.5s ease;
}
.service-card:hover .service-icon::after {
    opacity: 0.3;
    transform: scale(1);
}
.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}
.service-card:hover .service-title {
    color: var(--primary);
}
.service-description {
    color: var(--neutral-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.service-link:hover {
    color: white;
    gap: 0.8rem;
}
.service-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.service-link i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(-5px);
}
/* تأثيرات الظهور */
.service-card.visible {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* responsive design */
@media (max-width: 768px) {
    .services-grid {
grid-template-columns: 1fr;
    }
    
    .section-title {
font-size: 2.2rem;
    }
    
    .services-section {
padding: 3rem 1.5rem;
    }
}
/* maintenance section */
 .maintenance-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.section-header {
    z-index: 2;
}

 .maintenance-section .section-title {
    position: relative;
    display: inline-block;
    color: var(--neutral-light) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 800;
    letter-spacing: -0.5px;
}

 .maintenance-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    border-radius: 2px;
}

 .maintenance-section .section-subtitle {
    color: var(--primary-muted);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.maintenance-item {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    height: 100%;
}

.maintenance-col.left .maintenance-item {
    transform: translateX(-50px);
}

.maintenance-col.right .maintenance-item {
    transform: translateX(50px);
}

.maintenance-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-1), var(--accent-2));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s ease;
}

.maintenance-item:hover {
    transform: translateY(-12px) translateX(0) !important;
    box-shadow: 
0 25px 50px rgba(0, 0, 0, 0.25),
0 6px 16px rgba(255, 255, 255, 0.15) inset;
}

.maintenance-item:hover::before {
    transform: scaleY(1);
}

.item-title {
    transition: all 0.4s ease;
    color: var(--neutral-light);
    font-weight: 700;
    position: relative;
    text-align: right !important;
}

.item-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    background: var(--primary-muted);
    transition: width 0.4s ease;
}

.maintenance-item:hover .item-title {
    color: var(--neutral-muted) !important;
}

.maintenance-item:hover .item-title::after {
    width: 60px;
}

.item-description {
    color: var(--accent-3) !important;
    line-height: 1.7;
    transition: color 0.3s ease;
    text-align: right !important;
}

.maintenance-item:hover .item-description {
    color: var(--neutral-muted);
}

.heater-image {
    max-width: 70%;
    transform: translateY(50px) scale(1.05);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.heater-image.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.maintenance-item.visible {
    opacity: 1;
    transform: translateX(0) !important;
}

@media (max-width: 992px) {
    .maintenance-center {
order: -1;
    }
    
    .maintenance-col.left .maintenance-item,
    .maintenance-col.right .maintenance-item {
transform: translateY(50px);
    }
    
    .maintenance-item.visible {
transform: translateY(0) !important;
    }
}

@media (max-width: 768px) {
    .section-title::after {
width: 80px;
bottom: -12px;
    }
    
    .maintenance-item {
border-radius: 20px;
    }
}
/* faq section */
 .faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--neutral-light) 0%, #f1f3f5 100%);
    position: relative;
    overflow: hidden;
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
radial-gradient(circle at 90% 10%, rgba(202, 22, 52, 0.05) 0%, transparent 25%),
radial-gradient(circle at 10% 90%, rgba(202, 22, 52, 0.05) 0%, transparent 25%);
    z-index: 0;
}

.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}



.section-subtitle {
    color: var(--neutral-muted);
    max-width: 600px;
    margin: 0 auto;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-tab {
    background: white;
    border: 2px solid var(--primary-muted);
    color: var(--primary-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-tab:hover {
    background: var(--primary-muted);
    transform: translateY(-3px);
}

.faq-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(202, 22, 52, 0.3);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.accordion-button {
    background: white;
    color: var(--primary-dark);
    font-weight: 700;
    padding: 1.5rem;
    border: none;
    box-shadow: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CA1634'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(0);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--neutral-muted);
    line-height: 1.7;
    background: var(--neutral-light);
}

.faq-icon {
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

/* تأثيرات الظهور */
.accordion-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.accordion-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* تأثيرات خاصة للتبديل بين المحتويات */
.faq-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.faq-category.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .faq-tabs {
gap: 0.5rem;
    }
    
    .faq-tab {
padding: 0.6rem 1.2rem;
font-size: 0.9rem;
    }
    
    .accordion-button {
padding: 1.2rem;
    }
}
/* FAQ Section */
.faq-container {
    max-width: 1200px;
    margin: 40px auto;
    background: var(--secondary);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    padding: 30px;
    text-align: center;
}

.faq-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.category-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    padding: 30px;
    background-color: var(--neutral-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: var(--secondary);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all var(--transition-speed);
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.category-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(202, 22, 52, 0.15);
    border-color: var(--primary);
}

.category-btn.active {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.category-btn i {
    font-size: 2rem;
    margin-bottom: 15px;
    transition: transform var(--transition-speed);
}

.category-btn:hover i {
    transform: scale(1.1);
}

.category-btn.active i {
    color: var(--secondary);
}

.category-btn h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.questions-container {
    padding: 30px;
}

.questions-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.questions-category.active {
    display: block;
}

.question-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    background: var(--secondary);
    transition: transform var(--transition-speed);
}

.question-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.question-header {
    padding: 20px;
    background: var(--secondary);
    border: none;
    width: 100%;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.question-header:hover {
    background-color: var(--primary-muted);
}

.question-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neutral-dark);
}

.question-header i {
    transition: transform var(--transition-speed);
    color: var(--primary);
}

.question-header[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: var(--primary-dark);
}

.question-body {
    padding: 20px;
    background-color: var(--neutral-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.no-questions {
    text-align: center;
    padding: 40px;
    color: var(--neutral-muted);
}

.no-questions i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-muted);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RTL Adjustments */
.question-header h4 {
    margin-right: 15px;
}

@media (max-width: 768px) {
    .category-buttons {
grid-template-columns: 1fr;
    }
    
    .faq-header h1 {
font-size: 2rem;
    }
    
    .question-header h4 {
font-size: 1rem;
    }
}
/* review section */
/* Slider Layout */
.reviews-section {
  position: relative;
  overflow: hidden;
  background:linear-gradient(135deg,var(--neutral-light),#f1f3f5);
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 0;
}

.reviews-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.05;
  z-index: 0;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  color: var(--neutral-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Reviews Slider */
.reviews-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 8px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 1rem 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

@media (max-width: 1200px) { 
  .review-card { 
    flex-basis: calc(50% - 0.75rem);
  } 
}

@media (max-width: 768px) {  
  .review-card { 
    flex-basis: calc(100% - 0.5rem);
  } 
}

/* Review Content Style */
.review-content {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.review-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-muted) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.review-card:hover .review-content {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.08),
    0 0 0 1px var(--primary-light);
  border-color: color-mix(in oklab, var(--primary) 25%, transparent);
}

.review-card:hover .review-content::before {
  opacity: 0.05;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.reviewer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 15px;
  border: 3px solid color-mix(in oklab, var(--primary) 15%, transparent);
  flex-shrink: 0;

  display: flex;     /* علشان نخلي المحتوى يتوسّط */
  align-items: center;       /* عموديًا */
  justify-content: center;   /* أفقيًا */
}

.reviewer-avatar i {
  font-size: 28px;   /* اتحكم في حجم الأيقونة */
  color: #6c757d;    /* نفس لون text-secondary */
}

.reviewer-info {
  flex-grow: 1;
}

.reviewer-name {
  font-weight: 700;
  color: var(--neutral-dark);
  margin: 0 0 5px;
  font-size: 1.1rem;
}

.review-rating {
  color: #FFC107;
  font-size: 0.9rem;
}

.review-text {
  color: var(--neutral-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  font-size: 0.95rem;
  position: relative;
  padding: 0 0 0 20px;
}

.review-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: color-mix(in oklab, var(--primary) 15%, transparent);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 15px;
  margin-top: auto;
}

.review-date {
  color: var(--neutral-muted);
  font-size: 0.85rem;
}

.review-service {
  background: color-mix(in oklab, var(--primary) 8%, #fff);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Buttons */
.btn-control {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  color: var(--neutral-muted);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-control:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.08),
    0 0 0 1px color-mix(in oklab, var(--primary) 30%, transparent);
  color: var(--primary);
  border-color: color-mix(in oklab, var(--primary) 30%, transparent);
}

/* Stats */

/* about section */
.about-section {
  background: linear-gradient(135deg, var(--neutral-light) 0%, #f8f9fa 100%);
  overflow: hidden;
  position: relative;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image {
    order: 1;
  }
  
  .about-content {
    order: 2;
  }
}

/* Image Styles */
.about-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-container:hover {
  transform: perspective(1000px) rotateY(0);
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-container:hover .main-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(202, 22, 52, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 10px 25px rgba(202, 22, 52, 0.2);
  animation: float 3s ease-in-out infinite;
  z-index: 3;
}

.floating-element i {
  font-size: 1.5rem;
}

.element-1 {
  top: 20%;
  left: -30px;
  animation-delay: 0s;
}

.element-2 {
  top: 50%;
  right: -30px;
  animation-delay: 1s;
}

.element-3 {
  bottom: 20%;
  left: -30px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Content Styles */
.about-content {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .about-content {
    padding-left: 0;
  }
}

.section-badge {
  display: inline-block;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}


.section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--neutral-muted);
  margin-bottom: 2.5rem;
}

/* Features */
.about-features {
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--primary) 8%, transparent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 1.2rem;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--neutral-dark);
}

.feature-content p {
  color: var(--neutral-muted);
  line-height: 1.6;
  margin: 0;
}

/* Stats */
.about-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--neutral-muted);
  font-weight: 600;
}

/* Buttons */
.about-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  outline: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 14px rgba(202, 22, 52, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(202, 22, 52, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--neutral-dark);
  border: 2px solid color-mix(in oklab, var(--neutral-dark) 20%, transparent);
}

.btn-secondary:hover {
  background: color-mix(in oklab, var(--neutral-dark) 5%, transparent);
  border-color: var(--neutral-dark);
  transform: translateY(-3px);
}

.btn-primary i, .btn-secondary i {
  margin: 0 8px;
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

.btn-secondary:hover i {
  transform: scale(1.1);
}

/* Background Elements */
.background-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, color-mix(in oklab, var(--primary) 15%, transparent) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  opacity: 0.3;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, color-mix(in oklab, var(--primary-light) 20%, transparent) 0%, transparent 70%);
  bottom: 50px;
  left: -100px;
  opacity: 0.2;
}

.circle-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent-1) 20%, transparent) 0%, transparent 70%);
  top: 50%;
  right: 30%;
  opacity: 0.15;
}

/* Animation for stats */
@keyframes countUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-value.animated {
  animation: countUp 1s ease-out forwards;
}
/* contact us */
.contact-section {
  background: linear-gradient(135deg, var(--neutral-light) 0%, #f8f9fa 100%);
  overflow: hidden;
  position: relative;
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: var(--secondary);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0.8;
}

.card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-muted) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.contact-card:hover .card-hover-effect {
  opacity: 0.1;
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--primary) 8%, transparent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.1);
}

.card-icon i {
  font-size: 2rem;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.card-description {
  color: var(--neutral-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.contact-info {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.contact-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  direction: ltr;
  margin: 0.5rem 0;
  padding: 0.5rem;
  background: color-mix(in oklab, var(--primary) 5%, transparent);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-number {
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  transform: scale(1.05);
}

.multiple-numbers .contact-number {
  font-size: 1.3rem;
  margin: 0.3rem 0;
}

.contact-address {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-dark);
  line-height: 1.6;
  padding: 1rem;
  background: color-mix(in oklab, var(--primary) 5%, transparent);
  border-radius: 10px;
}

.contact-action {
  background: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.contact-action:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(202, 22, 52, 0.3);
}

.contact-action i {
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form-container {
  background: var(--secondary);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.form-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light) 0%, transparent 70%);
  opacity: 0.05;
  border-bottom-left-radius: 100%;
}

.form-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.form-content h3 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 2rem;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid color-mix(in oklab, var(--neutral-muted) 20%, transparent);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--neutral-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 20%, transparent);
}

.form-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-muted);
  transition: all 0.3s ease;
}

.form-group input:focus + i,
.form-group textarea:focus + i {
  color: var(--primary);
}

.form-group textarea + i {
  top: 1.5rem;
  transform: translateY(0);
}

.submit-btn {
  background: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 1rem auto 0;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(202, 22, 52, 0.4);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Background Elements */
.background-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, color-mix(in oklab, var(--primary) 15%, transparent) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  opacity: 0.1;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, color-mix(in oklab, var(--primary-light) 20%, transparent) 0%, transparent 70%);
  bottom: 50px;
  left: -100px;
  opacity: 0.1;
}

.circle-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent-1) 20%, transparent) 0%, transparent 70%);
  top: 50%;
  right: 30%;
  opacity: 0.1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
}
/* footer */
.site-footer {
  background: linear-gradient(135deg, var(--neutral-dark) 0%, #1a1d20 100%);
  color: var(--neutral-light);
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-copyright p {
  margin: 0;
  font-size: 1rem;
  color: color-mix(in oklab, var(--neutral-light) 80%, transparent);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Optional: Add a subtle pattern or shape in the background */
.site-footer::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.05;
  z-index: 1;
}

/* Animation for the gradient line */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.site-footer::before {
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  background-size: 200% 200%;
  animation: gradientMove 3s ease infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 1rem;
  }
  
  .footer-copyright p {
    font-size: 0.9rem;
  }
}
/* step style css */
.steps-header h2 {
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(202, 22, 52, 0.15);
}

.steps-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.steps-header h2:hover::after {
    width: 120px;
}

.steps-header p {
    color: var(--neutral-muted);
    max-width: 600px;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
}

.steps-header p::before,
.steps-header p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.7;
    position: absolute;
}

.steps-header p::before {
    top: -10px;
    right: 0;
}

.steps-header p::after {
    bottom: -20px;
    left: 0;
    transform: rotate(180deg);
}

/* Modern Timeline Styles */
.timeline {
    position: relative;
    padding: 3rem 0;
    margin: 3rem auto;
    max-width: 1200px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, 
transparent 0%, 
var(--primary-muted) 10%, 
var(--primary-muted) 90%, 
transparent 100%);
    z-index: 1;
}

.progress-fill {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, 
var(--primary-light) 0%, 
var(--primary) 30%, 
var(--primary-dark) 100%);
    z-index: 2;
    border-radius: 3px;
    opacity: 0.9;
    box-shadow: 0 0 15px rgba(202, 22, 52, 0.4);
    height: 0;
    transition: height 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    width: 100%;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.timeline-item.right {
    justify-content: flex-start;
}

.timeline-item.left {
    justify-content: flex-end;
}

.timeline-dot {
    position: absolute;
    width: 28px;
    height: 28px;
    background: var(--secondary);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 4;
    right: 50%;
    transform: translateX(50%);
    transition: all var(--transition-speed) ease;
    box-shadow: 0 0 0 0 rgba(202, 22, 52, 0.4);
}

.timeline-item:hover .timeline-dot {
    background: var(--primary);
    transform: translateX(50%) scale(1.3);
    box-shadow: 0 0 0 10px var(--primary-muted);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
box-shadow: 0 0 0 0 rgba(202, 22, 52, 0.4);
    }
    70% {
box-shadow: 0 0 0 15px rgba(202, 22, 52, 0);
    }
    100% {
box-shadow: 0 0 0 0 rgba(202, 22, 52, 0);
    }
}

.timeline-card {
    background: var(--secondary);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 
0 5px 15px rgba(202, 22, 52, 0.05);
    width: calc(50% - 50px);
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.timeline-card:hover::before {
    transform: scaleX(1);
}

.timeline-item.right .timeline-card {
    margin-left: 50px;
    border-right: 4px solid var(--primary);
}

.timeline-item.left .timeline-card {
    margin-right: 50px;
    border-right: 4px solid var(--accent-1);
}

.timeline-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(202, 22, 52, 0.15), 
0 5px 15px rgba(202, 22, 52, 0.1);
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--secondary);
    border-radius: 50%;
    font-weight: 800;
    margin-left: 12px;
    flex-shrink: 0;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(202, 22, 52, 0.3);
    transition: transform 0.3s ease;
}

.timeline-card:hover .step-badge {
    transform: rotate(15deg) scale(1.1);
}

.timeline-title {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    position: relative;
}

.timeline-title i {
    margin-left: 12px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-title i {
    transform: rotate(10deg) scale(1.2);
    color: var(--primary-dark);
}

.title-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.title-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.title-link:hover::after {
    width: 100%;
}

.title-link:hover {
    color: var(--primary);
}

.timeline-desc {
    color: var(--neutral-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    padding-left: 15px;
}

.timeline-desc::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    height: 60%;
    width: 3px;
    background: var(--primary-muted);
    border-radius: 3px;
}

/* Animation for each step */
.step-1.visible { transition-delay: 0.1s; }
.step-2.visible { transition-delay: 0.3s; }
.step-3.visible { transition-delay: 0.5s; }
.step-4.visible { transition-delay: 0.7s; }
.step-5.visible { transition-delay: 0.9s; }

/* Responsive Design */
@media (max-width: 992px) {
    .timeline::before,
    .progress-fill {
right: 25px;
transform: none;
    }
    
    .timeline-item.right,
    .timeline-item.left {
justify-content: flex-start;
    }
    
    .timeline-item.right .timeline-card,
    .timeline-item.left .timeline-card {
width: calc(100% - 70px);
margin-left: 50px;
margin-right: 0;
    }
    
    .timeline-dot {
right: 25px;
transform: none;
    }
    
    .timeline-item:hover .timeline-dot {
transform: scale(1.3);
    }
    
    .steps-header h2 {
font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .timeline-card {
padding: 1.5rem;
    }
    
    .timeline-title {
font-size: 1.2rem;
    }
    
    .steps-header h2 {
font-size: 2rem;
    }
    
    .steps-header p {
font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .timeline-card {
padding: 1.2rem;
    }
    
    .timeline-title {
font-size: 1.1rem;
    }
    
    .step-badge {
width: 32px;
height: 32px;
font-size: 1rem;
    }
    
    .timeline-desc {
font-size: 0.95rem;
    }
    
    .steps-header h2 {
font-size: 1.8rem;
    }
    
    .steps-header h2::after {
bottom: -12px;
width: 60px;
    }
    
    .steps-header h2:hover::after {
width: 80px;
    }
}
.steps-header{
  padding: 30px 0px;
}
        .fab-container {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
        }

        .fab-main {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: all var(--transition-speed) ease;
        }

        .fab-main:hover {
            background-color: var(--primary-dark);
            transform: scale(1.05);
        }

        .fab-menu {
            position: absolute;
            bottom: 70px;
            left: 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all var(--transition-speed) ease;
        }

        .fab-menu.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .fab-item {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            position: relative;
        }

        .fab-item:nth-child(1) { background-color: var(--accent-1); }
        .fab-item:nth-child(2) { background-color: var(--accent-2); }
        .fab-item:nth-child(3) { background-color: #25D366; } /* WhatsApp green */

        .fab-item:hover {
            transform: scale(1.1);
        }

        .fab-item span {
            position: absolute;
            left: 60px;
            background-color: var(--neutral-dark);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .fab-item:hover span {
            opacity: 1;
            visibility: visible;
        }

        .fab-main i {
            transition: transform var(--transition-speed) ease;
        }

        .fab-main.open i {
            transform: rotate(45deg);
        }
.link{
  text-decoration: none;
  color: black;
}