:root {
    --primary-color: #ff9d2e;
    --secondary-color: #0052cc;
    --accent-color: #00d2ff;
    --dark-bg: #060b13;
    --darker-bg: #03060c;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a4b1cd;
    --gradient-1: linear-gradient(45deg, #0052cc 0%, #00d2ff 100%);
    --gradient-2: linear-gradient(135deg, #ff9d2e 0%, #ff6b00 100%);
    --gradient-silver: linear-gradient(135deg, #ffffff 0%, #a8a8a8 100%);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
}

.bg-dark {
    background-color: var(--dark-bg) !important;
}

.bg-darker {
    background-color: var(--darker-bg) !important;
}

.text-gradient,
.text-orange-gradient {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-blue-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-silver-gradient {
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.fw-800 {
    font-weight: 800;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Navbar Styling */
.navbar {
    transition: all 0.3s ease;
    padding: 10px 0;
}

.navbar-logo {
    height: 160px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Navbar Scrolled State */
.navbar.scrolled {
    background: rgba(11, 14, 17, 0.95);
    backdrop-filter: blur(15px);
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    transition: 0.3s;
    margin: 0 10px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Button Styling */
.btn-gradient {
    background: var(--gradient-2);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 157, 46, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 157, 46, 0.5);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 180px; /* Increased to clear massive logo */
    position: relative;
    overflow: hidden;
}

/* Page Header Padding (to clear the massive logo on inner pages) */
.page-header-padding {
    padding-top: 200px !important;
    padding-bottom: 80px;
}

.bg-primary-soft {
    background-color: rgba(255, 157, 46, 0.1);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Custom Liquid Glass Cards for Services */
.liquid-glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-form-card {
    background: rgba(11, 17, 32, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 10;
    margin-top: -100px; /* Pulls form up to reduce blank gap */
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.stat-card-1 {
    position: absolute;
    top: 10%;
    left: 0;
    padding: 15px 25px;
    text-align: center;
}

.stat-card-2 {
    position: absolute;
    bottom: 10%;
    right: 0;
    padding: 15px 25px;
    text-align: center;
}

.hero-shape-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 157, 46, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.hero-shape-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

/* Service Card */
.service-card {
    padding: 40px;
    border-radius: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover,
.service-card.active {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 18px;
    font-size: 28px;
    color: white;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Small Icons */
.small-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Portfolio Card */
.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.5s;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-overlay a {
    width: 50px;
    height: 50px;
    background: white;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 15px;
}

/* Form Styling */
.form-control,
.form-select {
    background: rgb(255, 255, 255);
    border: 1px solid var(--glass-border);
    color: rgb(0, 0, 0);
    padding: 12px 20px;
    border-radius: 10px;
}

.form-control:focus,
.form-select:focus {
    background: rgb(255, 254, 254);
    border-color: var(--primary-color);
    box-shadow: none;
    color: rgb(0, 0, 0);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gradient-2);
    transform: translateY(-3px);
}

.social-links a:hover i {
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
}

/* Colorful Social Icons */
.social-links a .fa-facebook-f { color: #1877F2; }
.social-links a .fa-twitter { color: #1DA1F2; }
.social-links a .fa-linkedin-in { color: #0A66C2; }
.social-links a .fa-instagram { 
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsiveness */
@media (max-width: 991px) {
    .navbar {
        background: var(--dark-bg);
        padding: 8px 0;
    }

    .navbar-brand {
        font-size: 0.9rem !important;
        max-width: 75%;
        white-space: nowrap;
        overflow: hidden;
    }

    .navbar-logo {
        height: 110px !important;
        margin-right: 5px;
    }

    .navbar-collapse {
        background: #0b0e11;
        padding: 20px;
        margin-top: 15px;
        border-radius: 20px;
        border: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-link {
        margin: 10px 0;
        display: block;
        padding: 10px !important;
    }

    .hero-section {
        text-align: center;
        padding-top: 230px !important; /* Increased for mobile logo clearance */
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .page-header-padding {
        padding-top: 240px !important;
    }

    .hero-section .display-3 {
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-section .d-flex {
        flex-direction: column;
        gap: 12px !important;
    }

    .hero-section .btn {
        width: 100%;
        padding: 15px !important;
    }

    .stat-card-1,
    .stat-card-2 {
        display: none;
    }

    .py-100 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 25px;
    }

    .contact-wrapper {
        padding: 20px !important;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 100px !important;
    }

    .navbar-brand {
        font-size: 0.8rem !important;
    }

    .hero-section .display-3 {
        font-size: 2rem;
    }
}

/* Reel Cards Styling */
.reel-card {
    transition: all 0.4s ease;
    border-radius: 20px;
}

.reel-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 160%;
    /* Slightly more compact aspect ratio */
    overflow: hidden;
}

.reel-thumbnail img,
.reel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}


.reel-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color) !important;
}

.reel-card:hover .reel-thumbnail img {
    transform: scale(1.1);
}

#reels {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

#reels .container {
    max-width: 1100px;
}

/* --- New Design Elements --- */

/* Hero Lead Form */
.hero-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-form-card h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

/* Client Logo Slider */
.client-slider {
    padding: 30px 0;
    background: rgb(255, 255, 255);
    overflow: hidden;
    white-space: nowrap;
}

.client-track {
    display: inline-flex;
    animation: scroll 7s linear infinite;
}

.client-track img {
    height: 35px;
    margin: 0 40px;
    opacity: 1;
    transition: 0.3s;
}



@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Service Pricing Badge */
.pricing-badge {
    display: inline-block;
    background: rgba(255, 157, 46, 0.15);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-list li i {
    color: #198754;
    /* Emerald Green */
    margin-right: 10px;
}

/* Trust Badge Section */
.trust-badge-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.google-partner-badge {
    height: 60px;
    object-fit: contain;
}

/* FAQ Section */
.accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text-primary) !important;
    font-weight: 600;
    padding: 20px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 157, 46, 0.05);
    color: var(--primary-color) !important;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    color: var(--text-secondary);
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
}

/* Sticky Contact Bar (Mobile) */
.sticky-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-bar-item {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.bar-call {
    background: #ffc107;
    color: #000;
}

.bar-whatsapp {
    background: #25d366;
    color: #fff;
}

@media (min-width: 992px) {
    .sticky-contact-bar {
        display: none;
    }
}

/* Enhanced Aesthetic Accordion */
.why-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 16px !important;
    transition: all 0.4s ease !important;
}

.why-accordion .accordion-item:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 157, 46, 0.4) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 157, 46, 0.1);
}

.why-accordion .accordion-button {
    background: transparent !important;
    color: #ffffff !important;
    font-size: 1.1rem;
    padding: 22px 24px !important;
    border: none !important;
}

.why-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(255, 157, 46, 0.08) 0%, rgba(255, 255, 255, 0) 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.why-accordion .accordion-button .text-primary {
    background: var(--gradient-2) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-size: 1.3rem;
    margin-right: 18px !important;
    display: inline-block;
}

.why-accordion .accordion-body {
    background: transparent !important;
    color: #a4b1cd !important;
    line-height: 1.8;
    padding: 0 24px 24px 65px !important;
}

/* Enhanced Animated Plus/Minus Icon */
.why-accordion .accordion-button::after {
    content: '\f067' !important;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background: none !important;
    color: var(--primary-color) !important;
    font-size: 1.2rem;
    transition: transform 0.4s ease, color 0.4s ease !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(135deg) !important;
    color: #ff6b00 !important;
}

/* FAQ Accordion Styling (Matching Why Choose Us) */
#digitalFaq .accordion-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.02) !important;
    border-radius: 24px !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    margin-bottom: 15px !important;
}

/* Liquid Glass Toggle Button for Heading */
.liquid-glass-toggle {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 15px 40px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.liquid-glass-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: 0 20px 45px 0 rgba(255, 157, 46, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    border-color: rgba(255, 157, 46, 0.4);
}

/* Liquid Glass Heading (Static) */
.liquid-glass-heading {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 15px 40px;
    display: inline-block;
}

/* Hero Background Animated Orbs */
.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-bg-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-anim .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.9;
    animation: floatOrb 12s infinite ease-in-out alternate;
    will-change: transform;
}

.hero-bg-anim .orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 107, 0, 0.4); /* Stronger Orange */
    top: -5%;
    left: -5%;
    animation-duration: 10s;
}

.hero-bg-anim .orb-2 {
    width: 700px;
    height: 700px;
    background: rgba(0, 163, 255, 0.3); /* Stronger Blue */
    bottom: -15%;
    right: -10%;
    animation-duration: 14s;
    animation-delay: -3s;
}

.hero-bg-anim .orb-3 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.15); /* Stronger White */
    top: 25%;
    left: 25%;
    animation-duration: 18s;
    animation-delay: -7s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(150px, -100px) scale(1.1); }
    66% { transform: translate(-100px, 150px) scale(0.9); }
    100% { transform: translate(200px, 50px) scale(1.2); }
}

#digitalFaq .accordion-item:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 157, 46, 0.4) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 157, 46, 0.1);
}

#digitalFaq .accordion-button {
    background: transparent !important;
    color: #ffffff !important;
    font-size: 1.1rem;
    padding: 22px 24px !important;
    border: none !important;
    box-shadow: none !important;
}

#digitalFaq .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(255, 157, 46, 0.08) 0%, rgba(255, 255, 255, 0) 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

#digitalFaq .accordion-body {
    background: transparent !important;
    color: #a4b1cd !important;
    line-height: 1.8;
    padding: 0 24px 24px 24px !important;
}

/* Remove icons from FAQ questions as requested */
#digitalFaq .accordion-button::after,
}

/* Liquid Glass Service Card */
.liquid-glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.liquid-glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 107, 0, 0.05);
}

.liquid-glass-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.liquid-glass-card .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 107, 0, 0));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ff6b00;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.liquid-glass-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 25px;
}

.liquid-glass-card ul li {
    font-size: 0.9rem;
    color: #a4b1cd;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.liquid-glass-card ul li i {
    color: #ff6b00;
    font-size: 0.8rem;
    margin-top: 4px;
    margin-right: 10px;
}

/* Dark Neumorphic Glass Box (as requested from screenshot) */
.dark-glass-box {
    background: #1a1d24;
    border-radius: 36px;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.6), 
        -4px -4px 12px rgba(255, 255, 255, 0.04),
        inset 2px 2px 4px rgba(255, 255, 255, 0.02),
        inset -2px -2px 4px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.01);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dark-glass-box:hover {
    transform: translateY(-5px);
    box-shadow: 
        12px 12px 20px rgba(0, 0, 0, 0.7), 
        -4px -4px 12px rgba(255, 255, 255, 0.04),
        inset 2px 2px 4px rgba(255, 107, 0, 0.15),
        inset -2px -2px 4px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 107, 0, 0.2);
}

/* WhatsApp Glass Button */
.btn-whatsapp-glass {
    background: rgba(255, 111, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 111, 0, 0.3);
    color: var(--primary, #ff6a00);
    padding: 12px 25px;
    border-radius: 50px;
    transition: 0.3s ease;
    font-weight: 600;
}
.btn-whatsapp-glass:hover {
    background: var(--gradient-1, linear-gradient(45deg, #ff6a00, #ff9800));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 111, 0, 0.2);
}
