/* 
    SEO Ustaad - Premium Design System
    Palette: #FF6600 (Primary), #1A1D21 (Secondary), #FF8533 (Accent)
*/

:root {
    --primary-orange: #FF6600;
    --primary-dark: #1A1D21;
    --accent-amber: #FF8533;
    --bg-darker: #0F1113;
    --text-white: #FFFFFF;
    --text-gray: #A0A0A0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Bootstrap 5 Native Variable Overrides */
    --bs-primary: var(--primary-orange);
    --bs-primary-rgb: 255, 102, 0;
    --bs-body-bg: var(--primary-dark);
    --bs-body-color: var(--text-white);
    --bs-link-color: var(--primary-orange);
    --bs-link-hover-color: var(--accent-amber);
    --bs-border-color: var(--glass-border);
    --bs-focus-ring-color: rgba(255, 102, 0, 0.25);
    
    /* Native Accordion Theme Customization */
    --bs-accordion-bg: transparent;
    --bs-accordion-color: var(--text-white);
    --bs-accordion-active-color: var(--primary-orange);
    --bs-accordion-active-bg: rgba(255, 102, 0, 0.05);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25);
    
    /* Native Progress Bar Customization */
    --bs-progress-bar-bg: var(--primary-orange);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.outfit {
    font-family: 'Outfit', sans-serif;
}

/* Typography & Colors */
.text-orange { color: var(--primary-orange); }
.text-gray { color: var(--text-gray); }
.text-gradient {
    background: linear-gradient(120deg, var(--text-white) 20%, var(--primary-orange) 50%, var(--text-white) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineSweep 6s linear infinite;
}
@keyframes shineSweep {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Navbar */
.glass-nav {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 1.2rem 0;
    z-index: 1050;
}

/* Scroll Capsule Transition */
@media (min-width: 992px) {
    .glass-nav.scrolled {
        max-width: 90%;
        left: 50% !important;
        transform: translateX(-50%) translateY(15px);
        border-radius: 50px;
        background: rgba(26, 29, 33, 0.85) !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 102, 0, 0.08);
        padding: 0.6rem 2rem;
    }
}

.glass-nav.scrolled:not(.collapsed) {
    background: rgba(26, 29, 33, 0.95);
    padding: 0.8rem 0;
}

.navbar-brand img {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.08) rotate(-3deg);
    filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.5));
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0.8rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-orange);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.nav-link:hover::after {
    transform: scaleX(0.7);
}

/* Custom Hamburger menu toggle */
.hamburger-menu {
    width: 22px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: left center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(1px, -1px);
    background-color: var(--primary-orange);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(1px, 1px);
    background-color: var(--primary-orange);
}

/* Buttons */
.btn-orange {
    background-color: var(--primary-orange);
    border: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 8px;
}

.btn-orange:hover {
    background-color: var(--accent-amber);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.4), 0 0 15px rgba(255, 102, 0, 0.15);
}

.btn-glow {
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
    position: relative;
    overflow: visible;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--primary-orange);
    border-radius: 10px;
    opacity: 0;
    animation: btnPulse 2s infinite ease-out;
    pointer-events: none;
}

@keyframes btnPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.12);
        opacity: 0;
    }
}

.btn-outline-light {
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.btn-outline-light:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding: 140px 0 80px 0;
    background: radial-gradient(circle at 50% 50%, #1e2227 0%, #0f1113 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--glass-border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.15;
    z-index: 0;
}

/* Avatar Group Ratings */
.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group .avatar-init {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary-dark);
    margin-right: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.avatar-group:hover .avatar-init {
    margin-right: -4px;
    transform: translateY(-3px);
}

/* Multi-step Form Styling */
.hero-form-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 102, 0, 0.1);
    border: 1px solid var(--glass-border);
}

.max-height-step-container {
    max-height: 270px;
    overflow-y: auto;
    padding-right: 5px;
}

.max-height-step-container::-webkit-scrollbar {
    width: 4px;
}

.max-height-step-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.max-height-step-container::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 2px;
}

.max-height-step-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

.form-step {
    display: none;
    opacity: 0;
}

.form-step.active-step {
    display: block;
    opacity: 1;
}

/* Animations for step transitions */
.form-step-slide-in-right {
    display: block !important;
    animation: slideInRight 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.form-step-slide-out-left {
    display: block !important;
    animation: slideOutLeft 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.form-step-slide-in-left {
    display: block !important;
    animation: slideInLeft 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.form-step-slide-out-right {
    display: block !important;
    animation: slideOutRight 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutLeft {
    0% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-30px); }
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutRight {
    0% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(30px); }
}

/* Floating Orbs behind Hero */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}
.hero-orb-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
    top: 15%;
    left: 8%;
    animation: orbDrift1 22s infinite alternate ease-in-out;
}
.hero-orb-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #0077b5 0%, transparent 70%);
    bottom: 12%;
    right: 12%;
    animation: orbDrift2 26s infinite alternate ease-in-out;
}
@keyframes orbDrift1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(70px, 50px) scale(1.15); }
}
@keyframes orbDrift2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-60px, -70px) scale(1.1); }
}

/* Spotlight Follow Glow for Form Card */
.form-card-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 102, 0, 0.09),
        transparent 45%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-form-card:hover .form-card-spotlight {
    opacity: 1;
}

.hero-form-card > * {
    position: relative;
    z-index: 2;
}

.hero-form-card .form-card-spotlight {
    z-index: 0;
}

/* Scroll down guide styles */
.hero-scroll-guide {
    opacity: 0.65;
    transition: opacity 0.3s ease;
}
.hero-scroll-guide:hover {
    opacity: 1;
}
.animate-bounce {
    animation: bounceUpDown 1.6s infinite;
}
@keyframes bounceUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.service-option-card, .budget-option-card {
    display: block;
    cursor: pointer;
    width: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.service-option-card input[type="radio"],
.budget-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-option-content, .budget-option-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border) !important;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-option-content {
    border-radius: 10px;
}

.budget-option-content {
    border-radius: 8px;
}

.service-option-card input[type="radio"]:checked + .service-option-content,
.budget-option-card input[type="radio"]:checked + .budget-option-content {
    background: rgba(255, 102, 0, 0.08) !important;
    border-color: var(--primary-orange) !important;
    box-shadow: 0 0 18px rgba(255, 102, 0, 0.18) !important;
    transform: scale(1.02);
}

.service-option-card:hover .service-option-content,
.budget-option-card:hover .budget-option-content {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 102, 0, 0.35) !important;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.border-orange {
    border-color: rgba(255, 102, 0, 0.4) !important;
}

/* Overlays inside Form */
#formLoadingOverlay, #formSuccessMessage {
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Advanced Floating WhatsApp Widget (Bottom-Left) */
.whatsapp-widget-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-trigger-btn {
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-trigger-btn i {
    font-size: 1.5rem;
}

.whatsapp-trigger-btn:hover {
    transform: scale(1.05) translateY(-3px);
}

.whatsapp-agents-panel {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 0;
    width: 280px;
    background: rgba(26, 29, 33, 0.95);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 102, 0, 0.1);
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Open Panel State */
.whatsapp-widget-container.active .whatsapp-agents-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.agent-link {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    transition: all 0.25s ease;
}

.agent-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 102, 0, 0.4) !important;
    transform: translateX(3px);
}

.agent-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.65rem;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pulsing {
    animation: pulse 2s infinite;
}

.stagger-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.stagger-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }
.stagger-delay-5 { transition-delay: 0.5s; }

.stagger-reveal.revealed:nth-child(1) { transition-delay: 0.1s; }
.stagger-reveal.revealed:nth-child(2) { transition-delay: 0.2s; }
.stagger-reveal.revealed:nth-child(3) { transition-delay: 0.3s; }
.stagger-reveal.revealed:nth-child(4) { transition-delay: 0.4s; }
.stagger-reveal.revealed:nth-child(5) { transition-delay: 0.5s; }

/* Service Card Styles */
.service-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) scale3d(1, 1, 1);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover {
    border-color: rgba(255, 102, 0, 0.35) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(255, 102, 0, 0.12);
    transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) scale3d(1.02, 1.02, 1.02);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 102, 0, 0.1),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-icon {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.35));
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
    transform: translateZ(30px);
}

.service-card:hover .service-icon {
    transform: translateZ(50px) scale(1.1);
}

.service-card h3 {
    transform-style: preserve-3d;
    transform: translateZ(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover h3 {
    transform: translateZ(35px);
}

.service-card ul {
    transform-style: preserve-3d;
    transform: translateZ(15px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover ul {
    transform: translateZ(25px);
}

.service-card .explore-service-btn {
    transform-style: preserve-3d;
    transform: translateZ(25px);
}

.service-card:hover .explore-service-btn {
    transform: translateZ(40px);
}

.highlight-card {
    border-color: rgba(255, 102, 0, 0.25) !important;
    background: radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 102, 0, 0.03) 100%) !important;
}

.highlight-card .service-card-spotlight {
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 102, 0, 0.14),
        transparent 40%
    );
}

.explore-service-btn {
    border: 2px solid rgba(255, 102, 0, 0.4);
    color: white;
    background: transparent;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0);
}

.explore-service-btn:hover {
    background: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    color: white !important;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}

.explore-service-btn i {
    transition: transform 0.2s ease;
}

.explore-service-btn:hover i {
    transform: translateX(4px);
}

/* Calculator Styles */
.bg-darker { background-color: var(--bg-darker); }

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

.form-control, .form-select, .glass-input {
    background-color: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-white) !important;
    border-radius: 8px;
    padding: 12px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

.form-control:focus, .form-select:focus, .glass-input:focus {
    background-color: rgba(0, 0, 0, 0.3) !important;
    border-color: var(--primary-orange) !important;
    color: var(--text-white) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25) !important;
}

/* Custom Alert Customization mapping */
.alert-info {
    --bs-alert-color: var(--primary-orange);
    --bs-alert-bg: rgba(255, 102, 0, 0.05);
    --bs-alert-border-color: rgba(255, 102, 0, 0.25);
}

.results-box {
    background: #15181b;
    border-radius: 24px;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.1);
    transition: transform 0.3s ease;
}

.results-box:hover {
    transform: scale(1.02);
}

/* Custom Range Slider */
.custom-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 0.3s ease;
}

.custom-range::-webkit-slider-runnable-track {
    background: transparent !important;
    height: 8px;
    border-radius: 4px;
    border: none;
}

.custom-range::-moz-range-track {
    background: transparent !important;
    height: 8px;
    border-radius: 4px;
    border: none;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: var(--primary-orange) !important;
    border: 2px solid white !important;
    width: 22px;
    height: 22px;
    border-radius: 50% !important;
    margin-top: -7px;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.8);
}

.custom-range::-moz-range-thumb {
    background: var(--primary-orange) !important;
    border: 2px solid white !important;
    width: 22px;
    height: 22px;
    border-radius: 50% !important;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.custom-range::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.8);
}

/* Package Grid Styles */
.btn-outline-orange {
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover, .btn-outline-orange.active {
    background-color: var(--primary-orange);
    color: white;
}

.package-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 102, 0, 0.35) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35), 0 0 20px rgba(255, 102, 0, 0.08);
}

/* Popular Card highlight */
.package-card.popular-card {
    border-color: rgba(255, 102, 0, 0.25) !important;
    background: radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 102, 0, 0.03) 100%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.package-card.popular-card:hover {
    border-color: rgba(255, 102, 0, 0.45) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255, 102, 0, 0.1);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 24px;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
    letter-spacing: 0.5px;
}

.tier-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-orange);
    text-transform: uppercase;
    font-weight: 700;
}

/* Service Filters button styling */
#serviceFilters .btn-outline-secondary {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--text-gray) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.8rem;
}

#serviceFilters .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white !important;
    transform: translateY(-1px);
}

#serviceFilters .btn-outline-secondary.active {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

/* Glass Modal overrides */
.glass-modal .modal-content {
    background: rgba(26, 29, 33, 0.85) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

/* Accordion (FAQ) */
.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Active FAQ Item Highlight */
.accordion-item.active-item {
    border-color: rgba(255, 102, 0, 0.35) !important;
    background: rgba(255, 102, 0, 0.02);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.06);
}

.accordion-button {
    background: transparent !important;
    color: white !important;
    font-weight: 600;
    padding: 20px 24px;
    font-family: 'Outfit', sans-serif;
    border: none;
    box-shadow: none !important;
    text-align: left;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-orange) !important;
}

/* Custom Animated Chevron Indicator */
.accordion-button::after {
    display: none !important;
}

.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) .faq-icon-wrapper {
    background: rgba(255, 102, 0, 0.15);
    color: var(--primary-orange);
    border-color: rgba(255, 102, 0, 0.3);
    transform: rotate(180deg);
}

.accordion-body {
    color: var(--text-gray);
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-body strong {
    color: white;
}

/* FAQ Search & Filter bar styles */
.faq-search-wrapper .glass-input-group {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.faq-search-wrapper .glass-input-group:focus-within {
    border-color: rgba(255, 102, 0, 0.35) !important;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.08);
}

.faq-search-wrapper input {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 0.95rem;
    color: white !important;
}

.faq-search-wrapper input::placeholder {
    color: var(--text-gray);
    opacity: 0.6;
}

.faq-search-wrapper .input-group-text {
    background: transparent !important;
    border: none !important;
    color: var(--text-gray) !important;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.015);
    pointer-events: none;
    transition: all 0.3s ease;
}

.testimonial-card:hover::after {
    color: rgba(255, 102, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 102, 0, 0.3) !important;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.06);
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/* Category Filter Pills */
.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--text-gray) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white !important;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: rgba(255, 102, 0, 0.15) !important;
    border-color: rgba(255, 102, 0, 0.4) !important;
    color: var(--primary-orange) !important;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.15);
}

/* Trust Summary Featured Card */
.trust-summary-card {
    background: radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 102, 0, 0.03) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.trust-summary-card:hover {
    border-color: rgba(255, 102, 0, 0.25) !important;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.04);
}

/* Vibrant Linear-Gradient Initials Avatars */
.avatar-ring {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #1A1D21;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.avatar-ring:hover {
    transform: translateY(-4px) scale(1.1);
    z-index: 5;
}

.ms-n2 {
    margin-left: -8px !important;
}

.avatar-grad-1 { background: linear-gradient(135deg, #FF6600, #FF3300); }
.avatar-grad-2 { background: linear-gradient(135deg, #00C6FF, #0072FF); }
.avatar-grad-3 { background: linear-gradient(135deg, #9D50BB, #6E48AA); }
.avatar-grad-4 { background: linear-gradient(135deg, #11998e, #38ef7d); }

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spinSlow 3s linear infinite;
}

/* Footer Enhancement */
.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.95rem;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-3px);
    color: white;
}

.social-facebook:hover {
    background: #3b5998;
    border-color: #3b5998;
    box-shadow: 0 0 15px rgba(59, 89, 152, 0.4);
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.4);
}

.social-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.4);
}

.footer-link {
    color: var(--text-gray);
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-orange) !important;
}

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

.footer-contact-item {
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

a.footer-contact-item:hover {
    color: var(--primary-orange) !important;
    transform: translateX(4px);
}

.back-to-top-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 29, 33, 0.9);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 102, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 9998;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
}

.back-to-top-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-float:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.35);
}

.footer-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.03) 0%, transparent 70%);
    bottom: 0;
    right: 10%;
    pointer-events: none;
    z-index: 0;
}

.faq-link {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    transition: all 0.25s ease;
}

.faq-link:hover {
    background: rgba(255, 102, 0, 0.06);
    border-color: rgba(255, 102, 0, 0.4) !important;
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    .display-4 {
        font-size: 2.6rem !important;
    }
    .display-5 {
        font-size: 2.2rem !important;
    }
    .hero-section {
        padding-top: 120px;
    }
    .whatsapp-trigger-btn span {
        display: none;
    }
    .whatsapp-trigger-btn {
        padding: 15px;
        border-radius: 50%;
    }
}

/* Mobile menu scroll-lock */
body.mobile-menu-open {
    overflow: hidden !important;
}

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

/* Responsive Curtain Menu (max-width: 991.98px) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 17, 19, 0.98) !important;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        z-index: 1000;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    }
    
    .navbar-collapse.collapsing {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .navbar-collapse .navbar-nav {
        margin-top: -30px;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .navbar-collapse .nav-link {
        font-size: 1.6rem !important;
        font-weight: 700 !important;
        margin: 8px 0;
        padding: 0.6rem 2rem !important;
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        transition: opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1), transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
        display: inline-block;
    }
    
    .navbar-collapse .nav-link::after {
        display: none;
    }
    
    .navbar-collapse .nav-item {
        width: 100%;
    }
    
    .navbar-collapse .btn-orange {
        font-size: 1.1rem;
        padding: 0.8rem 2.5rem !important;
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        transition: opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1), transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
        display: inline-block;
        margin-top: 10px;
    }

    /* Staggered entrance animations for links on expanded menu */
    .navbar-collapse.show .nav-link,
    .navbar-collapse.show .btn-orange,
    .navbar-collapse.show .mobile-menu-footer {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    
    .navbar-collapse.show .nav-item:nth-child(1) .nav-link { transition-delay: 0.1s; }
    .navbar-collapse.show .nav-item:nth-child(2) .nav-link { transition-delay: 0.15s; }
    .navbar-collapse.show .nav-item:nth-child(3) .nav-link { transition-delay: 0.2s; }
    .navbar-collapse.show .nav-item:nth-child(4) .nav-link { transition-delay: 0.25s; }
    .navbar-collapse.show .nav-item:nth-child(5) .btn-orange { transition-delay: 0.3s; }
    
    .mobile-menu-footer {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1) 0.35s, transform 0.45s cubic-bezier(0.25, 1, 0.5, 1) 0.35s;
    }
    
    .navbar-toggler {
        position: relative;
        z-index: 1100;
    }
}
