/* ========================================
   VEDDIA MEDIA - CREATED BY MUSTAFA ADSAN
   ======================================== */

:root {
    /* Primary Colors - Soft/Light Versions */
    --primary-blue: #3B82F6;
    --primary-purple: #8B5CF6;
    --primary-pink: #EC4899;
    --primary-cyan: #06B6D4;

    /* Softer Standalone Colors (Use individually, not as gradient) */
    --soft-blue: #60a5fa;
    --soft-purple: #a78bfa;
    --soft-pink: #f472b6;
    --soft-cyan: #22d3ee;

    /* Background Colors */
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;

    /* Gradients (Use sparingly) */
    --rainbow-gradient: linear-gradient(135deg, #3B82F6, #8B5CF6, #EC4899, #06B6D4);
    --premium-gradient: linear-gradient(135deg, #14b8a6, #0ea5e9, #6366f1);
    --rainbow-text: linear-gradient(135deg, #3B82F6, #8B5CF6, #EC4899);
    --soft-glow: 0 0 20px rgba(139, 92, 246, 0.3);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
}

/* ========================================
   UTILITIES
   ======================================== */
.gradient-text-main {
    background: var(--rainbow-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Default Button Colors - Teal→Blue→Indigo Gradient */
/* This is the "Ücretsiz Teklif Alın" button color */
.btn-gradient {
    background: linear-gradient(135deg, #14b8a6, #0ea5e9, #6366f1);
    background-size: 200% auto;
    color: white;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gradient:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.4);
    color: white;
}

.btn-outline-gradient {
    background: white;
    color: var(--text-dark);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--rainbow-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

.btn-xl {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand .logo-img {
    height: 55px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    padding: 0.5rem 1.2rem !important;
    transition: color 0.2s ease-out;
    position: relative;
    letter-spacing: 0.5px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
    width: 80%;
    left: 10%;
    background: black;
}

.nav-item.dropdown:hover>.nav-link.dropdown-toggle::after,
.nav-item.dropdown.active>.nav-link.dropdown-toggle::after,
.nav-link.dropdown-toggle.active::after {
    width: 80%;
    left: 10%;
    opacity: 1;
    background: black;
}

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

/* Dropdown Toggle - Simple arrow on left */
.nav-item.dropdown>.nav-link.dropdown-toggle {
    display: inline-flex;
    align-items: center;
}

.nav-item.dropdown>.nav-link.dropdown-toggle::before {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--text-light);
    border-bottom: 2px solid var(--text-light);
    transform: rotate(45deg);
    margin-right: 8px;
    margin-bottom: 3px;
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover>.nav-link.dropdown-toggle::before {
    border-color: var(--primary-blue);
}

.nav-item.dropdown>.nav-link.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease, left 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.nav-item.dropdown:hover>.nav-link.dropdown-toggle::after {
    width: 80%;
    left: 10%;
    opacity: 1;
}

/* Dropdown & Mega Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    border: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 20px rgba(139, 92, 246, 0.08);
    padding: 1.2rem;
    margin-top: 0.5rem;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) translateZ(0);
    transition: opacity 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.2s;
    z-index: 1000;
    min-width: 240px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    will-change: opacity, transform;
}

/* Fix for hover gap sensitivity */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: transparent;
}

.nav-item.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateZ(0);
}

.dropdown-item {
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-weight: 500;
    color: var(--text-light);
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--premium-gradient);
    transform: scaleY(0);
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item:hover {
    background: rgba(59, 130, 246, 0.03);
    color: var(--primary-blue);
}

.dropdown-item i {
    font-size: 1.1rem;
    margin-right: 0.75rem;
    transition: all 0.2s ease-out;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
}

.dropdown-item:hover i {
    opacity: 1;
}

/* Mega Menu Specific */
/* Parent needs position static for mega menu centering */
.nav-item.dropdown:has(.mega-menu) {
    position: static;
}

.mega-menu {
    position: absolute;
    width: 1200px;
    max-width: 95vw;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 30px rgba(139, 92, 246, 0.1);
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
    z-index: 1000;
    will-change: opacity, transform;
    transition: opacity 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.25s;
}

.mega-menu-title {
    background: linear-gradient(135deg, #0d9488, #0284c7, #4f46e5) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

.nav-item.dropdown:hover .mega-menu,
.mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) translateZ(0);
}

.mega-menu-list a {
    color: var(--text-light);
    display: block;
    padding: 6px 10px;
    font-size: 0.9rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.2s ease-out;
}

.mega-menu-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0%;
    background: var(--premium-gradient);
    border-radius: 8px;
    transform: translateY(-50%);
    transition: height 0.2s ease-out;
}

.mega-menu-list a:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.05);
    transform: scale(1.03);
    font-weight: 600;
}

/* ========================================
   SERVICE LINKS
   ======================================== */
.service-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--rainbow-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-link-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.service-link-card span {
    font-weight: 600;
    color: var(--text-dark);
}

.icon-wrapper {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--rainbow-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--rainbow-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--rainbow-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-list li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.showcase-section {
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

#showcase-3d-container {
    width: 100%;
    height: 400px;
}

.stats-row {
    margin-top: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* ========================================
   PORTFOLIO
   ======================================== */
.portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.portfolio-overlay h4 {
    color: white;
    margin-bottom: 1rem;
}

/* ========================================
   WHY US
   ======================================== */
.why-us-card {
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.why-us-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--rainbow-gradient);
}

.feature-box {
    text-align: center;
    padding: 1.5rem;
}

.gradient-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--rainbow-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
   REFERENCES
   ======================================== */
.ref-logo {
    opacity: 0.5;
    transition: var(--transition);
    filter: grayscale(100%);
    text-align: center;
}

.ref-logo img {
    max-width: 100%;
    height: auto;
}

.ref-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* ========================================
   CTA
   ======================================== */
.cta-section {
    padding: 6rem 0;
}

.cta-box {
    background: var(--rainbow-gradient);
    padding: 4rem;
    border-radius: 24px;
    color: white;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */
/* ========================================
   FOOTER
   ======================================== */
.footer-section {
    background: #f8fafc;
    color: #64748b;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    border-top: none;
    border-radius: 50px 50px 0 0;
    margin-top: 60px;
    /* Teal line following the curve (0 -4px 0) + Glow effect */
    box-shadow: 0 -4px 0 #2dd4bf, 0 -10px 30px rgba(45, 212, 191, 0.3);
}

.footer-logo {
    max-width: 340px;
    height: auto;
}

/* ========================================
   KVKK PAGE SIDEBAR (CORPORATE)
   ======================================== */
.corporate-sidebar .list-group-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    border-left: 4px solid transparent;
    /* Structure for active state */
    transition: all 0.2s ease;
}

.corporate-sidebar .list-group-item:hover {
    background-color: #f8fafc;
    color: #1e293b;
}

.corporate-sidebar .list-group-item.active {
    background-color: #eff6ff;
    /* Soft blue bg */
    color: #2563eb;
    /* Primary text */
    border-left-color: #2563eb;
    /* Strong indicator */
    font-weight: 600;
    z-index: 2;
}

/* ========================================
   KVKK PAGE SIDEBAR
   ======================================== */
.sidebar-link {
    color: #64748b;
    font-weight: 500;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-left: 3px solid #e2e8f0;
    /* Visible inactive border for structure */
    padding: 0.75rem 1rem;
}

.sidebar-link:hover {
    color: #2563eb !important;
    /* Force primary blue on hover */
    background: #eff6ff;
    /* Very light blue */
    border-left-color: #93c5fd;
}

.sidebar-link.active {
    color: #1d4ed8;
    /* Darker blue */
    background: #eff6ff;
    border-left-color: #2563eb;
    /* Active Brand Color */
    font-weight: 600;
}

.scroll-offset {
    scroll-margin-top: 170px;
    /* Offset for fixed header */
}

.footer-desc {
    color: #64748b;
    line-height: 1.7;
    margin-top: 15px;
}

.footer-title {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

/* Social Links - Enhanced */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: #64748b;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.social-link.sl-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 10px 25px -5px rgba(214, 36, 159, 0.5);
}

.social-link.sl-facebook:hover {
    background: #1877F2;
    box-shadow: 0 10px 25px -5px rgba(24, 119, 242, 0.5);
}

.social-link.sl-linkedin:hover {
    background: #0077B5;
    box-shadow: 0 10px 25px -5px rgba(0, 119, 181, 0.5);
}

.social-link.sl-youtube:hover {
    background: #FF0000;
    box-shadow: 0 10px 25px -5px rgba(255, 0, 0, 0.5);
}

.social-link:active {
    transform: translateY(-2px) scale(1.05);
}

/* Footer Links - Enhanced */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    width: fit-content;
}

/* Arrow Icon */
.footer-links a::before {
    content: '\f105';
    /* FontAwesome chevron-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

/* Underline Animation */
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.footer-links a:hover::before {
    transform: translateX(3px);
}

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

/* Contact Info - Enhanced */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 16px;
    transition: transform 0.3s ease;
}

.footer-contact li:hover .contact-icon {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #3b82f6;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 48px;
}

.contact-info a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    width: fit-content;
}

.contact-info a:hover {
    color: #3b82f6;
}

.contact-info a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #3b82f6;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact-info a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-info span {
    color: #1e293b;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 25px;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a:hover {
    color: var(--primary-blue);
}

.footer-legal a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.footer-legal a:hover::before {
    width: 100%;
}

/* Back to Top Button - Clean & Simple */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow:
        0 4px 15px rgba(6, 182, 212, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 8px 25px rgba(6, 182, 212, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ========================================
   GLOW ON HOVER BUTTONS
   ======================================== */
.btn-space-1,
.btn-space-2 {
    width: 260px;
    height: 60px;
    border: none;
    outline: none;
    color: #fff !important;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 10;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn-space-1:before,
.btn-space-2:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(4px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0.4;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
}

.btn-space-1:before {
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
}

.btn-space-2:before {
    background: linear-gradient(45deg, #06b6d4, #00ff9d, #00f2ff, #006aff, #06b6d4, #00ff9d);
}

.btn-space-1:after,
.btn-space-2:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #050505;
    left: 0;
    top: 0;
    border-radius: 50px;
}

.btn-space-1:active,
.btn-space-2:active {
    color: #fff;
}

.btn-space-1:active:after,
.btn-space-2:active:after {
    background: transparent;
}

.btn-space-1:hover:before,
.btn-space-2:hover:before {
    opacity: 1;
    filter: blur(8px);
}

.btn-space-1:hover,
.btn-space-2:hover {
    transform: scale(1.05);
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* ========================================
   HERO SECTION FIXES
   ======================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title-large {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #ffffff 20%, #a5f3fc 50%, #c084fc 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: white;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.4));
    animation: titleFloat 6s ease-in-out infinite;
}

@keyframes titleFloat {

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

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

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

    .why-us-card {
        padding: 2rem;
    }

    .btn-space-1,
    .btn-space-2 {
        width: 100% !important;
        margin-bottom: 1rem;
    }

    .d-flex.gap-4 {
        flex-direction: column;
        gap: 1rem !important;
    }

    .mega-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        transform: none !important;
        margin-top: 0;
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0 1rem;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .mega-menu.show {
        display: block;
        transform: none !important;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        display: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0;
    }

    .dropdown-menu.show {
        display: block;
    }
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* ========================================
   SECTION UTILITIES
   ======================================== */
.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ========================================
   FEATURE CARDS (Service Grid)
   ======================================== */
.feature-card-service {
    background: white;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-card-service h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(96, 165, 250, 0.12);
    color: var(--soft-blue);
    transition: all 0.3s ease;
}

.feature-card-service:nth-child(2) .feature-icon-wrapper {
    background: rgba(167, 139, 250, 0.12);
    color: var(--soft-purple);
}

.feature-card-service:nth-child(3) .feature-icon-wrapper {
    background: rgba(34, 211, 238, 0.12);
    color: var(--soft-cyan);
}

.feature-card-service:nth-child(4) .feature-icon-wrapper {
    background: rgba(244, 114, 182, 0.12);
    color: var(--soft-pink);
}

.feature-card-service:nth-child(5) .feature-icon-wrapper {
    background: rgba(96, 165, 250, 0.12);
    color: var(--soft-blue);
}

.feature-card-service:nth-child(6) .feature-icon-wrapper {
    background: rgba(167, 139, 250, 0.12);
    color: var(--soft-purple);
}

.feature-card-service:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

/* ========================================
   PROCESS CIRCLE DESIGN
   ======================================== */
.process-section {
    background: linear-gradient(180deg, var(--light-bg) 0%, white 100%);
}

.process-circle-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    margin: 0 auto;
}

/* Central Circle */
.process-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 10;
    text-align: center;
}

.process-center .center-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.process-center span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* Orbit Ring */
.process-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 2px dashed rgba(96, 165, 250, 0.3);
    border-radius: 50%;
    animation: rotateOrbit 60s linear infinite;
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Process Items */
.process-item {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 280px;
}

.process-item.item-1 {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-item.item-2 {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.process-item.item-3 {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-item.item-4 {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    flex-direction: row-reverse;
    text-align: right;
}

/* Process Dot */
.process-dot {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}

.process-dot::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: pulseRing 2s ease-out infinite;
}

.item-1 .process-dot::before {
    border-color: var(--soft-blue);
}

.item-2 .process-dot::before {
    border-color: var(--soft-purple);
}

.item-3 .process-dot::before {
    border-color: var(--soft-cyan);
}

.item-4 .process-dot::before {
    border-color: var(--soft-pink);
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.dot-number {
    font-size: 0.9rem;
    font-weight: 800;
}

.item-1 .dot-number {
    color: var(--soft-blue);
}

.item-2 .dot-number {
    color: var(--soft-purple);
}

.item-3 .dot-number {
    color: var(--soft-cyan);
}

.item-4 .dot-number {
    color: var(--soft-pink);
}

/* Process Content */
.process-content {
    flex: 1;
}

.process-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.item-1 .process-icon {
    background: rgba(96, 165, 250, 0.12);
    color: var(--soft-blue);
    margin: 0 auto 12px;
}

.item-2 .process-icon {
    background: rgba(167, 139, 250, 0.12);
    color: var(--soft-purple);
}

.item-3 .process-icon {
    background: rgba(34, 211, 238, 0.12);
    color: var(--soft-cyan);
    margin: 0 auto 12px;
}

.item-4 .process-icon {
    background: rgba(244, 114, 182, 0.12);
    color: var(--soft-pink);
    margin-left: auto;
}

.process-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.process-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Circular Process */
@media (max-width: 991px) {
    .process-circle-wrapper {
        height: auto;
        padding: 40px 0;
    }

    .process-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 40px;
    }

    .process-orbit {
        display: none;
    }

    .process-item {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        flex-direction: row !important;
        text-align: left !important;
        max-width: 100%;
        background: white;
        padding: 20px;
        border-radius: 16px;
        margin-bottom: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .item-1 .process-icon,
    .item-3 .process-icon,
    .item-4 .process-icon {
        margin: 0 0 12px 0;
    }
}

/* ========================================
   MOCK 360° VIEWER (Lightweight CSS)
   ======================================== */
.mock-3d-viewer {
    position: relative;
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

/* 360° Badge */
.viewer-badge-360 {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: baseline;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    z-index: 10;
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3B82F6;
    line-height: 1;
}

.badge-degree {
    font-size: 1.2rem;
    font-weight: 700;
    color: #60a5fa;
    margin-left: 2px;
}

/* Rotating Ring Effect */
.rotating-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 3px solid transparent;
    border-top-color: #8B5CF6;
    border-right-color: #3B82F6;
    border-radius: 50%;
    animation: rotateRing 8s linear infinite;
}

.rotating-ring.ring-2 {
    width: 320px;
    height: 320px;
    border-top-color: #EC4899;
    border-right-color: #06B6D4;
    animation-duration: 12s;
    animation-direction: reverse;
    opacity: 0.5;
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Product Placeholder (CSS 3D Cube) */
.product-placeholder {
    position: relative;
    width: 120px;
    height: 120px;
    perspective: 600px;
}

.product-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 15s ease-in-out infinite;
}

.cube-face {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.15) 0%,
            rgba(59, 130, 246, 0.1) 50%,
            rgba(236, 72, 153, 0.15) 100%);
    backdrop-filter: blur(8px);
    box-shadow: inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.cube-face.front {
    transform: translateZ(60px);
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(60px);
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(60px);
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(60px);
}

.cube-face.top {
    transform: rotateX(90deg) translateZ(60px);
}

.cube-face.bottom {
    transform: rotateX(-90deg) translateZ(60px);
}

@keyframes rotateCube {

    0%,
    100% {
        transform: rotateY(0deg) rotateX(15deg);
    }

    25% {
        transform: rotateY(90deg) rotateX(-10deg);
    }

    50% {
        transform: rotateY(180deg) rotateX(15deg);
    }

    75% {
        transform: rotateY(270deg) rotateX(-10deg);
    }
}

/* Product Glow */
.product-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Floating Particles */
.floating-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border-radius: 50%;
    animation: floatParticle 6s ease-in-out infinite;
}

.floating-particle.p1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.floating-particle.p2 {
    top: 70%;
    left: 20%;
    animation-delay: 1.5s;
}

.floating-particle.p3 {
    top: 30%;
    right: 15%;
    animation-delay: 3s;
}

.floating-particle.p4 {
    bottom: 25%;
    right: 20%;
    animation-delay: 4.5s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* Interactive Hint */
.interactive-hint {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: hintPulse 3s ease-in-out infinite;
}

@keyframes hintPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(139, 92, 246, 0.2);
    }
}

/* Mock Controls */
.mock-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mock-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mock-btn:hover,
.mock-btn.active {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

/* Discovery Content Styles */
.discovery-content {
    padding-left: 2rem;
}

/* Discovery Badge */
.discovery-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.discovery-badge .badge-icon {
    width: 28px;
    height: 28px;
    background: var(--soft-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.discovery-badge span:last-child {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Discovery Title */
.discovery-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.discovery-title .text-highlight {
    color: var(--soft-blue);
}

/* Discovery Description */
.discovery-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-icon.blue {
    background: rgba(96, 165, 250, 0.15);
    color: var(--soft-blue);
}

.feature-icon.purple {
    background: rgba(167, 139, 250, 0.15);
    color: var(--soft-purple);
}

.feature-icon.cyan {
    background: rgba(34, 211, 238, 0.15);
    color: var(--soft-cyan);
}

.feature-icon.pink {
    background: rgba(244, 114, 182, 0.15);
    color: var(--soft-pink);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Discovery Button */
.btn-discovery {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--soft-blue);
    color: white;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-discovery::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-discovery:hover::before {
    left: 100%;
}

.btn-discovery:hover {
    background: #3B82F6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.btn-discovery i {
    transition: transform 0.3s ease;
}

.btn-discovery:hover i {
    transform: translateX(5px);
}

/* Responsive Mock Viewer */
@media (max-width: 991px) {
    .mock-3d-viewer {
        height: 380px;
    }

    .rotating-ring {
        width: 220px;
        height: 220px;
    }

    .rotating-ring.ring-2 {
        width: 260px;
        height: 260px;
    }

    .product-placeholder {
        width: 100px;
        height: 100px;
    }

    .cube-face {
        width: 100px;
        height: 100px;
    }

    .cube-face.front {
        transform: translateZ(50px);
    }

    .cube-face.back {
        transform: rotateY(180deg) translateZ(50px);
    }

    .cube-face.left {
        transform: rotateY(-90deg) translateZ(50px);
    }

    .cube-face.right {
        transform: rotateY(90deg) translateZ(50px);
    }

    .cube-face.top {
        transform: rotateX(90deg) translateZ(50px);
    }

    .cube-face.bottom {
        transform: rotateX(-90deg) translateZ(50px);
    }

    .discovery-content {
        padding-left: 0;
        padding-top: 2rem;
    }
}

@media (max-width: 576px) {
    .mock-3d-viewer {
        height: 320px;
    }

    .viewer-badge-360 {
        top: 15px;
        right: 15px;
        padding: 8px 14px;
    }

    .badge-number {
        font-size: 1.4rem;
    }

    .interactive-hint {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .mock-controls {
        padding: 8px 12px;
        gap: 6px;
    }

    .mock-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

/* Product Features List Enhancement */
.product-features-list li {
    font-size: 1.05rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    padding: 8px 0;
}

.product-features-list li:hover {
    transform: translateX(5px);
    color: var(--primary-purple);
}

.product-features-list li i {
    font-size: 1.1rem;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 80px 60px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: ctaShine 10s linear infinite;
}

@keyframes ctaShine {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.final-cta .btn-light {
    background: white;
    color: #667eea;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
}

.final-cta .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .final-cta {
        padding: 50px 30px;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }
}

/* ========================================
   CTA MODERN (About Page Style)
   ======================================== */
.cta-modern {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-modern .btn-gradient {
    background: linear-gradient(135deg, #14b8a6, #0ea5e9, #6366f1);
    background-size: 200% auto;
    color: white;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.cta-modern .btn-gradient:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
    color: white;
}

.cta-glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================================
   FAQ SECTION (Soft Design)
   ======================================== */
.faq-modern .accordion-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-modern .accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-modern .accordion-button {
    background: white;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 18px 24px;
    border: none;
    box-shadow: none !important;
}

.faq-modern .accordion-button:not(.collapsed) {
    background: rgba(96, 165, 250, 0.05);
    color: var(--soft-blue);
}

.faq-modern .accordion-button::after {
    background-size: 14px;
    width: 14px;
    height: 14px;
}

.faq-modern .accordion-button .faq-icon {
    color: var(--soft-blue);
    opacity: 0.7;
}

.faq-modern .accordion-body {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   FAQ CARDS (Simple Design)
   ======================================== */
.faq-section {
    background: var(--light-bg);
}

.faq-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-card:last-child {
    margin-bottom: 0;
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.faq-card .faq-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-blue);
    font-size: 1.1rem;
}

.faq-card .faq-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.faq-card .faq-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Accordion Style */
.faq-accordion {
    margin-bottom: 16px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question .faq-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-blue);
    font-size: 1rem;
}

.faq-question span {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question .faq-arrow {
    color: var(--text-light);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: rgba(96, 165, 250, 0.03);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px 74px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   TIMELINE PATH DESIGN
   ======================================== */
.timeline-path {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 65px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--soft-blue), var(--soft-purple), var(--soft-cyan), var(--soft-pink));
    border-radius: 3px;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 3px solid;
}

.step-marker.blue {
    border-color: var(--soft-blue);
}

.step-marker.purple {
    border-color: var(--soft-purple);
}

.step-marker.cyan {
    border-color: var(--soft-cyan);
}

.step-marker.pink {
    border-color: var(--soft-pink);
}

.step-marker span {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
}

.step-card {
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    max-width: 200px;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-card .step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.step-icon.blue {
    background: rgba(96, 165, 250, 0.12);
    color: var(--soft-blue);
}

.step-icon.purple {
    background: rgba(167, 139, 250, 0.12);
    color: var(--soft-purple);
}

.step-icon.cyan {
    background: rgba(34, 211, 238, 0.12);
    color: var(--soft-cyan);
}

.step-icon.pink {
    background: rgba(244, 114, 182, 0.12);
    color: var(--soft-pink);
}

.step-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Timeline */
@media (max-width: 991px) {
    .timeline-path {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-step {
        flex-direction: row;
        gap: 20px;
    }

    .step-marker {
        margin-bottom: 0;
    }

    .step-card {
        text-align: left;
        max-width: none;
        flex: 1;
    }

    .step-card .step-icon {
        margin: 0 0 10px 0;
    }
}

/* ========================================
   MOBILE MENU - Modern Design
   ======================================== */
@media (max-width: 991px) {

    /* Navbar Container */
    .navbar {
        padding: 12px 0;
    }

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

    /* Extra small devices (320px) */
    @media (max-width: 360px) {
        .navbar-brand .logo-img {
            height: 32px;
        }
    }

    /* Custom Hamburger Button */
    .navbar-toggler {
        border: none;
        padding: 8px;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: rgba(96, 165, 250, 0.1);
        position: relative;
        z-index: 1001;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        background: rgba(96, 165, 250, 0.15);
    }

    .navbar-toggler-icon {
        background-image: none;
        width: 22px;
        height: 2px;
        background: var(--soft-blue);
        position: relative;
        display: block;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--soft-blue);
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before {
        top: -7px;
    }

    .navbar-toggler-icon::after {
        bottom: -7px;
    }

    /* Animated X when open */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    /* Mobile Menu Panel */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-collapse:not(.show) {
        display: none;
    }

    .navbar-collapse.show {
        display: block;
    }

    .navbar-nav {
        gap: 5px;
    }

    /* Menu Items */
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-link {
        padding: 15px 0 !important;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: var(--soft-blue);
    }

    /* Dropdown in Mobile */
    .navbar-nav .dropdown-menu {
        position: static !important;
        border: none;
        box-shadow: none;
        background: rgba(96, 165, 250, 0.03);
        border-radius: 12px;
        margin: 0 0 10px 0;
        padding: 10px 15px;
    }

    .navbar-nav .dropdown-item {
        padding: 12px 15px;
        border-radius: 8px;
        font-weight: 500;
    }

    .navbar-nav .dropdown-item:hover {
        background: rgba(96, 165, 250, 0.1);
        color: var(--soft-blue);
    }

    /* Mega Menu Mobile */
    .mega-menu {
        position: static !important;
        width: 100% !important;
        border: none;
        box-shadow: none;
        background: rgba(96, 165, 250, 0.03);
        border-radius: 12px;
        padding: 15px;
    }

    .mega-menu .row {
        flex-direction: column;
    }

    .mega-menu-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mega-menu-list li a {
        padding: 8px 0;
        display: block;
    }

    /* CTA Button Mobile */
    .navbar-nav .btn-gradient {
        width: 100%;
        text-align: center;
        margin-top: 15px;
        padding: 15px 30px;
        font-size: 1rem;
        border-radius: 12px;
    }

    /* Hide topbar on mobile */
    .topbar {
        display: none;
    }
}

/* ========================================
   GLOBAL FAQ SECTION STYLES (Premium)
   ======================================== */
.faq-section-premium {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.faq-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #14b8a6, #0ea5e9, #6366f1);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq-accordion .faq-item {
    margin-bottom: 16px;
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: 16px !important;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.faq-accordion .accordion-button {
    padding: 24px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    background: white;
    border: none;
    box-shadow: none;
    gap: 16px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(99, 102, 241, 0.05));
    color: #0ea5e9;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230ea5e9'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 12px;
    color: #0ea5e9;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon {
    background: linear-gradient(135deg, #14b8a6, #0ea5e9, #6366f1);
    color: white;
    transform: scale(1.05);
}

.faq-accordion .accordion-body {
    padding: 0 28px 24px 88px;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq-accordion .accordion-button {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-accordion .accordion-body {
        padding: 0 20px 20px 20px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .faq-section-premium {
        padding: 60px 0;
    }
}

/* ========================================
   MOBILE MENU - OPTIMIZED
   ======================================== */

/* Custom Hamburger Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(99, 102, 241, 0.1));
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(99, 102, 241, 0.2));
    border-color: rgba(99, 102, 241, 0.4);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2.5px;
    background: linear-gradient(135deg, #14b8a6, #6366f1);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Hamburger Animation - Active State (X) */
.mobile-menu-toggle.active .line-1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .line-2 {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active .line-3 {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        padding: 80px 25px 30px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow-y: auto;
        z-index: 1000;
    }

    .navbar-collapse.show {
        right: 0;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Nav Items */
    .navbar-nav {
        flex-direction: column;
        align-items: stretch !important;
        gap: 5px;
    }

    .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 10px !important;
        font-size: 1rem;
        color: var(--text-dark) !important;
        -webkit-text-fill-color: var(--text-dark) !important;
        background: transparent !important;
        background-clip: unset !important;
        -webkit-background-clip: unset !important;
        border-radius: 10px;
        transition: all 0.3s ease;
        transform: none !important;
    }

    .nav-link:hover,
    .nav-link.active,
    .nav-link:focus {
        background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(99, 102, 241, 0.08)) !important;
        color: var(--text-dark) !important;
        -webkit-text-fill-color: var(--text-dark) !important;
        transform: translateX(5px) !important;
    }

    /* Override desktop hover effects */
    .nav-link::before,
    .nav-link::after {
        display: none !important;
        content: none !important;
    }

    /* Mobile Dropdown */
    .dropdown-menu,
    .mega-menu,
    .dropdown-menu.mega-menu {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 10px !important;
        background: rgba(0, 0, 0, 0.03) !important;
        padding: 15px !important;
        margin: 10px 0 0 0 !important;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-menu.show,
    .mega-menu.show,
    .dropdown-menu.mega-menu.show {
        display: block !important;
    }

    .mega-menu .container-fluid {
        padding: 0;
    }

    .mega-menu .row {
        flex-direction: column;
        gap: 0;
    }

    .mega-menu .col-lg-3,
    .mega-menu .col-md-6 {
        width: 100%;
        margin-bottom: 15px;
        padding: 0;
    }

    .mega-menu .col-lg-3:last-child {
        margin-bottom: 0;
    }

    .mega-menu-title {
        font-size: 0.9rem;
        padding: 10px 12px;
        margin-bottom: 8px;
        background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(99, 102, 241, 0.1));
        border-radius: 8px;
    }

    .mega-menu-list a {
        padding: 10px 15px 10px 20px;
        font-size: 0.9rem;
    }

    .mega-menu-list a:hover {
        padding-left: 25px;
    }

    /* Dropdown Toggle Arrow */
    .dropdown-toggle::after {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    /* CTA Button in Mobile Menu */
    .nav-item.ms-lg-3 {
        margin: 20px 0 0 0 !important;
        padding-top: 15px;
        border-top: 2px solid rgba(99, 102, 241, 0.1);
        border-bottom: none !important;
    }

    .nav-item.ms-lg-3 .btn-gradient {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 1rem;
    }

    /* Close Button in Mobile Menu */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.05);
        border: none;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--text-light);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-menu-close:hover {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
    }
}

/* Footer Brand Text Decoration */
.footer-brand-text {
    background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #0d9488;
    /* Fallback */
    font-weight: 800;
    letter-spacing: 0.3px;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(13, 148, 136, 0.1);
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: whatsapp-float-y 3s infinite ease-in-out;
}

@keyframes whatsapp-float-y {

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

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: #FFF;
    animation-play-state: paused;
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: rotate(15deg);
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: white;
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    white-space: nowrap;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse Animation */
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: 6rem 0;
    background: #f8fafc;
    /* Light BG to contrast with white cards */
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-purple);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.pricing-title span {
    background: var(--rainbow-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Pricing Cards - Large Premium Design */
.pricing-card {
    background: white;
    padding: 3rem 2rem;
    /* Large padding for premium feel */
    border-radius: 30px;
    /* Softer large radius */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    /* Clean shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-20px) scale(1.02);
    /* Strong lift */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Popular Card - Flagship */
.pricing-card.popular {
    background: white;
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.1);
    transform: scale(1.05);
    /* Naturally bigger */
    z-index: 5;
}

.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-20px);
    box-shadow: 0 50px 100px rgba(139, 92, 246, 0.2);
}

.pricing-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--rainbow-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
    z-index: 2;
}

.pricing-icon {
    font-size: 3rem;
    /* Large Icon */
    margin-bottom: 2rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.pricing-card.popular .pricing-icon {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    color: var(--primary-purple);
}

/* Tier Title */
.pricing-tier {
    font-size: 1.6rem;
    /* Large Title */
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

/* Price */
.pricing-price {
    font-size: 3rem;
    /* Huge Price */
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
    gap: 8px;
    letter-spacing: -2px;
}

.pricing-price span {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: normal;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 1rem;
    /* Readable large text */
    font-weight: 500;
}

.pricing-features li i {
    color: white;
    font-size: 0.8rem;
    background: #10b981;
    /* Green check */
    padding: 6px;
    border-radius: 50%;
    min-width: 24px;
    text-align: center;
}

/* Buttons - Large & Premium */
.btn-pricing,
.btn-pricing-outline {
    padding: 1rem 2rem;
    border-radius: 50px;
    /* Oval shape */
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    display: table;
    /* Fix for full width */
    width: 100%;
}

/* Primary Pricing Button (Brand Gradient) */
.btn-pricing {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    /* Blue to Purple Brand Gradient */
    color: white;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    border: none;
}

.btn-pricing:hover {
    background: linear-gradient(135deg, #1d4ed8, #6d28d9);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
    color: white;
}

/* Outline Pricing Button */
.btn-pricing-outline {
    background: transparent;
    border: 2px solid #2563eb;
    /* Brand Blue Border */
    color: #2563eb;
}

.btn-pricing-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

/* Focus Effect: Sibling Blur */
.pricing-section .row:hover .pricing-card {
    filter: blur(0.5px);
    opacity: 0.95;
    transform: scale(0.99);
    transition: all 0.5s ease;
}

.pricing-section .row .pricing-card:hover {
    filter: none;
    opacity: 1;
    transform: translateY(-20px) scale(1.02);
    z-index: 20;
}

.pricing-section .row .pricing-card.popular:hover {
    transform: scale(1.08) translateY(-20px);
    z-index: 25;
}

/* Disclaimer Footnote - Premium Design */
.pricing-disclaimer {
    max-width: 100%;
    margin: 4rem auto 0 auto;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    /* Soft shadow instead of border */
    border-left: 5px solid var(--primary-blue);
    /* Brand color accent */
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-disclaimer:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

/* Subtle background pattern/gradient */
.pricing-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(139, 92, 246, 0.03));
    z-index: 0;
}

.disclaimer-icon {
    font-size: 2rem;
    background: var(--rainbow-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
    margin-top: 5px;
    z-index: 1;
}

.disclaimer-content {
    color: var(--text-light);
    /* Standard text color */
    font-size: 0.95rem;
    line-height: 1.7;
    z-index: 1;
}

.disclaimer-content strong {
    font-weight: 700;
    color: var(--text-dark);
    /* Darker heading */
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.5rem;
}

.disclaimer-content p strong {
    display: inline;
    /* Keep inline bolds inline */
    color: var(--primary-blue);
    /* Highlight key points in blue */
    font-size: inherit;
}

.disclaimer-content .text-danger {
    color: #ef4444;
    /* Red asterisk */
    font-weight: bold;
}

.disclaimer-content a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.2s ease;
}

.disclaimer-content a:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .pricing-disclaimer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        align-items: center;
        padding: 1.5rem;
    }

    .pricing-disclaimer::before {
        display: none;
    }
}