/* ==========================================
   BrandVistaMarketing.com - Premium Stylesheet
   ========================================== */

/* Importing Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap');

:root {
    --primary: #fed91f;         /* Accent Brand Yellow */
    --primary-hover: #e0be10;
    --dark: #0a0a0a;            /* Deep Carbon Black */
    --dark-bg: #050505;         /* Ultra dark bg */
    --dark-card: #121212;       /* Slate Dark Card */
    --light: #ffffff;
    --smoke: #f8f9fa;           /* Premium light gray bg */
    --gray-body: #666666;
    --gray-light: #eaeaea;
    --border-glass: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-sub: 'Kanit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-body);
    background-color: var(--light);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
}

p {
    font-family: var(--font-body);
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Section Spacing & Headers */
.space {
    padding: 100px 0;
    overflow: hidden;
}
@media (max-width: 991px) {
    .space {
        padding: 70px 0;
    }
}

.bg-dark-premium {
    background-color: var(--dark);
    color: var(--light);
}

.bg-smoke-premium {
    background-color: var(--smoke);
}

/* Header & Sticky Navigation */
.th-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.sticky-wrapper.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.menu-link {
    font-family: var(--font-sub);
    font-size: 15px;
    font-weight: 500;
    color: var(--light);
    margin-right: 25px;
    letter-spacing: 0.5px;
}
.menu-link:hover, .menu-link.active {
    color: var(--primary);
}

.sticky-wrapper.sticky .menu-link {
    color: var(--light);
}
.sticky-wrapper.sticky .menu-link:hover {
    color: var(--primary);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-glass) !important;
    border-radius: 12px !important;
    padding: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    animation: fadeInDropdown 0.3s ease-out;
}
@keyframes fadeInDropdown {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
    color: var(--light) !important;
    font-family: var(--font-sub);
    font-size: 14px;
    border-radius: 6px;
    padding: 8px 16px !important;
    transition: var(--transition-smooth);
}
.dropdown-item:hover {
    background-color: var(--primary) !important;
    color: var(--dark) !important;
}
.dropdown-divider {
    border-color: var(--border-glass) !important;
}

/* Header Buttons */
.email-link {
    color: var(--light) !important;
    font-family: var(--font-sub);
    font-weight: 500;
    margin-right: 20px;
    font-size: 14px;
}
.email-link i {
    color: var(--primary);
    margin-right: 6px;
}

/* Buttons */
.th-btn {
    font-family: var(--font-sub);
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}

.th-btn.style1 {
    background-color: var(--primary);
    color: var(--dark);
}
.th-btn.style1:hover {
    background-color: var(--light);
    color: var(--dark);
    box-shadow: 0 8px 24px rgba(254, 217, 31, 0.2);
}

.th-btn.style2 {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--border-glass);
}
.th-btn.style2:hover {
    background-color: var(--light);
    color: var(--dark);
    border-color: var(--light);
}

.th-btn.style3 {
    background-color: var(--dark);
    color: var(--light);
}
.th-btn.style3:hover {
    background-color: var(--primary);
    color: var(--dark);
    box-shadow: 0 8px 24px rgba(254, 217, 31, 0.2);
}

/* Sub-titles & Main Titles */
.sub-title {
    font-family: var(--font-sub);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.sub-title.dark-text {
    color: var(--dark);
}

.square-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
}

.dot-accent {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.sec-title {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
@media (max-width: 767px) {
    .sec-title {
        font-size: 32px;
    }
}

.sec-title.text-white {
    color: var(--light);
}

/* Shadow Titles behind headings */
.shadow-title {
    font-family: var(--font-heading);
    font-size: 110px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-30px);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    text-transform: uppercase;
}
.bg-dark-premium .shadow-title {
    color: rgba(255, 255, 255, 0.015);
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    padding: 220px 0 160px 0;
    background: var(--dark-bg);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.72);
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    color: var(--light);
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 25px;
}
.hero-title span.accent {
    color: var(--primary);
}
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
}
@media (max-width: 767px) {
    .hero-title {
        font-size: 36px;
    }
}

.hero-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    max-width: 600px;
}

/* Floating Shapes */
.shape-jump {
    animation: shapeJump 6s ease-in-out infinite alternate;
}
.shape-spin {
    animation: shapeSpin 20s linear infinite;
}

@keyframes shapeJump {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
@keyframes shapeSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.hero-form-card h4 {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 22px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--light);
    border-radius: 8px;
    padding: 12px 18px;
    transition: var(--transition-smooth);
}
.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    color: var(--light);
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Brand Marquee */
.marquee-area {
    padding: 40px 0;
    background: #000;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}
.marquee-item img {
    height: 36px;
    margin-right: 12px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: var(--transition-smooth);
}
.marquee-item:hover img {
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Service Accordion List (Hover-Reveal Style) */
.service-accordion {
    border-top: 1px solid var(--gray-light);
}

.service-accordion-item {
    border-bottom: 1px solid var(--gray-light);
    padding: 30px 0;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.service-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-num {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-right: 30px;
}

.service-title-text {
    font-size: 28px;
    margin-bottom: 0;
    transition: var(--transition-smooth);
}

.service-icon-arrow {
    font-size: 20px;
    color: var(--dark);
    transition: var(--transition-smooth);
}

.service-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.service-accordion-content {
    padding-top: 25px;
    display: flex;
    gap: 40px;
}

.service-acc-desc {
    flex: 1;
    font-size: 16px;
}

.service-acc-img {
    width: 320px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-acc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* Active Service Accordion States */
.service-accordion-item:hover .service-title-text,
.service-accordion-item.active .service-title-text {
    color: var(--primary);
    transform: translateX(10px);
}

.service-accordion-item:hover .service-icon-arrow,
.service-accordion-item.active .service-icon-arrow {
    transform: rotate(45deg);
    color: var(--primary);
}

.service-accordion-item.active .service-accordion-body {
    max-height: 500px;
}

/* Custom Image Cards */
.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark-card);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.project-img {
    height: 380px;
    overflow: hidden;
}
.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-details {
    padding: 30px;
    background: var(--light);
    border-top: 1px solid var(--gray-light);
}
.bg-dark-premium .project-details {
    background: var(--dark-card);
    border-top: 1px solid var(--border-glass);
}

.project-category {
    font-size: 13px;
    font-family: var(--font-sub);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.project-title {
    font-size: 22px;
    margin-bottom: 0;
}
.project-title a {
    color: var(--dark);
}
.bg-dark-premium .project-title a {
    color: var(--light);
}
.project-title a:hover {
    color: var(--primary);
}

/* Process Steps Card */
.process-step-card {
    position: relative;
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--gray-light);
    transition: var(--transition-smooth);
    z-index: 1;
}
.process-step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.process-step-num {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    color: rgba(254, 217, 31, 0.15);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}
.process-step-card:hover .process-step-num {
    color: var(--primary);
    transform: scale(1.1);
}

.process-step-icon {
    width: 60px;
    height: 60px;
    background: var(--smoke);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 20px;
}
.process-step-card:hover .process-step-icon {
    background: var(--primary);
    color: var(--dark);
}

/* Statistics and Progress Circles */
.circular-progress-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
    margin-top: 40px;
}

.progress-circle-item {
    text-align: center;
}

.progress-svg {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
}

.progress-bg-circle {
    fill: none;
    stroke: var(--gray-light);
    stroke-width: 6;
}
.bg-dark-premium .progress-bg-circle {
    stroke: var(--border-glass);
}

.progress-bar-circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease-in-out;
}

.circle-percentage {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 15px;
}
.bg-dark-premium .circle-percentage {
    color: var(--light);
}

.circle-title {
    font-family: var(--font-sub);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-body);
    margin-top: 5px;
}

/* FAQs Accordion */
.custom-faq-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 15px;
    padding-bottom: 10px;
}
.bg-dark-premium .custom-faq-accordion .accordion-item {
    border-bottom-color: var(--border-glass);
}

.custom-faq-accordion .accordion-button {
    background: transparent;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    box-shadow: none;
    border: none;
}
.bg-dark-premium .custom-faq-accordion .accordion-button {
    color: var(--light);
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
}

.custom-faq-accordion .accordion-button::after {
    filter: grayscale(1) invert(0);
}
.bg-dark-premium .custom-faq-accordion .accordion-button::after {
    filter: grayscale(1) invert(1);
}

.custom-faq-accordion .accordion-body {
    padding: 10px 0 20px 0;
    color: var(--gray-body);
}

/* Testimonial slider styles */
.testi-grid {
    display: flex;
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-light);
    min-height: 400px;
}

.testi-content-panel {
    flex: 1.2;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testi-img-panel {
    flex: 0.8;
    position: relative;
    overflow: hidden;
}
.testi-img-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-quote-icon {
    font-size: 50px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testi-quote-text {
    font-size: 20px;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

.testi-author-name {
    font-size: 22px;
    margin-bottom: 5px;
}

.testi-author-desig {
    font-family: var(--font-sub);
    font-size: 13px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-navigation-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.slider-arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--gray-light);
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.slider-arrow-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(254, 217, 31, 0.3);
}

/* Service Cards on Services Page */
.service-card-modern {
    background: var(--light);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-card-icon {
    width: 65px;
    height: 65px;
    background: var(--smoke);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}
.service-card-modern:hover .service-card-icon {
    background: var(--primary);
    color: var(--dark);
}

.service-card-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card-desc {
    font-size: 15px;
    color: var(--gray-body);
    margin-bottom: 25px;
    flex: 1;
}

.service-card-link {
    font-family: var(--font-sub);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.service-card-link i {
    transition: var(--transition-smooth);
}
.service-card-modern:hover .service-card-link {
    color: var(--primary);
}
.service-card-modern:hover .service-card-link i {
    transform: translateX(5px);
}

/* Footer widget structure */
.footer-wrapper {
    background: var(--dark-bg);
    color: var(--light);
    border-top: 1px solid var(--border-glass);
}

.footer-top {
    padding: 80px 0 50px 0;
}

.footer-widget-logo img {
    height: 48px;
    margin-bottom: 20px;
    background-color: transparent;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-bottom: 25px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.footer-social-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--light);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-item {
    margin-bottom: 12px;
}
.footer-menu-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}
.footer-menu-item a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}
.footer-contact-item i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 4px;
}

.copyright-section {
    padding: 25px 0;
    border-top: 1px solid var(--border-glass);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}
.copyright-section a {
    color: var(--light);
}
.copyright-section a:hover {
    color: var(--primary);
}

/* Service Inner Pages Sub Header */
.inner-header-banner {
    position: relative;
    padding: 180px 0 100px 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.inner-banner-title {
    font-size: 52px;
    color: var(--light);
    margin-bottom: 15px;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-sub);
    font-size: 14px;
}
.breadcrumb-list a {
    color: var(--primary);
}
.breadcrumb-list span.separator {
    color: rgba(255,255,255,0.3);
}

/* Service Details Content Styling */
.service-details-sidebar {
    background: var(--smoke);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--gray-light);
}

.sidebar-service-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.sidebar-menu-item {
    margin-bottom: 10px;
}
.sidebar-menu-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--light);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    color: var(--dark);
    font-family: var(--font-sub);
    font-weight: 500;
}
.sidebar-menu-item a:hover,
.sidebar-menu-item.active a {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.sidebar-cta-card {
    background: var(--dark);
    color: var(--light);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}
.sidebar-cta-card h4 {
    color: var(--light);
    margin-bottom: 15px;
}

/* Pricing cards */
.pricing-card {
    background: var(--light);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(254, 217, 31, 0.15);
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--dark);
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
}

.pricing-plan-name {
    font-size: 22px;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    font-family: var(--font-heading);
}
.pricing-price span.period {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-body);
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    text-align: left;
}
.pricing-features-list li {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features-list li i {
    color: var(--primary);
}
.pricing-features-list li.unavailable {
    color: rgba(0, 0, 0, 0.3);
    text-decoration: line-through;
}
.pricing-features-list li.unavailable i {
    color: rgba(0, 0, 0, 0.2);
}

/* Multi-step form on get-started page */
.onboarding-container {
    background: var(--light);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.step-indicator-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
}
.step-indicator-line {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gray-light);
    z-index: 0;
}
.step-indicator-progress {
    position: absolute;
    top: 20px;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary);
    z-index: 0;
    transition: var(--transition-smooth);
}

.step-node {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--light);
    border: 3px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gray-body);
    z-index: 1;
    transition: var(--transition-smooth);
}
.step-node.active {
    border-color: var(--primary);
    color: var(--dark);
    background: var(--primary);
    box-shadow: 0 0 15px rgba(254, 217, 31, 0.4);
}
.step-node.completed {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--dark);
}

.form-step-panel {
    display: none;
}
.form-step-panel.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

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

.service-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-select-card {
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.service-select-card input[type="checkbox"] {
    display: none;
}
.service-select-card.selected {
    border-color: var(--primary);
    background: rgba(254, 217, 31, 0.05);
    box-shadow: 0 8px 20px rgba(254, 217, 31, 0.15);
}
.service-select-card i {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 15px;
    display: block;
}
.service-select-card.selected i {
    color: var(--primary);
}

/* Floating CTA & WhatsApp Float Styles */
.whatsapp-float-btn {
    position: fixed;
    bottom: 80px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition-smooth);
}
.whatsapp-float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    display: none;
    justify-content: center;
    padding: 12px 15px;
    z-index: 9999;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.15);
}
.mobile-action-bar a {
    color: var(--dark);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .mobile-action-bar {
        display: flex;
    }
}

/* Custom Cursor Follower */
.mouse-follower {
    width: 25px;
    height: 25px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    display: none;
}
@media (min-width: 992px) {
    .mouse-follower {
        display: block;
    }
}

.mouse-follower.expand {
    width: 50px;
    height: 50px;
    background-color: rgba(254, 217, 31, 0.1);
    border-color: var(--primary);
}

/* Success Checkmark Animation */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px auto;
}

.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
}
.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}
.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
}
.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: #ffffff;
    transform: rotate(-45deg);
}
.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}
.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(76, 175, 80, 0.5);
}
.success-checkmark .check-icon .icon-fix {
    top: 8px;
    left: 28px;
    width: 5px;
    height: 85px;
    position: absolute;
    z-index: 1;
    background: #ffffff;
    transform: rotate(-45deg);
}

@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px; }
    54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 14px; top: 46px; }
}
@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px; }
    65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}

/* Concept 2 Specific styles */
.hero-centered {
    text-align: center;
    padding: 240px 0 160px 0;
}
.hero-centered .hero-title {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.hero-centered .hero-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.glass-floating-cards {
    position: relative;
    margin-top: 60px;
    height: 400px;
}

.floating-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    width: 280px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}
.floating-glass-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 25px 45px rgba(254, 217, 31, 0.15);
}

.floating-glass-card.c1 { top: 20px; left: 5%; }
.floating-glass-card.c2 { top: 120px; left: 38%; }
.floating-glass-card.c3 { top: 40px; right: 5%; }

@media (max-width: 991px) {
    .glass-floating-cards {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .floating-glass-card {
        position: relative;
        width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
}

/* ==========================================
   Mobile Menu Drawer & Responsiveness Fixes
   ========================================== */

/* Hamburger Button */
.mobile-menu-toggle {
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition-smooth);
}
.mobile-menu-toggle:hover {
    color: var(--primary);
}

/* Mobile Drawer Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}
.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-glass);
    z-index: 9999;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    overflow-y: auto;
    visibility: hidden;
}
.mobile-menu-drawer.active {
    transform: translateX(0);
    visibility: visible;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-glass);
}
.drawer-logo {
    height: 38px;
    width: auto;
}
.drawer-close-btn {
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.drawer-close-btn:hover {
    color: var(--primary);
}

.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.drawer-link {
    font-family: var(--font-sub);
    font-size: 18px;
    font-weight: 500;
    color: var(--light);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    transition: var(--transition-smooth);
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    text-align: left;
}
.drawer-link:hover, .drawer-link.active {
    color: var(--primary);
    padding-left: 8px;
}

/* Mobile Submenu Dropdown */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 0 15px;
}
.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 350px;
    padding: 10px 15px;
    margin-top: 5px;
}
.mobile-dropdown-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 8px 0;
    font-size: 15px;
    font-family: var(--font-body);
}
.mobile-dropdown-menu a:hover {
    color: var(--primary) !important;
}
.mobile-dropdown .dropdown-toggle-btn i {
    font-size: 14px;
    transition: transform 0.3s;
}
.mobile-dropdown.active .dropdown-toggle-btn i {
    transform: rotate(180deg);
}

/* General Mobile Responsiveness Overrides */
@media (max-width: 991px) {
    .th-header {
        padding: 15px 0;
    }
}

@media (max-width: 767px) {
    .space {
        padding: 60px 0;
    }
    .hero-wrapper {
        padding: 140px 0 80px 0 !important;
    }
    .hero-title {
        font-size: 34px !important;
    }
    .hero-text {
        font-size: 15px !important;
        margin-bottom: 25px;
    }
    .service-accordion-content {
        flex-direction: column !important;
        gap: 20px !important;
    }
    .service-acc-img {
        width: 100% !important;
        height: 180px !important;
    }
    .testi-grid {
        flex-direction: column !important;
        min-height: auto !important;
    }
    .testi-content-panel {
        padding: 30px 20px !important;
    }
    .testi-img-panel {
        height: 220px !important;
    }
    .onboarding-container {
        padding: 25px 15px !important;
    }
    .service-select-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)) !important;
        gap: 12px !important;
    }
    .service-select-card {
        padding: 15px 10px !important;
    }
    .service-select-card i {
        font-size: 22px !important;
        margin-bottom: 8px !important;
    }
    .onboarding-container h3 {
        font-size: 18px !important;
    }
    .step-indicator-wrapper {
        margin-bottom: 30px !important;
    }
}
