﻿/* ===========================================
   PROGRESS BAR NAVBAR - CSS
   Reusable horizontal progress bar for any webpage
   =========================================== */

/* Main progress bar container - fixed at top */
.pbn-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
    pointer-events: none;
    display: none; /* Hidden by default */
}

/* Progress bar fill */
.pbn-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(
        90deg,
        #8b5cf6 0%,
        #a78bfa 50%,
        #8b5cf6 100%
    );
    transition: width 0.1s ease-out;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}

/* Theme variations */
.pbn-container.theme-dark .pbn-bar {
    background: linear-gradient(
        90deg,
        #8b5cf6 0%,
        #a78bfa 50%,
        #8b5cf6 100%
    );
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}

.pbn-container.theme-light .pbn-bar {
    background: linear-gradient(
        90deg,
        #8b5cf6 0%,
        #a78bfa 50%,
        #8b5cf6 100%
    );
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}

/* Color variations */
.pbn-container.color-blue .pbn-bar {
    background: linear-gradient(
        90deg,
        #3b82f6 0%,
        #60a5fa 50%,
        #3b82f6 100%
    );
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.pbn-container.color-green .pbn-bar {
    background: linear-gradient(
        90deg,
        #22c55e 0%,
        #4ade80 50%,
        #22c55e 100%
    );
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.pbn-container.color-red .pbn-bar {
    background: linear-gradient(
        90deg,
        #ef4444 0%,
        #f87171 50%,
        #ef4444 100%
    );
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

.pbn-container.color-orange .pbn-bar {
    background: linear-gradient(
        90deg,
        #f97316 0%,
        #fb923c 50%,
        #f97316 100%
    );
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
}

.pbn-container.color-cyan .pbn-bar {
    background: linear-gradient(
        90deg,
        #06b6d4 0%,
        #22d3ee 50%,
        #06b6d4 100%
    );
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.6);
}

/* Animation effects */
.pbn-bar.animating {
    animation: pbn-pulse 0.3s ease-out;
}

@keyframes pbn-pulse {
    0% {
        box-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
    }
    50% {
        box-shadow: 0 0 16px rgba(139, 92, 246, 0.8);
    }
    100% {
        box-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
    }
}

/* Show only on desktop screens (1025px and above) */
@media (min-width: 1025px) {
    .pbn-container {
        display: block;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pbn-container {
        height: 3px;
    }
}

@media (max-width: 480px) {
    .pbn-container {
        height: 2px;
    }
}


/* ===========================================
   NAVBAR COMPONENT - STANDALONE CSS
   Extracted from styles.css exactly as is
   =========================================== */

/* ===========================================
   CSS RESET & GLOBAL STYLES
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* ===========================================
   CSS VARIABLES
   =========================================== */
:root {
    --primary-color: #6a0dad; /* Purple - main SINSAJO color */
    --secondary-color: #9370DB; /* Medium Purple - secondary color */
    --text-color: #1f2937;
    --light-text: #6b7280;
    --dark-bg: #111827;
    --light-bg: #f8fafc;
    --radius: 8px;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

/* ===========================================
   DESKTOP/MOBILE VISIBILITY HELPERS
   =========================================== */
.desktop-only { display: block; }
.phone-only { display: none; }

:not(.is-phone) .phone-only { display: none !important; }
.is-phone .phone-only { display: block !important; }
.is-phone .desktop-only { display: none !important; }

/* Global: in phones hide any default header unless explicitly marked phone-only */
.is-phone header:not(.phone-only):not(.mobile-navbar) { display: none !important; }
.is-phone header.phone-only { display: block !important; }

/* ===========================================
   CONTAINER
   =========================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar container override - matches original */
.navbar .container {
    padding: 0 2rem !important;
}

/* ===========================================
   NAVBAR BASE STYLES
   =========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 83.68px !important;
    min-height: 83.68px !important;
    padding: 0 !important;
    background-color: #111827;
    overflow-wrap: normal;
    word-wrap: normal;
}

/* Navbar container with flex layout */
.navbar .container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 1008px !important;
    max-width: 1008px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    height: 83.68px !important;
    gap: 2rem !important;
    overflow-wrap: normal;
    word-wrap: normal;
}

/* ===========================================
   LOGO SECTION
   =========================================== */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 42px;
    filter: none;
    transform-origin: center center;
}

/* ===========================================
   NAVIGATION LINKS
   =========================================== */
.nav-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    max-width: none !important;
    margin: 0 !important;
}

.nav-links ul,
.navbar .nav-links ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-wrap: normal;
    word-wrap: normal;
}

.nav-links a,
.navbar .nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    position: relative;
    transition: all 0.2s ease;
    border-radius: 6px;
    background: transparent;
    border: 1px solid transparent;
    letter-spacing: -0.01em;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    white-space: nowrap;
    word-break: keep-all;
}

.nav-links a:hover,
.navbar .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.nav-links a.active,
.navbar .nav-links a.active {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
    color: white;
}

/* ===========================================
   HEADER RIGHT SECTION - CONTROLS
   =========================================== */
.header-right {
    display: flex !important;
    align-items: center !important;
    gap: 1.25rem !important;
    flex-shrink: 0 !important;
    justify-content: center !important;
    min-width: auto !important;
}

/* ===========================================
   HAMBURGER MENU - MOBILE NAVIGATION
   =========================================== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===========================================
   COMPANY DROPDOWN
   =========================================== */
.company-dropdown {
    position: relative;
}

.company-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    position: relative;
    transition: all 0.2s ease;
    border-radius: 6px;
    background: transparent;
    border: 1px solid transparent;
    letter-spacing: -0.01em;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
}

.company-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
    color: #FFFFFF;
}

.dropdown-arrow::after {
    content: "▼";
    font-size: 0.6rem;
}

.company-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.company-dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: -120px;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    width: 420px;
    min-height: 200px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
}

.company-dropdown:hover .company-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.company-dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.company-dropdown-menu a {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem 0;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    gap: 0.5rem;
}

.company-dropdown-menu a:last-child {
    border-bottom: none;
}

.company-dropdown-menu a .menu-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.company-dropdown-menu a .menu-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.4;
    max-width: 320px;
}

.company-dropdown-menu a:hover {
    color: white;
    padding-left: 1rem;
    background: rgba(74, 222, 128, 0.05);
    border-radius: 12px;
    margin: 0 -1rem;
    padding-right: 1rem;
}

.company-dropdown-menu a:hover .menu-title {
    color: var(--secondary-color);
}

.company-dropdown-menu a:hover .menu-subtitle {
    color: #FFFFFF;
}

.company-dropdown-menu a::before {
    display: none;
}

.company-toggle::after {
    display: none;
}

.company-dropdown.hover .company-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

.company-dropdown.hover .dropdown-arrow {
    transform: rotate(180deg) !important;
}

/* ===========================================
   PLATFORM DROPDOWN
   =========================================== */
.platform-dropdown {
    position: relative;
}

.platform-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.7rem 1.2rem !important;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: transparent;
    font-weight: 500 !important;
    font-size: 1.05rem !important;
    letter-spacing: -0.01em;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
}

.platform-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.platform-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.platform-dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: -300px;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1.5rem;
    width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 1rem;
}

.platform-dropdown:hover .platform-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.platform-dropdown-menu .menu-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.platform-dropdown-menu .menu-item:hover {
    color: white;
    background: rgba(74, 222, 128, 0.05);
    border-color: rgba(74, 222, 128, 0.2);
    transform: translateY(-2px);
}

.menu-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.platform-dropdown-menu .menu-item .menu-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.01em;
}

.platform-dropdown-menu .menu-item .menu-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.4;
}

.platform-dropdown-menu .menu-item:hover .menu-title {
    color: var(--secondary-color);
}

.platform-dropdown-menu .menu-item:hover .menu-subtitle {
    color: #FFFFFF;
}

.platform-dropdown-menu .menu-item:hover .menu-icon {
    transform: scale(1.1);
}

.platform-dropdown.hover .platform-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

/* Menu Icon Styles */
.ai-agent-icon::before,
.ai-voice-icon::before,
.ai-analytics-icon::before,
.ai-guru-icon::before,
.ai-quality-icon::before,
.ai-knowledge-icon::before,
.ai-asr-icon::before,
.omni-icon::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(19%) sepia(51%) saturate(4532%) hue-rotate(266deg) brightness(84%) contrast(118%);
}

.ai-agent-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E"); }
.ai-voice-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E"); }
.ai-analytics-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z'/%3E%3C/svg%3E"); }
.ai-guru-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E"); }
.ai-quality-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E"); }
.ai-knowledge-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E"); }
.ai-asr-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 15c1.66 0 3-1.34 3-3V6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V6zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-2.08c3.39-.49 6-3.39 6-6.92h-2z'/%3E%3C/svg%3E"); }
.omni-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E"); }

/* ===========================================
   LANGUAGE TOGGLE SWITCH
   =========================================== */
.language-selector {
    position: relative;
}

.language-toggle-switch {
    position: relative;
    cursor: pointer;
}

.toggle-track {
    position: relative;
    width: 120px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.1),
        inset -4px -4px 8px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.toggle-slider {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border-radius: 50%;
    left: 4px;
    top: 4px;
    transition: all 0.3s ease;
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.2),
        -2px -2px 4px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-sizing: border-box;
}

.flag-icon {
    width: 28px;
    height: 28px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.us-flag {
    background-image: url("../../Assets/Image/Flags/Bandera_de_Estados Unidos.png");
}

.es-flag {
    background-image: url("../../Assets/Image/Flags/Bandera_de_España.png");
}

.lang-text {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.en-text {
    color: #333;
}

.es-text {
    color: #999;
}

/* Active state - English selected */
.language-toggle-switch.active-en .toggle-slider {
    left: 4px;
}

.language-toggle-switch.active-en .en-text {
    color: #333;
}

.language-toggle-switch.active-en .es-text {
    color: #999;
}

.language-toggle-switch.active-en .flag-icon {
    background-image: url("../../Assets/Image/Flags/Bandera_de_Estados Unidos.png");
}

/* Active state - Spanish selected */
.language-toggle-switch.active-es .toggle-slider {
    left: 84px;
}

.language-toggle-switch.active-es .en-text {
    color: #999;
}

.language-toggle-switch.active-es .es-text {
    color: #333;
}

.language-toggle-switch.active-es .flag-icon {
    background-image: url("../../Assets/Image/Flags/Bandera_de_España.png");
}

.language-toggle-switch:hover .toggle-track {
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.8);
}

.language-toggle-switch:hover .toggle-slider {
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.language-selector.hover .language-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

.language-selector.hover .language-toggle {
    min-width: 140px !important;
    padding: 0.5rem 1rem !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.language-selector.hover .language-toggle .current-lang {
    opacity: 1 !important;
    width: auto !important;
}

/* ===========================================
   THEME TOGGLE SWITCH
   =========================================== */
.theme-selector {
    position: relative;
}

.theme-toggle-switch {
    position: relative;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
}

.theme-toggle-switch .toggle-track {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #f0f0f0;
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.1),
        inset -4px -4px 8px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    overflow: hidden;
    pointer-events: auto;
    cursor: pointer;
}

.theme-toggle-switch.expanded .toggle-track {
    width: 120px;
    justify-content: space-between;
    padding: 0 8px;
}

.theme-toggle-switch .toggle-slider {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    left: 4px;
    top: 4px;
    background: #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-sizing: border-box;
}

.theme-toggle-switch:not(.expanded) .toggle-slider {
    left: 4px;
    top: 4px;
    right: auto;
    margin: 0;
}

.theme-toggle-switch:not(.expanded).active-night .toggle-slider {
    left: 4px;
    top: 4px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 
        0 2px 8px rgba(30, 64, 175, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.theme-toggle-switch:not(.expanded).active-day .toggle-slider {
    left: 4px;
    top: 4px;
    background: linear-gradient(135deg, #fde047, #facc15);
    box-shadow: 
        0 2px 8px rgba(251, 191, 36, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.theme-toggle-switch:not(.expanded).active-day .toggle-track {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 
        0 4px 15px rgba(251, 191, 36, 0.3),
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.2);
}

.theme-toggle-switch:not(.expanded).active-night .toggle-track {
    background: #1e40af;
    box-shadow: 
        0 4px 15px rgba(30, 64, 175, 0.3),
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.1);
}

.theme-toggle-switch .theme-icon {
    font-size: 16px;
    line-height: 1;
}

/* Animation for rotating sun and moon icons */
@keyframes rotate-center {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.theme-toggle-switch .theme-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: filter 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
    animation: rotate-center 3s linear infinite;
    transform-origin: center center;
}

.theme-toggle-switch:hover .theme-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.theme-toggle-switch:hover .theme-icon-img {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9));
    animation: rotate-center 2s linear infinite;
}

.theme-toggle-switch .theme-text {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.theme-toggle-switch.expanded .theme-text {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Active state - Day mode selected */
.theme-toggle-switch.active-day .toggle-track {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 
        0 4px 15px rgba(251, 191, 36, 0.3),
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.2);
}

/* Day mode slider always at left (4px) */
.theme-toggle-switch.active-day .toggle-slider {
    left: 4px;
    background: linear-gradient(135deg, #fde047, #facc15);
    box-shadow: 
        0 2px 8px rgba(251, 191, 36, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.theme-toggle-switch.active-day .day-text {
    opacity: 0;
    visibility: hidden;
}

.theme-toggle-switch.active-day .night-text {
    color: #FFFFFF;
}

/* Active state - Night mode selected */
.theme-toggle-switch.active-night .toggle-track {
    background: #1e40af;
    box-shadow: 
        0 4px 15px rgba(30, 64, 175, 0.3),
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.1);
}

/* When expanded, slider moves to right for night mode */
.theme-toggle-switch.expanded.active-night .toggle-slider {
    left: 84px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 
        0 2px 8px rgba(30, 64, 175, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

/* When not expanded, slider stays at left but track shows night color */
.theme-toggle-switch:not(.expanded).active-night .toggle-slider {
    left: 4px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 
        0 2px 8px rgba(30, 64, 175, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.theme-toggle-switch.active-night .day-text {
    color: #FFFFFF;
}

.theme-toggle-switch.active-night .night-text {
    opacity: 0;
    visibility: hidden;
}

.theme-toggle-switch:hover .toggle-track {
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.8);
}

.theme-toggle-switch:hover .toggle-slider {
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.theme-toggle-switch.active-day:hover .toggle-track {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 
        0 6px 20px rgba(251, 191, 36, 0.5),
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.2);
}

.theme-toggle-switch.active-day:hover .toggle-slider {
    background: linear-gradient(135deg, #facc15, #eab308);
    box-shadow: 
        0 4px 12px rgba(251, 191, 36, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.theme-toggle-switch.active-night:hover .toggle-track {
    background: #1d4ed8;
    box-shadow: 
        0 6px 20px rgba(30, 64, 175, 0.5),
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.1);
}

.theme-toggle-switch.active-night:hover .toggle-slider {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 
        0 4px 12px rgba(30, 64, 175, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

/* ===========================================
   SEARCH ICON LINK
   =========================================== */
.search-icon-link {
    color: #FFFFFF;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.search-icon-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--secondary-color);
}

/* ===========================================
   CTA BUTTON
   =========================================== */
.cta-button {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    width: 121.24px !important;
    height: 46.71px !important;
    padding: 0 !important;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.95rem !important;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    transition: all 0.2s ease;
    white-space: nowrap;
    word-break: keep-all;
    line-height: 1.5;
    box-sizing: border-box;
}

.cta-button:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    width: 121.24px !important;
    height: 46.71px !important;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* ===========================================
   MOBILE STYLES
   =========================================== */
.is-phone header.phone-only .nav-links {
    position: fixed;
    top: 0;
    left: -100% !important;
    right: auto !important;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
}

.is-phone header.phone-only .nav-links ul { 
    display: flex !important; 
    flex-direction: column; 
    gap: 4px; 
}

.is-phone header.phone-only .nav-links a { 
    color: #fff; 
    font-weight: 600; 
    font-size: 16px; 
}

.is-phone header.phone-only .nav-links.active { 
    left: 0 !important; 
    pointer-events: auto; 
}

.is-phone body.menu-open { 
    overflow: hidden !important; 
}

.is-phone header.phone-only .nav-links ul { 
    margin: 0 !important; 
    padding: 0 !important; 
    display: flex !important; 
    flex-direction: column; 
    align-items: stretch !important; 
    justify-content: flex-start !important; 
    gap: 4px !important; 
    width: 100% !important; 
}

.is-phone header.phone-only .nav-links ul li { 
    list-style: none; 
}

.is-phone header.phone-only .nav-links ul > li > a,
.is-phone header.phone-only .nav-links ul > li > .platform-toggle,
.is-phone header.phone-only .nav-links ul > li > .company-toggle {
    display: block;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.is-phone header.phone-only .platform-dropdown-menu,
.is-phone header.phone-only .company-dropdown-menu { 
    position: relative; 
    inset: 0; 
    transform: none; 
    opacity: 0; 
    visibility: hidden; 
}

.is-phone header.phone-only .platform-dropdown.hover .platform-dropdown-menu,
.is-phone header.phone-only .company-dropdown.hover .company-dropdown-menu { 
    display: flex !important; 
    opacity: 1 !important;
    visibility: visible !important;
}

.is-phone .hamburger { 
    display: flex !important; 
    cursor: pointer; 
    z-index: 1100; 
}

.is-phone .hamburger span { 
    display: block; 
    width: 24px; 
    height: 3px; 
    background: #fff; 
    margin: 5px 0; 
    transition: all .3s ease; 
}

.is-phone .hamburger.active span:nth-child(1) { 
    transform: translateY(7px) rotate(45deg); 
}

.is-phone .hamburger.active span:nth-child(2) { 
    opacity: 0; 
}

.is-phone .hamburger.active span:nth-child(3) { 
    transform: translateY(-7px) rotate(-45deg); 
}

.hamburger.active span:nth-child(1) { 
    transform: translateY(7px) rotate(45deg) !important; 
}

.hamburger.active span:nth-child(2) { 
    opacity: 0 !important; 
}

.hamburger.active span:nth-child(3) { 
    transform: translateY(-7px) rotate(-45deg) !important; 
}

.is-phone .language-toggle-switch .toggle-track {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    justify-content: center !important;
}

.is-phone .language-toggle-switch .lang-text {
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
}

.is-phone .language-toggle-switch .toggle-slider {
    left: 4px !important;
    top: 4px !important;
}

.is-phone .language-toggle-switch.active-en .toggle-slider,
.is-phone .language-toggle-switch.active-es .toggle-slider {
    left: 4px !important;
}

.is-phone .language-selector.hover .language-toggle-switch .toggle-track {
    width: 120px !important;
    padding: 0 8px !important;
    justify-content: space-between !important;
}

.is-phone .language-selector.hover .language-toggle-switch .lang-text {
    opacity: 1 !important;
    visibility: visible !important;
    width: auto !important;
}

.is-phone .theme-toggle-switch .toggle-track {
    width: 40px !important;
    padding: 0 !important;
    justify-content: center !important;
}

.is-phone .theme-toggle-switch.expanded .toggle-track {
    width: 40px !important;
    padding: 0 !important;
    justify-content: center !important;
}

.is-phone .theme-toggle-switch .theme-text,
.is-phone .theme-toggle-switch.expanded .theme-text {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: scale(0.8) !important;
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .navbar .container {
        padding: 0 1rem !important;
    }
    
    .navbar {
        padding: 1.2rem 0;
        min-height: 75px;
    }
    
    .logo-img {
        height: 38px;
        flex-shrink: 0;
    }
    
    .header-right {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-shrink: 0;
    }
    
    .cta-button {
        padding: 0.7rem 1.1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
}



/* ===========================================
   HERO SERVICES COMPONENT - STANDALONE CSS
   Extracted from services-styles.css exactly as is
   =========================================== */

/* ===========================================
   CSS RESET & GLOBAL STYLES
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* ===========================================
   CSS VARIABLES
   =========================================== */
:root {
    --primary-color: #6a0dad; /* Purple - main SINSAJO color */
    --secondary-color: #9370DB; /* Medium Purple - secondary color */
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background-color: #ffffff;
    --light-bg: #f9fafb;
    --dark-bg: #111827;
    --accent-color: #8a2be2; /* Blue Violet - accent color */
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

/* Dark theme variables */
body.dark-theme {
    --secondary-color: #8b5cf6;
}

/* Light theme variables */
body:not(.dark-theme) {
    --secondary-color: #9370DB;
}

/* ===========================================
   CONTAINER
   =========================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================================
   HERO SECTION - SERVICES LANDING
   =========================================== */

/* Main hero section container */
.services-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(0, 0, 0, 0.7) 100%), 
                url("../../Assets/Image/Background/Services_Background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 8rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Remove top padding when hero class is present */
body:has(.hero) .services-hero {
    padding-top: 0 !important;
}

/* Center hero content vertically and horizontally when hero class is present */
body:has(.hero) .services-hero {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
}

/* Ensure container within hero is also centered */
body:has(.hero) .services-hero .container {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
}

/* Center the hero content within the container */
body:has(.hero) .services-hero .hero-content {
    text-align: center !important;
    width: 100% !important;
}

/* ===========================================
   HERO SECTION OVERLAY EFFECTS
   =========================================== */

/* Radial gradient overlay for depth */
.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(147, 112, 219, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* ===========================================
   THEME-SPECIFIC BACKGROUND ADJUSTMENTS
   =========================================== */

/* Dark theme background adjustment */
body.dark-theme .services-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%), 
                url("../../Assets/Image/Background/Services_Background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Light theme background adjustment */
body:not(.dark-theme) .services-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(0, 0, 0, 0.7) 100%), 
                url("../../Assets/Image/Background/Services_Background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ===========================================
   HERO CONTAINER LAYOUT
   =========================================== */

/* Hero container positioning */
.services-hero .container {
    position: relative;
    z-index: 2;
}

/* ===========================================
   HERO CONTENT LAYOUT
   =========================================== */

/* Hero content container */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================================
   HERO TYPOGRAPHY
   =========================================== */

/* Main hero title */
.services-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    /* Show by default, JavaScript will handle visibility if needed */
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Ensure non-gradient text in title is white */
.services-title span:not(.gradient-text) {
    color: #ffffff;
}

/* Show title when loaded */
.services-title.loaded {
    visibility: visible;
    opacity: 1;
}

/* Hero subtitle */
.services-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.5;
}

/* ===========================================
   GRADIENT TEXT EFFECTS
   =========================================== */

/* Gradient text styling for emphasis - Same as hero original */
.gradient-text {
    background: linear-gradient(45deg, #8B5CF6, #7C3AED, #A855F7, #8B5CF6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===========================================
   PARTICLES CONTAINER
   =========================================== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* ===========================================
   PRIMARY BUTTON
   =========================================== */
.primary-button {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    padding: 1rem 2rem;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-button:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */
@media screen and (max-width: 992px) {
    .services-title {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .services-hero {
        padding: 4rem 0 3rem 0;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1.2rem;
    }
    
    .primary-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}



/* ===========================================
   OFFERS SECTION COMPONENT - STANDALONE CSS
   Extracted from services-styles.css exactly as is
   =========================================== */

/* ===========================================
   CSS RESET & GLOBAL STYLES
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* ===========================================
   CSS VARIABLES
   =========================================== */
:root {
    --primary-color: #6a0dad;
    --secondary-color: #9370DB;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background-color: #ffffff;
    --light-bg: #f9fafb;
    --dark-bg: #111827;
    --accent-color: #8a2be2;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

/* ===========================================
   CONTAINER
   =========================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================================
   SERVICES OFFERED SECTION - MAIN SERVICES
   =========================================== */

/* Main services offered section container */
.services-offered {
    padding: 6rem 0;
    background: #f9fafb;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Dark theme background for services-offered section */
body.dark-theme .services-offered {
    background: #111827;
}

/* ===========================================
   SERVICES GRID LAYOUT - IMAGE BASED DESIGN
   =========================================== */

/* Services grid container */
.services-grid-image {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* ===========================================
   SERVICE CARD STYLES - IMAGE BASED
   =========================================== */

/* Individual service card container */
.service-card-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

/* Reverse layout for alternating cards */
.service-card-image.reverse {
    direction: ltr;
}

/* Service image container */
.service-image-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover gradient overlay for service images (only if not progress-ring) */
.service-image-container:not(.progress-ring)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card-image:hover .service-image-container:not(.progress-ring)::before {
    opacity: 1;
}

/* Hover gradient for progress-ring images - uses inner pseudo-element */
.service-image-container.progress-ring .service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card-image:hover .service-image-container.progress-ring .service-image::before {
    opacity: 1;
}

.service-card-image:hover .service-image-container {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.25);
}

/* Progress ring border effect for service image containers */
.service-image-container.progress-ring {
    --track: #1a1a1a;
    --s: 0deg;
    --trail: 80deg;
    --arc: 22deg;
    --ring-width: 1.5px;
    position: relative;
}

/* Light theme: white border for service image containers */
body.light-theme .service-image-container.progress-ring {
    --track: #ffffff;
}

/* Different accent colors for each service image - matching image colors */
.services-grid-image .service-card-image:nth-child(1) .service-image-container.progress-ring { --accent: #FF6B6B; } /* Communication - Red/Orange */
.services-grid-image .service-card-image:nth-child(2) .service-image-container.progress-ring { --accent: #00D9FF; } /* Branding - Cyan */
.services-grid-image .service-card-image:nth-child(3) .service-image-container.progress-ring { --accent: #FF1E7C; } /* Social Media - Magenta/Pink */
.services-grid-image .service-card-image:nth-child(4) .service-image-container.progress-ring { --accent: #FFA500; } /* Editorial - Orange */
.services-grid-image .service-card-image:nth-child(5) .service-image-container.progress-ring { --accent: #00E5CC; } /* AI Agent - Teal/Green */
.services-grid-image .service-card-image:nth-child(6) .service-image-container.progress-ring { --accent: #8B5CF6; } /* Web Design - Purple */

/* Progress ring pseudo-elements */
.service-image-container.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background: none !important;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
}

.service-image-container.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    animation: pr-scan 2.8s linear infinite;
}

/* Service image */
.service-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-image:hover .service-image {
    transform: scale(1.05);
}

/* Service text container */
.service-text-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
}

/* Accent line above title */
.service-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-card-image:hover .service-accent-line {
    width: 80px;
}

/* Service card title */
.service-text-container h3 {
    color: #1f2937;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

/* Dark theme service text container h3 text color */
body.dark-theme .service-text-container h3 {
    color: #FFFFFF;
}

.service-card-image:hover .service-text-container h3 {
    color: #8b5cf6;
}

/* Service card description */
.service-text-container p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 17px;
    margin: 0;
}

/* Service button */
.service-btn {
    background: #8b5cf6;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.service-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    gap: 0.75rem;
}

/* ===========================================
   SECTION TITLE
   =========================================== */
.section-title {
    color: #111827;
    font-family: "Proxima Nova Semibold", sans-serif;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

/* Dark theme section title text color (duplicate definition) */
body.dark-theme .section-title {
    color: #FFFFFF;
}

/* Dark theme section title text color */
body.dark-theme .section-title {
    color: #FFFFFF;
}

/* ===========================================
   PARTICLES CONTAINER
   =========================================== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* ===========================================
   PROGRESS RING ANIMATION
   =========================================== */
@keyframes pr-scan {
    to { --s: 360deg; }
}

/* Fallback for browsers that don't animate custom properties */
@keyframes pr-rotate {
    to { transform: rotate(1turn); }
}

@supports not (background: conic-gradient(from var(--s), red 0 10deg, transparent 10deg)) {
    .service-image-container.progress-ring::after {
        animation: pr-rotate 2.8s linear infinite;
        will-change: transform;
    }
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */
@media screen and (max-width: 992px) {
    .services-grid-image {
        gap: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .services-offered {
        padding: 4rem 0;
    }
    
    .services-grid-image {
        gap: 4rem;
        margin-top: 3rem;
    }
    
    .service-card-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-image.reverse {
        direction: ltr;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .service-text-container h3 {
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .service-text-container h3 {
        font-size: 24px;
    }
    
    .service-text-container p {
        font-size: 15px;
    }
    
    .service-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}



/* ===========================================
   METHODOLOGY SECTION COMPONENT - STANDALONE CSS
   Extracted from services-styles.css exactly as is
   =========================================== */

/* ===========================================
   CSS RESET & GLOBAL STYLES
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* ===========================================
   CSS VARIABLES
   =========================================== */
:root {
    --primary-color: #6a0dad;
    --secondary-color: #9370DB;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background-color: #ffffff;
    --light-bg: #f8fafc;
    --dark-bg: #111827;
    --accent-color: #8a2be2;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

/* ===========================================
   CONTAINER
   =========================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================================
   METHODOLOGY SECTION - PROCESS OVERVIEW
   =========================================== */

/* Main methodology section container */
.methodology-section {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Dark theme background for methodology-section */
body.dark-theme .methodology-section {
    background: #111827;
}

/* ===========================================
   METHODOLOGY SECTION BACKGROUND PATTERN
   =========================================== */

/* Grid pattern overlay for visual interest */
.methodology-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* ===========================================
   METHODOLOGY TYPOGRAPHY
   =========================================== */

/* Methodology section title */
.methodology-title {
    color: #1f2937;
    font-family: "Proxima Nova Semibold", sans-serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Dark theme methodology title text color */
body.dark-theme .methodology-title {
    color: #FFFFFF;
}

/* Methodology title highlight */
.methodology-title .highlight {
    color: #8b5cf6;
    font-weight: 800;
}

/* Methodology section description */
.methodology-description {
    color: #6b7280;
    font-size: 19.2px;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 2;
}

/* Methodology description highlight text */
.methodology-description .highlight-text {
    color: #60a5fa;
    font-weight: 600;
}

/* ===========================================
   GRADIENT TEXT EFFECTS
   =========================================== */

/* Gradient text styling for emphasis - Same as hero original */
.methodology-title .gradient-text {
    background: linear-gradient(45deg, #8B5CF6, #7C3AED, #A855F7, #8B5CF6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===========================================
   METHODOLOGY PHASES GRID
   =========================================== */

/* Methodology phases grid container */
.methodology-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

/* ===========================================
   PHASE CARD STYLES
   =========================================== */

/* Individual phase card container */
.phase-card {
    background: #ffffff;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Dark theme phase card background */
body.dark-theme .phase-card {
    background: #1a1a1a;
}

/* Phase card hover effect */
.phase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

/* ===========================================
   PHASE CARD ELEMENTS
   =========================================== */

/* Phase number indicator */
.phase-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #8b5cf6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    z-index: 2;
}

.phase-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.phase-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phase-card.phase-01 .phase-icon {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.phase-card.phase-01 .phase-icon svg {
    color: #3b82f6;
}

.phase-card.phase-02 .phase-icon {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
}

body.dark-theme .phase-card.phase-02 .phase-icon {
    background: rgba(139, 92, 246, 0.1) !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
}

.phase-card.phase-02 .phase-icon svg {
    color: #f59e0b;
}

body.dark-theme .phase-card.phase-02 .phase-icon svg {
    color: #8b5cf6 !important;
}

.phase-card.phase-03 .phase-icon {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
}

.phase-card.phase-03 .phase-icon svg {
    color: #8b5cf6;
}

.phase-card h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 4rem 0 1rem 0;
    line-height: 1.3;
}

/* Dark theme phase card h3 text color */
body.dark-theme .phase-card h3 {
    color: #8b5cf6;
}

.phase-card p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.phase-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-features li {
    color: #6b7280;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.phase-features li::before {
    content: "•";
    color: #8b5cf6;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* ===========================================
   SPEED GUARANTEE
   =========================================== */
.speed-guarantee {
    background: #ffffff;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Dark theme speed guarantee card background */
body.dark-theme .speed-guarantee {
    background: #1a1a1a;
}

.guarantee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 1rem;
}

body.dark-theme .guarantee-icon {
    background: rgba(139, 92, 246, 0.1) !important;
    border: 2px solid rgba(139, 92, 246, 0.3) !important;
}

.guarantee-icon svg {
    color: #8b5cf6;
    width: 20px;
    height: 20px;
    display: block;
}

body.dark-theme .guarantee-icon svg {
    color: #8b5cf6 !important;
}

.speed-guarantee h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Dark theme speed guarantee h3 text color */
body.dark-theme .speed-guarantee h3 {
    color: #8b5cf6;
}

.speed-guarantee p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.speed-guarantee strong {
    color: #8b5cf6;
    font-weight: 700;
}

body.dark-theme .speed-guarantee strong {
    color: #8b5cf6 !important;
}

/* ===========================================
   PARTICLES CONTAINER
   =========================================== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */
@media screen and (max-width: 768px) {
    .methodology-section {
        padding: 4rem 0;
    }
    
    .methodology-title {
        font-size: 36px;
    }
    
    .methodology-description {
        font-size: 17px;
    }
    
    .methodology-phases {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .phase-card {
        padding: 1.5rem;
    }
    
    .phase-number {
        top: 1rem;
        left: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .phase-icon {
        top: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .phase-card h3 {
        margin-top: 3rem;
    }
    
    .speed-guarantee {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .methodology-title {
        font-size: 28px;
    }
    
    .methodology-description {
        font-size: 16px;
    }
    
    .phase-card h3 {
        font-size: 1.25rem;
    }
    
    .speed-guarantee h3 {
        font-size: 1.25rem;
    }
}



/* ===========================================
   MEMBERSHIP SECTION COMPONENT - STANDALONE CSS
   Extracted from services-styles.css and styles.css exactly as is
   =========================================== */

/* ===========================================
   CSS RESET & GLOBAL STYLES
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* ===========================================
   CSS VARIABLES
   =========================================== */
:root {
    --primary-color: #6a0dad;
    --secondary-color: #9370DB;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background-color: #ffffff;
    --light-bg: #f9fafb;
    --dark-bg: #111827;
    --accent-color: #8a2be2;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

/* ===========================================
   CONTAINER
   =========================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================================
   MEMBERSHIP PLANS SECTION - PRICING PLANS
   =========================================== */

/* Main membership plans section container */
.membership-plans {
    padding: 6rem 0;
    background: #f9fafb;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Dark theme background for membership-plans section */
body.dark-theme .membership-plans {
    background: #111827;
}

/* ===========================================
   MEMBERSHIP PLANS TYPOGRAPHY
   =========================================== */

/* Membership plans subtitle */
.membership-subtitle {
    color: #6b7280;
    font-size: 19.2px;
    text-align: center;
    max-width: 600px;
    margin: 1rem auto 3rem auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ===========================================
   PLANS GRID LAYOUT
   =========================================== */

/* Plans grid container */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

/* ===========================================
   PLAN CARD STYLES
   =========================================== */

/* Individual plan card container */
.plan-card {
    background: linear-gradient(180deg, #3b82f6 0%, #8b5cf6 100%);
    border: none;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* ===========================================
   PLAN CARD HOVER EFFECTS
   =========================================== */

/* Plan card hover state */
.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Featured plan card styling */
.plan-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Featured plan card hover state */
.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
}

/* ===========================================
   PLAN CARD HEADER
   =========================================== */

/* Plan card header container */
.plan-header {
    margin-bottom: 2rem;
}

/* Plan name styling */
.plan-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Plan name icon styling */
.plan-name img {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.white-plan {
    background: linear-gradient(180deg, #60a5fa 0%, #8b5cf6 100%);
}

.blue-plan {
    background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
}

.purple-plan {
    background: linear-gradient(180deg, #8b5cf6 0%, #6d28d9 100%);
}

.white-plan .plan-name,
.blue-plan .plan-name,
.purple-plan .plan-name {
    color: #ffffff;
}

.plan-type {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* ===========================================
   PLAN FEATURES
   =========================================== */
.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: '✓';
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

/* ===========================================
   PLAN PRICE & BUTTON
   =========================================== */
.plan-price {
    margin: 2rem 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-button {
    background: #374151;
    color: white;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 0;
    width: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.plan-button:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.white-plan .plan-button,
.blue-plan .plan-button,
.purple-plan .plan-button {
    background: #374151;
}

.white-plan .plan-button:hover,
.blue-plan .plan-button:hover,
.purple-plan .plan-button:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ===========================================
   SECTION TITLE
   =========================================== */
.section-title {
    color: #111827;
    font-family: "Proxima Nova Semibold", sans-serif;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

/* Dark theme section title text color (duplicate definition) */
body.dark-theme .section-title {
    color: #FFFFFF;
}

/* ===========================================
   PROGRESS RINGS FOR PLAN CARDS
   =========================================== */

/* Progress ring border effect for plan cards */
.membership-plans .plan-card.progress-ring {
    --track: rgba(26, 26, 26, 0.8);
    --s: 0deg;
    --trail: 80deg;
    --arc: 22deg;
    --ring-width: 1.5px;
    position: relative;
}

/* Light theme: semi-transparent white border for plan cards */
body.light-theme .membership-plans .plan-card.progress-ring {
    --track: rgba(255, 255, 255, 0.8);
}

/* Different accent colors for each plan card - matching their background gradients */
.membership-plans .plan-card.progress-ring:nth-child(1) { --accent: #60a5fa; } /* White Plan - Light Blue */
.membership-plans .plan-card.progress-ring:nth-child(2) { --accent: #3b82f6; } /* Blue Plan - Blue */
.membership-plans .plan-card.progress-ring:nth-child(3) { --accent: #8b5cf6; } /* Purple Plan - Purple */

/* Progress ring pseudo-elements for membership plan cards */
.membership-plans .plan-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.membership-plans .plan-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* ===========================================
   PARTICLES CONTAINER
   =========================================== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* ===========================================
   PROGRESS RING ANIMATION
   =========================================== */
@keyframes pr-scan {
    to { --s: 360deg; }
}

/* Fallback for browsers that don't animate custom properties */
@keyframes pr-rotate {
    to { transform: rotate(1turn); }
}

@supports not (background: conic-gradient(from var(--s), red 0 10deg, transparent 10deg)) {
    .membership-plans .plan-card.progress-ring::after {
        animation: pr-rotate 2.8s linear infinite;
        will-change: transform;
    }
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */
@media screen and (max-width: 992px) {
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media screen and (max-width: 768px) {
    .membership-plans {
        padding: 4rem 0;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .membership-subtitle {
        font-size: 17px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .membership-subtitle {
        font-size: 16px;
    }
    
    .plan-name {
        font-size: 1.75rem;
    }
    
    .plan-features li {
        font-size: 0.875rem;
    }
    
    .plan-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}



/* ===========================================
   REQUEST SECTION COMPONENT - STANDALONE CSS
   Extracted from services-styles.css exactly as is
   =========================================== */

/* ===========================================
   CSS RESET & GLOBAL STYLES
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* ===========================================
   CSS VARIABLES
   =========================================== */
:root {
    --primary-color: #6a0dad;
    --secondary-color: #9370DB;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background-color: #ffffff;
    --light-bg: #f9fafb;
    --dark-bg: #111827;
    --accent-color: #8a2be2;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

/* ===========================================
   CONTAINER
   =========================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================================
   EXCLUSIVE REQUEST SECTION - CONTACT FORM
   =========================================== */

/* ===========================================
   EXCLUSIVE REQUEST MAIN STYLES
   =========================================== */

/* Main exclusive request section container */
.exclusive-request {
    padding: 6rem 0;
    background: #0f0f23;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.exclusive-request::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.request-title {
    color: #ffffff;
    font-family: "Proxima Nova Semibold", sans-serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.request-description {
    color: #e5e7eb;
    font-size: 19.2px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto 3rem auto;
    padding: 0 2rem;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.request-description strong {
    color: #8b5cf6;
    font-weight: 700;
}

body.dark-theme .request-description strong {
    color: #8b5cf6 !important;
}

.request-form-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.request-form {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #e5e7eb;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.request-button {
    background: #6a0dad;
    border: 2px solid #6a0dad;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.request-button:hover {
    background: #6a0dad;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.3);
}

.request-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.request-button svg {
    color: #ffffff;
    transition: color 0.3s ease;
}

.request-button:hover svg {
    color: #ffffff;
}

.request-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e5e7eb;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    border-bottom: none;
}

.feature-item::before,
.feature-item::after {
    display: none;
    content: none;
}

.feature-item svg {
    color: #6a0dad;
}

.privacy-disclaimer {
    color: #9ca3af;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* ===========================================
   PARTICLES CONTAINER
   =========================================== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */
@media screen and (max-width: 768px) {
    .exclusive-request {
        padding: 4rem 0;
    }
    
    .request-title {
        font-size: 36px;
        padding: 0 1rem;
    }
    
    .request-description {
        font-size: 17px;
        padding: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .request-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .request-form {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .request-title {
        font-size: 28px;
        padding: 0 0.5rem;
    }
    
    .request-description {
        font-size: 16px;
        padding: 0 0.5rem;
    }
    
    .request-form {
        padding: 1rem;
    }
    
    .request-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}



/* ===========================================
   FOOTER COMPONENT - CSS STYLES
   =========================================== */

/* CSS Variables */
:root {
    --primary-color: #6a0dad;
    --secondary-color: #9370DB;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background-color: #ffffff;
    --light-bg: #f9fafb;
    --dark-bg: #111827;
    --accent-color: #8a2be2;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    transition: all 0.3s ease;
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===========================================
   FOOTER STYLES
   =========================================== */

footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

/* Extra spacing between logo section and Services section */
.footer-section:nth-child(1) {
    margin-right: 2rem;
}

/* Extra spacing between Services and Platform sections */
.footer-section:nth-child(2) {
    margin-right: 1.5rem;
}

.footer-section:nth-child(3) {
    margin-left: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF !important;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: #FFFFFF !important;
}

.footer-section ul li a {
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFFFFF !important;
}

/* Force footer section titles to be white with higher specificity */
.footer-section:nth-child(1) h4,
.footer-section:nth-child(2) h4,
.footer-section:nth-child(3) h4,
.footer-section:nth-child(4) h4 {
    color: #FFFFFF !important;
}

/* Override any existing color rules for footer titles */
body.dark-theme .footer-section h4,
body.light-theme .footer-section h4,
body.dark-theme .footer-section:nth-child(1) h4,
body.light-theme .footer-section:nth-child(1) h4,
body.dark-theme .footer-section:nth-child(2) h4,
body.light-theme .footer-section:nth-child(2) h4,
body.dark-theme .footer-section:nth-child(3) h4,
body.light-theme .footer-section:nth-child(3) h4,
body.dark-theme .footer-section:nth-child(4) h4,
body.light-theme .footer-section:nth-child(4) h4 {
    color: #FFFFFF !important;
}

.footer-section p {
    color: #FFFFFF !important;
    font-size: 0.95rem;
    margin: 1rem 0;
    font-weight: 500;
}

/* Footer Logo Size */
.footer-logo {
    width: 108.69px !important;
    height: 50px !important;
    max-width: none !important;
    object-fit: contain !important;
    margin-bottom: 1rem;
}

/* Override logo-img rules for footer logo */
img.footer-logo,
.logo-img.footer-logo {
    width: 108.69px !important;
    height: 50px !important;
    max-width: none !important;
    object-fit: contain !important;
}

.logo {
    display: inline-block;
}

/* ===========================================
   SOCIAL MEDIA LINKS
   =========================================== */

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ===========================================
   FOOTER BOTTOM
   =========================================== */

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom p {
    color: #FFFFFF;
    font-size: 0.85rem;
    margin: 0;
}

.privacy-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--secondary-color);
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */

@media screen and (max-width: 768px) {
    footer {
        padding: 2.5rem 0 1rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    /* Primera secciÃ³n - Logo y redes sociales */
    .footer-section:first-child {
        order: 1;
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .footer-section:first-child p {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 1.5rem 0;
        color: white;
    }
    
    /* Servicios */
    .footer-section:nth-child(2) {
        order: 2;
        margin-right: 0;
    }
    
    .footer-section:nth-child(2) h4 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section:nth-child(2) ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        max-width: 300px;
        margin: 0 auto;
        justify-items: center;
    }
    
    .footer-section:nth-child(2) ul li a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        display: block;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        text-align: center;
        width: 100%;
        max-width: 140px;
    }
    
    .footer-section:nth-child(2) ul li a:hover {
        background: rgba(74, 222, 128, 0.1);
        color: var(--secondary-color);
    }
    
    /* CompaÃ±Ã­a */
    .footer-section:nth-child(3) {
        order: 3;
        margin-left: 0;
    }
    
    .footer-section:nth-child(3) h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section:nth-child(3) ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-section:nth-child(3) ul li a {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
        text-align: center;
        min-width: 100px;
    }
    
    .footer-section:nth-child(3) ul li a:hover {
        background: var(--secondary-color);
        color: var(--dark-bg);
    }
    
    /* Contacto */
    .footer-section:nth-child(4) {
        order: 4;
        background: rgba(255, 255, 255, 0.05);
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-section:nth-child(4) h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section:nth-child(4) ul li {
        margin-bottom: 1rem;
    }
    
    .footer-section:nth-child(4) ul li a {
        font-size: 1rem;
        font-weight: 500;
        padding: 0.75rem;
        display: block;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        text-align: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .footer-section:nth-child(4) ul li a:hover {
        background: var(--secondary-color);
        color: var(--dark-bg);
        transform: translateY(-2px);
    }
    
    /* Logo y redes sociales */
    .footer-logo {
        width: 108.69px !important;
        height: 50px !important;
        max-width: none !important;
        object-fit: contain !important;
        margin-bottom: 1rem;
    }
    
    /* Force footer logo dimensions - highest specificity */
    img.footer-logo,
    .logo-img.footer-logo,
    body:has(.hero) img.footer-logo,
    body:has(.hero) .logo-img.footer-logo,
    footer img.footer-logo,
    footer .logo-img.footer-logo,
    .footer img.footer-logo,
    .footer .logo-img.footer-logo {
        width: 108.69px !important;
        height: 50px !important;
        max-width: none !important;
        object-fit: contain !important;
    }
    
    .social-media {
        justify-content: center;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .social-link:hover {
        transform: translateY(-3px) scale(1.1);
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    /* Footer bottom */
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
}



