/* 
   SSM Solutions Premium CSS Design System
   Cyber-Dark Modern Theme for Software Development
*/

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

:root {
    --primary-dark: #050a12;
    --secondary-dark: #0c1524;
    --card-bg: rgba(12, 21, 36, 0.65);
    --card-border: rgba(255, 255, 255, 0.06);
    
    /* Neon accents */
    --accent-cyan: #00f5d4;
    --accent-blue: #00b4d8;
    --accent-purple: #7b2cbf;
    --accent-pink: #ff007f;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00b4d8 0%, #7b2cbf 100%);
    --gradient-cyan-purple: linear-gradient(135deg, #00f5d4 0%, #7b2cbf 100%);
    --gradient-dark: linear-gradient(180deg, #050a12 0%, #0c1524 100%);
    --gradient-glow: linear-gradient(90deg, #00f5d4, #00b4d8, #7b2cbf, #ff007f);
    
    /* Typography */
    --font-arabic: 'Cairo', sans-serif;
    --font-english: 'Outfit', sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-arabic);
    background-color: var(--primary-dark);
    color: #f1f5f9;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--accent-cyan), var(--accent-purple));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-cyan-purple);
    width: 0%;
    z-index: 10000;
    box-shadow: 0 0 10px rgba(0, 245, 212, 0.5);
    transition: width 0.1s ease;
}

/* Glow Background Blobs Wrapper */
.blob-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Glow Background Blobs */
.glow-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
    animation: blob-spin 25s infinite linear;
}
.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    top: 10%;
    right: 5%;
}
.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    top: 40%;
    left: -10%;
}
.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-pink);
    bottom: 15%;
    right: -5%;
}

/* Typography Helpers */
.font-en {
    font-family: var(--font-english);
}
.text-gradient-cyan {
    background: linear-gradient(135deg, #00f5d4 0%, #00b4d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-primary {
    background: var(--gradient-cyan-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.glass-panel-hover:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 245, 212, 0.25);
    box-shadow: 0 15px 35px rgba(0, 245, 212, 0.08);
}

/* Navbar Style */
.navbar {
    background: rgba(5, 10, 18, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
}
.navbar-brand:hover img {
    transform: scale(1.05);
}
.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%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 1.4em;
    height: 1.4em;
}
.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}
.nav-link {
    color: #cbd5e1 !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--accent-cyan) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0%;
    height: 2px;
    background: var(--accent-cyan);
    transition: all 0.3s ease;
}
.nav-link:hover::after {
    width: 80%;
    right: 10%;
}
.nav-btn-contact {
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.15), rgba(123, 44, 191, 0.15));
    border: 1px solid var(--accent-cyan) !important;
    border-radius: 8px;
    color: var(--accent-cyan) !important;
    font-weight: 700;
}
.nav-btn-contact:hover {
    background: var(--gradient-cyan-purple) !important;
    color: var(--primary-dark) !important;
    border-color: transparent !important;
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 92vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-glow-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.12) 0%, transparent 70%);
    top: 5%;
    right: -10%;
    z-index: 0;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}
.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
}
.hero-badge {
    background: rgba(0, 245, 212, 0.08);
    border: 1px solid rgba(0, 245, 212, 0.2);
    color: var(--accent-cyan);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}
.hero-badge i {
    font-size: 0.75rem;
    animation: pulse 1.5s infinite;
}

/* Buttons */
.btn-premium {
    background: var(--gradient-cyan-purple);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 245, 212, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 245, 212, 0.4);
    color: var(--primary-dark);
}
.btn-outline-premium {
    background: transparent;
    color: #fff;
    font-weight: 700;
    padding: 13px 33px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-outline-premium:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Service Section */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}
.section-tag {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}
.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-cyan-purple);
    margin: 0 auto;
    border-radius: 10px;
}

.service-card {
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 245, 212, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.service-card:hover::before {
    opacity: 1;
}
.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-cyan);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}
.service-card:hover .service-icon-wrapper {
    background: var(--gradient-cyan-purple);
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.4);
    transform: scale(1.1) rotate(5deg);
}
.service-card h4 {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 18px;
    color: #fff;
    transition: color 0.3s ease;
}
.service-card:hover h4 {
    color: var(--accent-cyan);
}
.service-card-list {
    list-style: none;
    padding: 0;
}
.service-card-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-card-list li i {
    color: var(--accent-cyan);
    font-size: 0.85rem;
}

/* "Why Choose Us" Features Section */
.why-section {
    position: relative;
    padding: 100px 0;
}
.feature-item-glow {
    position: relative;
    padding: 30px;
    overflow: hidden;
    height: 100%;
}
.feature-item-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.feature-item-glow:hover::after {
    opacity: 1;
}
.feature-num {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-english);
    line-height: 1;
    margin-bottom: 15px;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.feature-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}
.feature-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Dynamic Portfolio Showcase Mockups */
.portfolio-section {
    position: relative;
    padding: 100px 0;
}
.portfolio-card {
    overflow: hidden;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.mockup-container {
    background: #080f1b;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    height: 230px;
    position: relative;
    margin-bottom: 25px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
}

/* Pure CSS Browser Mockup */
.browser-mockup {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.browser-header {
    height: 28px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
}
.browser-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }
.browser-address {
    flex-grow: 1;
    margin: 0 15px;
    height: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
    font-family: var(--font-english);
}
.browser-body {
    flex-grow: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* Mockup Content Styling (Dynamic dashboards, stores, clinic UI) */
.mockup-chart-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 10px;
}
.mockup-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.mockup-line {
    height: 4px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
}
.mockup-line.w-50 { width: 50%; }
.mockup-line.w-30 { width: 30%; }
.mockup-line.w-80 { width: 80%; }
.mockup-bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 60px;
    padding-top: 10px;
}
.mockup-bar {
    width: 12%;
    background: var(--accent-blue);
    border-radius: 3px 3px 0 0;
    transition: height 1s ease;
}
.mockup-bar:nth-child(even) {
    background: var(--accent-purple);
}
.mockup-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.mockup-mini-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 8px;
    text-align: center;
}
.mockup-icon-dot {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: var(--accent-cyan);
    margin: 0 auto 6px;
}
.mockup-mini-card:nth-child(2) .mockup-icon-dot { background: var(--accent-purple); }
.mockup-mini-card:nth-child(3) .mockup-icon-dot { background: var(--accent-pink); }

/* Pure CSS Phone Mockup */
.phone-mockup {
    width: 120px;
    height: 210px;
    background: #000;
    border-radius: 20px;
    border: 4px solid #1a2638;
    margin: 10px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.phone-notch {
    width: 50px;
    height: 10px;
    background: #1a2638;
    border-radius: 0 0 6px 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: #080f1b;
    padding: 15px 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 8px;
}
.phone-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 4px;
}
.phone-avatar {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-cyan);
}
.phone-product-card {
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.phone-product-img {
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1) 0%, rgba(123, 44, 191, 0.1) 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 14px;
}
.phone-btn {
    height: 14px;
    background: var(--gradient-cyan-purple);
    border-radius: 4px;
    width: 100%;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}
.portfolio-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-family: var(--font-english);
    color: var(--text-muted);
}
.portfolio-card h5 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.portfolio-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Interactive Project Cost Calculator Widget */
.calc-section {
    position: relative;
    padding: 100px 0;
}
.calc-box {
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.calc-title-badge {
    background: rgba(123, 44, 191, 0.15);
    border: 1px solid rgba(123, 44, 191, 0.3);
    color: #c084fc;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}
.calc-option-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.calc-option-card i {
    font-size: 1.6rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}
.calc-option-card span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s ease;
}
.calc-option-card:hover {
    border-color: rgba(0, 245, 212, 0.2);
    background: rgba(0, 245, 212, 0.02);
}
.calc-option-input {
    display: none;
}
.calc-option-input:checked + .calc-option-card {
    border-color: var(--accent-cyan);
    background: rgba(0, 245, 212, 0.06);
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.15);
}
.calc-option-input:checked + .calc-option-card i {
    color: var(--accent-cyan);
    transform: scale(1.1);
}
.calc-option-input:checked + .calc-option-card span {
    color: var(--accent-cyan);
}

.calc-feature-checkbox {
    display: none;
}
.calc-feature-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}
.calc-feature-label:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}
.calc-feature-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.calc-feature-info i {
    color: var(--text-muted);
    transition: color 0.3s ease;
}
.calc-feature-checkbox:checked + .calc-feature-label {
    border-color: var(--accent-purple);
    background: rgba(123, 44, 191, 0.06);
}
.calc-feature-checkbox:checked + .calc-feature-label .calc-feature-info i {
    color: var(--accent-purple);
}
.calc-feature-checkbox:checked + .calc-feature-label .check-indicator {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
}
.calc-feature-checkbox:checked + .calc-feature-label .check-indicator::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.check-indicator {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}
.check-indicator::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    transition: all 0.2s ease;
}

.calc-speed-wrapper {
    display: flex;
    gap: 15px;
}
.calc-speed-radio {
    display: none;
}
.calc-speed-label {
    flex: 1;
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}
.calc-speed-radio:checked + .calc-speed-label {
    background: var(--gradient-cyan-purple);
    color: var(--primary-dark);
    font-weight: 700;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 245, 212, 0.2);
}

.calc-result-panel {
    background: linear-gradient(135deg, rgba(12, 21, 36, 0.9) 0%, rgba(5, 10, 18, 0.95) 100%);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: sticky;
    top: 100px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 245, 212, 0.05);
}
.price-display {
    font-family: var(--font-english);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin: 15px 0;
    text-shadow: 0 0 15px rgba(0, 245, 212, 0.3);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.price-currency {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-arabic);
    color: #fff;
    margin-top: 10px;
}
.calc-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 25px 0;
}
.timeline-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--text-muted);
}
.timeline-display i {
    color: var(--accent-cyan);
}
.calc-whatsapp-btn {
    width: 100%;
    background: #25d366;
    color: white !important;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.25);
    margin-top: 30px;
    text-decoration: none;
}
.calc-whatsapp-btn:hover {
    background: #1ebd59;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Success Partners Section */
.partners-section {
    padding: 60px 0;
    background: rgba(5, 10, 18, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 1;
}
.partner-logo-badge {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-logo-badge span {
    font-family: var(--font-english);
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.3);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.partner-logo-badge:hover {
    background: rgba(0, 245, 212, 0.03);
    border-color: rgba(0, 245, 212, 0.15);
    transform: translateY(-5px);
}
.partner-logo-badge:hover span {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
}

/* Testimonials Carousel Section */
.testimonials-section {
    padding: 100px 0;
    position: relative;
}
.testimonial-card {
    padding: 40px;
    position: relative;
}
.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 3.5rem;
    color: rgba(0, 245, 212, 0.08);
    pointer-events: none;
}
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 25px;
    font-style: italic;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-dark);
}
.testimonial-info h6 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
    font-size: 1rem;
}
.testimonial-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}
.carousel-indicators .active {
    background-color: var(--accent-cyan);
    width: 24px;
    border-radius: 5px;
}

/* FAQ Accordion Styling */
.faq-section {
    padding: 100px 0;
    position: relative;
}
.faq-accordion .accordion-item {
    background: rgba(15, 26, 44, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-accordion .accordion-item:hover {
    border-color: rgba(0, 245, 212, 0.25) !important;
    background: rgba(18, 32, 55, 0.9) !important;
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(0, 245, 212, 0.4) !important;
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.08);
    background: rgba(18, 32, 55, 0.95) !important;
}
.faq-accordion .accordion-button {
    background: transparent !important;
    color: #f1f5f9 !important;
    font-weight: 700;
    padding: 22px 25px;
    font-size: 1.08rem;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.faq-accordion .accordion-button:hover {
    color: var(--accent-cyan) !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-cyan) !important;
    background: rgba(0, 245, 212, 0.05) !important;
    border-bottom: 1px solid rgba(0, 245, 212, 0.15) !important;
}
.faq-accordion .accordion-button::after {
    background-image: none !important;
    content: '' !important;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--accent-cyan);
    border-bottom: 2px solid var(--accent-cyan);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    margin-right: auto;
    margin-left: 5px;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-135deg);
    border-color: var(--accent-cyan);
}
.faq-accordion .accordion-body {
    color: #e2e8f0 !important;
    font-size: 1rem;
    line-height: 1.8;
    padding: 25px;
    background: rgba(5, 10, 18, 0.25);
}

/* Enhanced Contact Section */
.contact-section {
    padding: 100px 0;
    position: relative;
}
.contact-info-panel {
    background: linear-gradient(135deg, rgba(12, 21, 36, 0.9) 0%, rgba(5, 10, 18, 0.95) 100%);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 50px 40px;
    height: 100%;
}
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(0, 245, 212, 0.08);
    border: 1px solid rgba(0, 245, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-detail-text h6 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    font-size: 0.95rem;
}
.contact-detail-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.contact-detail-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-detail-text a:hover {
    color: var(--accent-cyan);
}

.social-glow-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}
.social-glow-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.social-glow-btn:hover {
    transform: translateY(-5px);
    color: var(--accent-cyan);
    border-color: rgba(0, 245, 212, 0.3);
    background: rgba(0, 245, 212, 0.05);
    box-shadow: 0 5px 15px rgba(0, 245, 212, 0.2);
}
.social-glow-btn.fb:hover {
    color: #1877f2;
    border-color: rgba(24, 119, 242, 0.3);
    background: rgba(24, 119, 242, 0.05);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.2);
}
.social-glow-btn.ln:hover {
    color: #0a66c2;
    border-color: rgba(10, 102, 194, 0.3);
    background: rgba(10, 102, 194, 0.05);
    box-shadow: 0 5px 15px rgba(10, 102, 194, 0.2);
}

/* Glassmorphic Form Fields */
.contact-form-panel {
    padding: 50px 40px;
    height: 100%;
}
.glass-input-group {
    margin-bottom: 25px;
    position: relative;
}
.glass-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    color: #fff !important;
    font-size: 0.95rem;
    transition: all 0.3s ease !important;
}
.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.glass-input:focus {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.1) !important;
    outline: none;
}
textarea.glass-input {
    resize: none;
    min-height: 140px;
}
.glass-input-label {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    pointer-events: none;
    transition: all 0.3s ease;
}
.glass-input:focus + .glass-input-label,
.glass-input:not(:placeholder-shown) + .glass-input-label {
    top: -10px;
    right: 12px;
    background: var(--primary-dark);
    padding: 2px 8px;
    font-size: 0.75rem;
    color: var(--accent-cyan);
}

/* High-Tech Vector styled map graphic */
.styled-map-container {
    height: 250px;
    background: #080f1b;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}
.tech-grid-map {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(0, 245, 212, 0.05) 1px, transparent 0),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 0),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 0);
    background-size: 20px 20px;
    top: 0;
    left: 0;
}
.map-pulse-point {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-cyan);
}
.map-pulse-point::after {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    animation: ripple 2s infinite ease-out;
}
.map-location-label {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(12, 21, 36, 0.9);
    border: 1px solid var(--accent-cyan);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Confetti success overlay on form submit */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 10, 18, 0.95);
    backdrop-filter: blur(15px);
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.success-card {
    background: var(--secondary-dark);
    border: 1px solid var(--accent-cyan);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 245, 212, 0.2);
}
.success-overlay.active .success-card {
    transform: scale(1);
}
.success-icon-check {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 245, 212, 0.1);
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    animation: success-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

/* Floating WhatsApp FAB with smart text popup */
.whatsapp-float-premium {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 35px;
    left: 35px;
    background: #25d366;
    color: white !important;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.95rem;
    z-index: 9999;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    animation: float-slow 4s infinite ease-in-out;
    transition: all 0.3s ease;
}
.whatsapp-float-premium:hover {
    background: #1ebd59;
    transform: scale(1.1) rotate(10deg);
}
.whatsapp-float-premium::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 68px;
    height: 68px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: ripple 2s infinite ease-out;
    pointer-events: none;
}
.whatsapp-tooltip-text {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #1a2638;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s ease;
}
.whatsapp-tooltip-text::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
}
.whatsapp-float-premium:hover .whatsapp-tooltip-text {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Section */
footer {
    background: #02050a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}
.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}
.footer-about {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}
.footer-links-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 8px;
}
.footer-links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-cyan);
}
.footer-links-list {
    list-style: none;
    padding: 0;
}
.footer-links-list li {
    margin-bottom: 12px;
}
.footer-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.footer-links-list a:hover {
    color: var(--accent-cyan);
    padding-right: 5px;
}
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 40px 0 25px;
}
.copyright-text {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* Animations Definitions */
@keyframes blob-spin {
    0% { transform: rotate(0deg) translate(0, 0) scale(1); }
    33% { transform: rotate(120deg) translate(20px, 30px) scale(1.1); }
    66% { transform: rotate(240deg) translate(-20px, 15px) scale(0.95); }
    100% { transform: rotate(360deg) translate(0, 0) scale(1); }
}
@keyframes ripple {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(0, 245, 212, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 245, 212, 0); }
}
@keyframes float-slow {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
@keyframes success-pop {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Mobile Responsiveness Improvements */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .calc-result-panel {
        margin-top: 40px;
        position: relative;
        top: 0;
    }
    .phone-mockup {
        width: 140px;
        height: 240px;
    }
    .contact-info-panel {
        padding: 35px 25px;
    }
    .contact-form-panel {
        padding: 35px 25px;
    }

    /* Floating WhatsApp FAB Responsive Scale */
    .whatsapp-float-premium {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        left: 20px !important;
        font-size: 1.6rem !important;
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2) !important;
    }
    .whatsapp-float-premium::before {
        width: 56px !important;
        height: 56px !important;
        top: -3px !important;
        left: -3px !important;
    }
    .whatsapp-tooltip-text {
        display: none !important;
    }
}

/* Stats Counter Section Styles */
.stats-section {
    position: relative;
    z-index: 2;
}
.stat-box {
    padding: 20px;
}
.stat-box .stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-english);
    text-shadow: 0 0 20px rgba(0, 245, 212, 0.2);
    margin-bottom: 5px;
    line-height: 1;
}
.stat-box .stat-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Process Timeline Styles */
.process-section {
    position: relative;
    padding: 100px 0;
}
.process-step-card {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.process-step-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(123, 44, 191, 0.15);
    border: 1px solid rgba(123, 44, 191, 0.3);
    color: #c084fc;
    font-family: var(--font-english);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(123, 44, 191, 0.2);
    transition: all 0.3s ease;
}
.process-step-card:hover .process-step-badge {
    background: var(--gradient-cyan-purple);
    color: var(--primary-dark);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.4);
}
.process-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.process-step-card:hover .process-step-icon {
    color: #fff;
    background: rgba(0, 245, 212, 0.1);
    border-color: rgba(0, 245, 212, 0.3);
    transform: scale(1.05);
}
.process-step-card h5 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.process-step-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0;
}