@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-dark: #060a10;
    --bg-darker: #030508;
    --accent-blue: #2B7BE8;
    --accent-blue-dark: #0A3F8A;
    --accent-blue-dim: rgba(43, 123, 232, 0.15);
    --accent-blue-glow: rgba(43, 123, 232, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #9AAABF;
    --text-muted: #5a6a80;
    --glass-bg: rgba(10, 20, 40, 0.5);
    --glass-border: rgba(43, 123, 232, 0.12);
    --surface: #0d1520;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.7;
}

::selection {
    background: var(--accent-blue);
    color: white;
}

/* ===== Background Effects ===== */
.bg-glow {
    position: fixed;
    top: -30%;
    left: -15%;
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, var(--accent-blue-dim) 0%, transparent 65%);
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    animation: pulse-glow 8s ease-in-out infinite alternate;
}

.bg-glow-right {
    position: fixed;
    bottom: -25%;
    right: -15%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(10, 63, 138, 0.15) 0%, transparent 65%);
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    animation: pulse-glow 10s ease-in-out infinite alternate-reverse;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    width: 80px;
    height: auto;
    animation: pulse-logo 2s ease-in-out infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(43, 123, 232, 0.1);
    border-top: 3px solid var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.preloader-text span {
    color: var(--accent-blue);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-logo {
    0%, 100% { transform: scale(1); opacity: 0.8; filter: drop-shadow(0 0 0px var(--accent-blue-glow)); }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 20px var(--accent-blue-glow)); }
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

body:not(.loaded) {
    overflow: hidden;
}

@keyframes pulse-glow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

/* ===== Navbar ===== */
.navbar {
    background: rgba(6, 10, 16, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0 !important;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--accent-blue) !important;
}

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

/* ===== Buttons ===== */
.btn-premium {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue) !important;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-premium:hover {
    color: #fff !important;
    border-color: var(--accent-blue);
    box-shadow: 0 0 25px var(--accent-blue-dim);
}

.btn-premium:hover::before {
    width: 100%;
}

.btn-premium-solid {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    border: 1px solid transparent;
    color: #fff !important;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(43, 123, 232, 0.3);
}

.btn-premium-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(43, 123, 232, 0.4);
}

/* ===== Hero Visual ===== */
.hero-visual-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-visual-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 40px var(--accent-blue-dim);
    border: 1px solid var(--glass-border);
    animation: float-visual 6s ease-in-out infinite;
    z-index: 2;
}

.hero-visual-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    animation: pulse-glow-visual 4s ease-in-out infinite alternate;
}

@keyframes float-visual {
    0% { transform: translateY(0) rotateY(-5deg) rotateX(5deg); }
    50% { transform: translateY(-15px) rotateY(-2deg) rotateX(2deg); }
    100% { transform: translateY(0) rotateY(-5deg) rotateX(5deg); }
}

@keyframes pulse-glow-visual {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* ===== Hero Swiper Slider ===== */
.hero-swiper-container {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, rgba(6, 10, 16, 0.8));
    z-index: -1;
}

/* Slide Gradients */
.slide-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark) 30%, var(--accent-blue-dim) 100%);
    z-index: -2;
}

.slide-bg-gradient.reverse {
    background: linear-gradient(225deg, var(--bg-dark) 30%, var(--accent-blue-dim) 100%);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-blue-dim);
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-blue), #5BA3F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.8;
}

/* Swiper Navigation Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-blue);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-blue);
    color: white;
}

.swiper-pagination-bullet {
    background: var(--text-secondary);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent-blue);
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

/* Slide Animations */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .hero-badge {
    animation: fadeInDown 0.8s both;
}

.swiper-slide-active .hero-title {
    animation: fadeInUp 0.8s 0.2s both;
}

.swiper-slide-active .hero-subtitle {
    animation: fadeInUp 0.8s 0.4s both;
}

.swiper-slide-active .btn-premium,
.swiper-slide-active .btn-premium-solid {
    animation: fadeInUp 0.8s 0.6s both;
}

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

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

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* ===== Glass Panels ===== */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--accent-blue-dim);
    border-color: rgba(43, 123, 232, 0.3);
}

/* ===== Section Layout ===== */
.services-section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-tag {
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ===== Services ===== */
.service-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 45px 35px !important;
    border: 1px solid var(--glass-border) !important;
    background: linear-gradient(135deg, rgba(13, 21, 32, 0.4), rgba(6, 10, 16, 0.6)) !important;
}

.service-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, var(--accent-blue-dim), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(43, 123, 232, 0.4) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(43, 123, 232, 0.1) !important;
}

.service-icon {
    width: 65px;
    height: 65px;
    background: rgba(43, 123, 232, 0.08);
    border: 1px solid rgba(43, 123, 232, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent-blue);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(43, 123, 232, 0.4);
}

.service-title {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.learn-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more {
    color: #fff;
}

.service-card:hover .learn-more i {
    transform: translateX(8px);
}

/* ===== Why Choose Us Section ===== */
.why-us-section {
    padding: 100px 0;
    position: relative;
}

.why-card-highlight {
    background: linear-gradient(135deg, rgba(43, 123, 232, 0.15), rgba(10, 20, 40, 0.45)) !important;
    border: 1px solid rgba(43, 123, 232, 0.25) !important;
    box-shadow: 0 15px 40px rgba(43, 123, 232, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(43, 123, 232, 0.2) !important;
    border-color: rgba(43, 123, 232, 0.45) !important;
}

.why-icon-highlight {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(43, 123, 232, 0.3);
}

.why-title-highlight {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.why-desc-highlight {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.why-desc-highlight strong {
    color: #ffffff;
}

/* ===== Portfolio ===== */
.portfolio-section {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue-dim), transparent);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.portfolio-item {
    padding: 0 !important;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-img {
    height: 240px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

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

.portfolio-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, var(--glass-bg), transparent);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.08);
}

.portfolio-content {
    padding: 25px 30px 30px;
}

.portfolio-category {
    color: var(--accent-blue);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

/* Button link in portfolio card */
.btn-portfolio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(43, 123, 232, 0.08);
    border: 1px solid rgba(43, 123, 232, 0.2);
    color: var(--accent-blue) !important;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-portfolio:hover {
    background: var(--accent-blue);
    color: white !important;
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 123, 232, 0.3);
}

.btn-portfolio i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-portfolio:hover i {
    transform: translate(2px, -2px);
}

/* ===== Contact Form ===== */
.form-control,
.form-select {
    background-color: rgba(6, 10, 16, 0.8) !important;
    border: 1px solid rgba(43, 123, 232, 0.15) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 0 3px var(--accent-blue-dim) !important;
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

.form-label {
    color: var(--text-secondary) !important;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-select option {
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue-dim), transparent);
}

.pricing-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    padding: 40px 30px !important;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--accent-blue-dim);
    border-color: rgba(43, 123, 232, 0.25);
}

.pricing-header {
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.plan-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.plan-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.plan-price .currency {
    font-size: 1rem;
    color: var(--text-secondary);
    align-self: flex-start;
    margin-top: 5px;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.plan-price .period {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-left: 2px;
}

.plan-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.plan-features li i {
    margin-top: 4px;
    flex-shrink: 0;
}

/* Featured / Highlighted Plan (Pack Pro) */
.featured-card {
    background: linear-gradient(135deg, rgba(43, 123, 232, 0.12), rgba(10, 20, 40, 0.6)) !important;
    border: 1px solid rgba(43, 123, 232, 0.35) !important;
    box-shadow: 0 15px 40px rgba(43, 123, 232, 0.15) !important;
}

.featured-card:hover {
    border-color: var(--accent-blue) !important;
    box-shadow: 0 25px 60px rgba(43, 123, 232, 0.25) !important;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 35px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-card .plan-name {
    background: linear-gradient(135deg, #ffffff, #9ec2f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== Process Section ===== */
.process-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process-card {
    position: relative;
    padding: 40px 25px !important;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(135deg, var(--glass-bg), rgba(43, 123, 232, 0.03)) !important;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px var(--accent-blue-dim);
    border-color: rgba(43, 123, 232, 0.3);
}

.process-step-num {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-blue), rgba(43, 123, 232, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.process-step-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* Connectors for desktop */
@media (min-width: 992px) {
    .process-card .process-connector {
        position: absolute;
        top: 60px;
        right: -15px;
        width: 30px;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-blue), transparent);
        z-index: 5;
    }
}

.process-delivery-card {
    background: linear-gradient(135deg, rgba(43, 123, 232, 0.08), rgba(10, 63, 138, 0.08)) !important;
    border: 1px solid rgba(43, 123, 232, 0.25) !important;
}

/* ===== Premium Footer Section ===== */
.footer-section {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
    position: relative;
    overflow: hidden;
}

.footer-brand-wrapper .navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-brand-wrapper .navbar-brand img {
    height: 45px;
    width: auto;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

/* Social media icons */
.social-icon-btn {
    width: 40px;
    height: 40px;
    background: var(--accent-blue-dim);
    border: 1px solid var(--glass-border);
    color: var(--accent-blue) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    background: var(--accent-blue);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--accent-blue-dim);
}

/* Titles */
.footer-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 1px;
}

/* Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

/* Contact information items */
.contact-icon-wrapper {
    width: 36px;
    height: 36px;
    background: rgba(43, 123, 232, 0.08);
    border: 1px solid rgba(43, 123, 232, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.footer-contact-list a {
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--accent-blue) !important;
}

/* Bottom border line */
.footer-bottom-border {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin-top: 20px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    .navbar-collapse {
        background: rgba(6, 10, 16, 0.95);
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        border: 1px solid var(--glass-border);
    }

    .nav-link {
        margin: 8px 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 130px 0 60px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        margin-bottom: 40px;
    }

    .services-section,
    .portfolio-section {
        padding: 60px 0;
    }

    .glass-panel {
        padding: 25px;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(43, 123, 232, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* ===== Language Switcher ===== */
.lang-dropdown {
    position: relative;
}

.btn-lang {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary) !important;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-lang:hover, .btn-lang:focus {
    background: rgba(43, 123, 232, 0.15);
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px var(--accent-blue-dim);
}

.lang-menu {
    border: 1px solid var(--glass-border) !important;
    background: rgba(6, 10, 16, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 12px !important;
    margin-top: 10px !important;
    padding: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.lang-menu .dropdown-item {
    color: var(--text-secondary) !important;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: 6px !important;
    transition: all 0.2s ease;
}

.lang-menu .dropdown-item:hover {
    background: var(--accent-blue) !important;
    color: white !important;
}

/* ===== WhatsApp Floating Button ===== */
@keyframes float-whatsapp {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}
/* ===== Chatbot Widget ===== */
#chatbot-wrapper {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    max-height: 500px;
    background: rgba(13, 21, 32, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    z-index: 9999;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
}

.chatbot-hidden {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

.chatbot-header {
    padding: 18px 22px;
    background: linear-gradient(135deg, #2b7be8 0%, #1a5bb8 100%);
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-avatar {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chatbot-header h6 {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4cd137; /* Bright Green */
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #4cd137;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #4cd137;
    animation: status-pulse 1.5s infinite;
}

@keyframes status-pulse {
    0% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(76, 209, 55, 0.7); }
    70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 10px rgba(76, 209, 55, 0); }
    100% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(76, 209, 55, 0); }
}

.chatbot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 300px;
    max-height: 350px;
}

.bot-msg, .user-msg {
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    max-width: 85%;
    line-height: 1.5;
}

.bot-msg {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.user-msg {
    background: var(--accent-blue);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chatbot-input {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 10px;
}

#chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 15px;
    color: white;
    font-size: 0.9rem;
}

#send-chat {
    background: var(--accent-blue);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#send-chat:hover {
    background: var(--accent-blue-dark);
    transform: scale(1.05);
}

.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    box-shadow: 0 10px 25px rgba(43, 123, 232, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-blue-dark);
}

.toggle-active {
    background: #ff4757;
    transform: rotate(90deg);
}

.toggle-active:hover {
    background: #ff6b81;
}

/* Adjust WhatsApp Button Position */
.whatsapp-btn {
    bottom: 30px;
    right: 105px !important;
}

@media (max-width: 576px) {
    #chatbot-wrapper {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 100px;
    }
}
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 105px; /* Shifted to avoid overlap with chatbot */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    animation: float-whatsapp 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    margin-top: 2px;
}

/* RTL Styles */
.rtl-mode {
    direction: rtl !important;
    text-align: right !important;
}

.rtl-mode .ms-auto,
.rtl-mode .navbar-nav {
    margin-right: auto !important;
    margin-left: unset !important;
}

.rtl-mode .me-auto {
    margin-left: auto !important;
    margin-right: unset !important;
}

.rtl-mode .btn-portfolio i {
    transform: rotate(180deg);
}

.rtl-mode .btn-portfolio:hover i {
    transform: translate(-2px, -2px) rotate(180deg);
}

.rtl-mode .project-link:hover i {
    transform: translate(-2px, -2px) rotate(180deg);
}

.rtl-mode .footer-links a:hover {
    transform: translateX(-5px);
}

.rtl-mode .lang-menu .dropdown-item:hover {
    transform: translateX(-3px);
}

.rtl-mode .featured-badge {
    right: unset !important;
    left: -35px !important;
    transform: rotate(-45deg) !important;
}

.rtl-mode .process-card .process-connector {
    right: unset !important;
    left: -15px !important;
    background: linear-gradient(-90deg, var(--accent-blue), transparent) !important;
}

.rtl-mode .section-title::after {
    left: unset !important;
    right: 0 !important;
}

.rtl-mode .section-header {
    text-align: right !important;
}

.rtl-mode .footer-title::after {
    left: unset !important;
    right: 0 !important;
}

.rtl-mode .footer-links, .rtl-mode .footer-contact-list {
    padding-right: 0 !important;
}

.rtl-mode .footer-section .text-md-start {
    text-align: right !important;
}

.rtl-mode .footer-section .text-md-end {
    text-align: left !important;
}

.rtl-mode .contact-icon-wrapper {
    margin-left: unset !important;
}

.rtl-mode .whatsapp-btn {
    right: auto;
    left: 30px;
}
