:root {
  --primary-color: #00d4b1;
  --primary-dark: #00a389;
  --secondary-color: #0f172a;
  --accent-color: #fbbf24;
  --light-bg: #f8fafc;
  --dark-bg: #020617;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Tajawal', sans-serif;
  color: var(--text-main);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  padding-top: 100px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism Utility */
.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

/* Custom Navbar */
.custom-navbar {
  transition: var(--transition-smooth);
  padding: 1.25rem 0;
  background-color: transparent;
}

.custom-navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991.98px) {
  .custom-navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
  }
}

.custom-navbar .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  padding: 0.5rem 1.25rem !important;
  transition: var(--transition-smooth);
  border-radius: 50px;
}

.custom-navbar .nav-link:hover, 
.custom-navbar .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  box-shadow: 0 4px 15px rgba(0, 212, 177, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 177, 0.5);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  min-height: 90vh;
  background: radial-gradient(circle at top right, #1e293b, #0f172a);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -100px;
  padding-top: 100px;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(0, 212, 177, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Feature Cards */
.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to left, var(--primary-color), transparent);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: #f1f5f9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
  font-size: 2rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(10deg);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

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

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
/* Footer Custom */
.footer-custom {
  background-color: var(--secondary-color) !important;
  color: #ffffff;
  padding: 5rem 0 3rem 0;
  position: relative;
  z-index: 10;
}

.footer-custom h4, .footer-custom h5 {
  color: #ffffff !important;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.footer-custom p, .footer-custom li {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem;
  font-weight: 400;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none !important;
  transition: var(--transition-smooth);
  font-weight: 500;
}

.footer-links li a:hover {
  color: var(--primary-color) !important;
  transform: translateX(-5px);
  display: inline-block;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  transition: var(--transition-smooth);
  font-size: 1.2rem;
}

.social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

/* Service Detail Cards */
.service-detail-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}

.service-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-detail-card .icon-box {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
  transition: var(--transition-smooth);
}

.service-detail-card:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
}

/* Benefit Items */
.benefit-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  opacity: 0.2;
  line-height: 1;
}

.benefit-item:hover .benefit-number {
  opacity: 1;
  transform: scale(1.1);
  transition: var(--transition-smooth);
}

/* Contact Form */
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-form .form-control:focus, .contact-form .form-select:focus {
  background-color: #fff !important;
  box-shadow: 0 0 0 4px rgba(0, 212, 177, 0.1);
  border: 1px solid var(--primary-color) !important;
}

.hover-opacity-100:hover {
  opacity: 1 !important;
  transition: opacity 0.3s ease;
}

/* ==========================================================================
   Homepage Premium Custom Styles
   ========================================================================== */
:root {
    --primary-gradient: linear-gradient(135deg, #00d4b1 0%, #00a389 100%);
    --dark-gradient: radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 1) 0%, rgba(20, 30, 55, 1) 90%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.07);
    --glow-shadow: 0 0 40px rgba(0, 212, 177, 0.15);
}

/* Hero Styling */
.hero-wrapper {
    position: relative;
    min-height: 95vh;
    background: var(--dark-gradient);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -100px;
    padding-top: 130px;
    padding-bottom: 8rem;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(0, 212, 177, 0.07) 1px, transparent 1px);
    background-size: 35px 35px;
    z-index: 1;
    opacity: 0.6;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -1px;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Digital Quality Journey Animation Styles */
.visual-stage {
    background:
        linear-gradient(rgba(38,117,211,.08) 1px,transparent 1px),
        linear-gradient(90deg,rgba(38,117,211,.08) 1px,transparent 1px),
        linear-gradient(145deg,rgba(10,76,156,.30),rgba(4,28,63,.42));
    background-size: 28px 28px,28px 28px,auto;
    border: 1px solid rgba(92,153,225,.22);
    perspective: 900px;
    position: relative;
    min-height: 440px;
    border-radius: 30px;
    overflow: hidden;
}

.camera {
    transform-origin: center;
    transition: transform .9s cubic-bezier(.22,.8,.22,1);
}

.camera.focus-left { transform: translateX(3%) scale(1.06); }
.camera.focus-right { transform: translateX(-3%) scale(1.06); }
.camera.focus-center { transform: scale(1.03); }

.layer {
    opacity: 0;
    transform: translateY(20px) scale(.94);
    transition: opacity .55s ease,transform .75s cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
}

.layer.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.step-btn {
    transition: all .28s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: right;
    color: rgba(255, 255, 255, 0.5);
}

.step-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(8,201,177,.45);
    color: #fff;
}

.step-btn.active {
    color: #7effef;
    border-color: rgba(8,201,177,.72);
    background: rgba(8,201,177,.09);
}

.step-btn.done {
    color: #d7eaff;
    border-color: rgba(0,119,255,.34);
    background: rgba(0,119,255,.05);
}

.step-btn.pending {
    color: #74839e;
    opacity: .72;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #63728c;
    display: inline-block;
    transition: all .3s ease;
}

.step-btn.active .dot {
    background: #08c9b1;
    border-color: #96fff2;
    box-shadow: 0 0 0 7px rgba(8,201,177,.12),0 0 18px rgba(8,201,177,.65);
}

.step-btn.done .dot {
    background: #0877f9;
    border-color: #75b5ff;
}

.route-line {
    stroke-dasharray: 12 10;
    animation: route 1.2s linear infinite;
}

.pulse { animation: pulse 1.8s ease-in-out infinite; }
.float { animation: float 2.6s ease-in-out infinite; }
.float-delay { animation: float 2.6s .7s ease-in-out infinite; }

.pop {
    animation: pop 1.6s ease-in-out infinite;
    transform-origin: center;
}

.check-draw {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: draw .8s .25s ease forwards;
}

.signal {
    animation: signal 1.7s ease-out infinite;
    transform-origin: center;
}

.shine {
    position: relative;
    overflow: hidden;
}

.shine::after {
    content: '';
    position: absolute;
    inset: -70% auto -70% -35%;
    width: 22%;
    transform: rotate(18deg);
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);
    animation: shine 4s ease-in-out infinite;
}

@keyframes route { to { stroke-dashoffset: -22; } }
@keyframes pulse { 50% { filter: drop-shadow(0 0 10px rgba(8,201,177,.9)); } }
@keyframes float { 50% { transform: translateY(-9px); } }
@keyframes pop { 50% { transform: scale(1.08); } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes signal { from { transform: scale(.75); opacity: .85; } to { transform: scale(1.4); opacity: 0; } }
@keyframes shine { 0%,42% { left: -35%; } 70%,100% { left: 140%; } }

/* Stats Panel Overlapping */
.stats-bar {
    margin-top: -5rem;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 212, 177, 0.3);
}

/* Premium Features / Values Section */
.feature-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.03);
    border-radius: 28px;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 212, 177, 0.08);
}

.feature-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: rgba(0, 212, 177, 0.08);
    color: #00a389;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary-gradient);
    color: white;
    transform: rotate(-8deg) scale(1.05);
}

/* Interactive Showcase Section */
.showcase-bg {
    background: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.showcase-tabs .nav-link {
    color: #64748b;
    font-weight: 700;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.showcase-tabs .nav-link i {
    font-size: 1.35rem;
    color: #94a3b8;
}

.showcase-tabs .nav-link.active {
    background: var(--primary-gradient) !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(0, 212, 177, 0.3) !important;
}

.showcase-tabs .nav-link.active i {
    color: white !important;
}

.mockup-container {
    background: #0f172a;
    border-radius: 28px;
    border: 8px solid #1e293b;
    box-shadow: 0 35px 70px -15px rgba(15, 23, 42, 0.4);
    overflow: hidden;
}

.mockup-header {
    background: #1e293b;
    padding: 1rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-body {
    padding: 2.5rem;
    color: #f8fafc;
    min-height: 440px;
}

/* FAQ Section Accordion styling */
.faq-accordion .accordion-item {
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.01);
}

.faq-accordion .accordion-button {
    font-weight: 700;
    padding: 1.5rem 1.75rem;
    color: #1e293b;
    background: white;
}

.faq-accordion .accordion-button::after {
    margin-right: auto;
    margin-left: 0;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(0, 212, 177, 0.04);
    color: #00a389;
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 1.5rem 1.75rem;
    background-color: white;
    color: #475569;
    line-height: 1.8;
}

/* Detailed Services Animations */
.service-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    background: #ffffff;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06) !important;
    border-color: rgba(8, 201, 177, 0.25) !important;
}
.icon-box-animated {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

/* 1. Structural icon pulse animation */
.structural-box {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}
.service-card:hover .structural-box {
    background: #0d6efd;
    color: #fff;
    animation: pulseStructural 1.5s infinite ease-in-out;
}
@keyframes pulseStructural {
    0%, 100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(13, 110, 253, 0); }
}

/* 2. MEP/Electrical sparking animation */
.mep-box {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}
.service-card:hover .mep-box {
    background: #198754;
    color: #fff;
    animation: sparkMEP 0.8s infinite steps(2);
}
@keyframes sparkMEP {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 8px #198754); }
    50% { opacity: 0.85; filter: none; }
}

/* 3. Insulation bounce animation */
.insulation-box {
    background: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
}
.service-card:hover .insulation-box {
    background: #0dcaf0;
    color: #fff;
    animation: floatDroplet 2s infinite ease-in-out;
}
@keyframes floatDroplet {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* 4. Digital documentation blinking camera light */
.digital-box {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}
.service-card:hover .digital-box {
    background: #ffc107;
    color: #212529;
}
.digital-box::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: red;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-card:hover .digital-box::after {
    opacity: 1;
    animation: recBlink 1s infinite steps(2);
}
@keyframes recBlink {
    0%, 100% { background: red; box-shadow: 0 0 6px red; }
    50% { background: transparent; box-shadow: none; }
}

/* Floating Animations */
.animate-float {
    animation: floatImg 6s ease-in-out infinite;
}

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

/* Mobile and Tablet Responsiveness */
@media (max-width: 991.98px) {
    .hero-wrapper {
        margin-top: 0;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
        min-height: auto;
    }
    .hero-content {
        text-align: center !important;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .stats-bar {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.15rem;
    }
    .mockup-body {
        padding: 1.25rem;
        min-height: auto;
    }
    .visual-stage {
        min-height: 280px;
        padding: 1rem !important;
        border-radius: 20px;
    }
    .visual-stage svg {
        margin-top: 1.5rem !important;
    }
}

/* Contact Form Premium Glassmorphism Focus Styling */
.contact-form input.premium-input,
.contact-form select.premium-input,
.contact-form textarea.premium-input {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding-right: 2.75rem !important; /* Space for the icon on the right for RTL */
    padding-left: 1.25rem !important;
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
    border-radius: 12px !important;
    transition: all 0.3s ease-in-out !important;
    font-size: 0.95rem !important;
}
.contact-form input.premium-input::placeholder,
.contact-form textarea.premium-input::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}
.contact-form input.premium-input:focus,
.contact-form select.premium-input:focus,
.contact-form textarea.premium-input:focus {
    background-color: rgba(255, 255, 255, 0.07) !important;
    border-color: #08c9b1 !important;
    box-shadow: 0 0 15px rgba(8, 201, 177, 0.22) !important;
    color: #fff !important;
}
.contact-form textarea.premium-input {
    padding-right: 1.25rem !important;
}
.contact-form select.premium-input {
    background-color: #0b1329 !important;
    color: #fff !important;
}
.contact-form select.premium-input option {
    background-color: #0b1329 !important;
    color: #fff !important;
}
.premium-input-icon {
    position: absolute;
    top: 50%;
    right: 1.15rem; /* Placed on the right for Arabic RTL text direction */
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.15rem;
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 5;
}
.position-relative:focus-within .premium-input-icon {
    color: #08c9b1;
}
.premium-badge {
    position: absolute;
    top: 0;
    left: 0; /* In RTL top-left positioning */
    background-color: rgba(8, 201, 177, 0.15) !important;
    color: #7effef;
    font-weight: bold;
    padding: 8px 20px;
    font-size: 0.75rem;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    border-right: 1px solid rgba(8,201,177,0.2);
    border-bottom: 1px solid rgba(8,201,177,0.2);
    z-index: 10;
}

/* =========================================================
   SaaS Global UI Design System (Enterprise & Professional)
   ========================================================= */

/* SaaS Cards */
.saas-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.saas-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.saas-card-header {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 1.75rem;
}

/* SaaS Inputs */
.saas-input {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.saas-input:focus {
    background-color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 177, 0.15);
    outline: none;
}

.saas-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

/* SaaS Buttons */
.saas-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 212, 177, 0.2);
}

.saas-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #008a74);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 212, 177, 0.3);
}

.saas-btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.saas-btn-outline:hover {
    background: rgba(0, 212, 177, 0.05);
    color: var(--primary-dark);
}

.saas-btn-light {
    background: #f1f5f9;
    color: #334155;
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.saas-btn-light:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* SaaS Badges */
.saas-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
}

.saas-badge-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.saas-badge-primary {
    background-color: rgba(0, 212, 177, 0.1);
    color: var(--primary-dark);
}

.saas-badge-warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

/* SaaS Specific utilities */
.saas-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.saas-icon-box-primary {
    background: rgba(0, 212, 177, 0.1);
    color: var(--primary-dark);
}

.saas-divider {
    border-top: 1px solid #f1f5f9;
    margin: 1.5rem 0;
}
