/* ==========================================================================
   Homepage V2 - Corporate Design Styles
   Primary Color: #2C0454 (Deep Purple)
   Accent Color: #FF1493 (Hot Pink)
   ========================================================================== */

/* ==========================================================================
   Smooth Scrolling for Anchor Links
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   Body Override - White Background for V2
   ========================================================================== */

body {
    background: #ffffff !important;
}

/* Override global text colors for readability on white background */
h1, h2, h3, h4, h5, h6 {
    color: #2C0454 !important;
}

p, li, span, div {
    color: #333333 !important;
}

a {
    color: #2C0454 !important;
}

a:hover {
    color: #FF1493 !important;
}

/* Except for header/navigation - keep white text */
header a,
.nav-menu-v2 a,
.primary-navigation-v2 a {
    color: #ffffff !important;
}

header a:hover,
.nav-menu-v2 a:hover,
.primary-navigation-v2 a:hover {
    color: #FF1493 !important;
}

/* Mobile menu toggle - keep white icon */
header .mobile-menu-toggle,
header .mobile-menu-toggle span,
.mobile-menu-toggle,
.mobile-menu-toggle span {
    color: #ffffff !important;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:hover span {
    color: #FF1493 !important;
}

/* Except for hero section - keep white text */
.hero-corporate-content h1,
.hero-corporate-content h2,
.hero-corporate-content h3,
.hero-corporate-content h4,
.hero-corporate-content h5,
.hero-corporate-content h6,
.hero-corporate-content p,
.hero-corporate-content li,
.hero-corporate-content span,
.hero-corporate-content div,
.hero-corporate-content .lead {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-corporate-content h1 {
    color: #ffffff !important;
}

/* And contact CTA section - keep white text */
.contact-cta-section-v2 h1,
.contact-cta-section-v2 h2,
.contact-cta-section-v2 h3,
.contact-cta-section-v2 h4,
.contact-cta-section-v2 h5,
.contact-cta-section-v2 h6,
.contact-cta-section-v2 p,
.contact-cta-section-v2 li,
.contact-cta-section-v2 span,
.contact-cta-section-v2 div {
    color: #ffffff !important;
}

/* And features showcase section - white text on purple background */
.features-showcase-section-v2 > .container-v2 > .features-header-v2 h2,
.features-showcase-section-v2 > .container-v2 > .features-header-v2 .features-subtitle-v2 {
    color: #ffffff !important;
}

/* Button text should remain proper colors */
.btn-primary-v2,
.btn-secondary-v2,
.btn-getstarted-v2,
.pricing-btn-primary,
.pricing-btn-secondary {
    color: #ffffff !important;
}

.btn-secondary-v2 {
    color: #ffffff !important;
}

/* ==========================================================================
   Border Beam Pill - V2 Styling
   ========================================================================== */

.border-beam-pill {
    border: 1px solid rgba(44, 4, 84, 0.2) !important;
    background-color: rgba(44, 4, 84, 0.05) !important;
    backdrop-filter: blur(10px);
    border-radius: 26px;
    padding: 4px 20px;
    color: #2C0454 !important;
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Border beam pill variants for V2 */
.border-beam-pill-accent {
    border: 1px solid rgba(255, 20, 147, 0.3) !important;
    background-color: rgba(255, 20, 147, 0.08) !important;
    color: #FF1493 !important;
}

.border-beam-pill-light {
    border: 1px solid rgba(44, 4, 84, 0.15) !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
    color: #2C0454 !important;
}

/* ==========================================================================
   Header V2 Styles
   ========================================================================== */

/* Disable sticky header on V2 */
.sticky-header {
    position: relative !important;
    top: auto !important;
}

/* Header Scroll Effect */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding:0px;
}

header.scrolled {
    background: #2C0454;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Keep container width constraints even when scrolled */
header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Primary Navigation V2 */
.primary-navigation-v2 {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.nav-menu-v2 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.nav-menu-v2 li {
    margin: 0;
    padding: 0;
}

.nav-menu-v2 a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu-v2 a:hover {
    color: #FF1493;
}

.nav-menu-v2 a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF1493;
    transition: width 0.3s ease;
}

.nav-menu-v2 a:hover::after {
    width: 100%;
}

.nav-menu-v2 .current-menu-item a::after {
/*     width: 100%; */
}

/* Header CTA Button */
.header-cta-v2 {
    margin-left: auto;
}

.btn-getstarted-v2 {
    display: inline-block;
    padding: 8px 24px;
    background: #FF1493;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #FF1493;
}

.btn-getstarted-v2:hover {
    background: #e0127d;
    border-color: #e0127d;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle for V2 */
@media (max-width: 768px) {
    .primary-navigation-v2 {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(44, 4, 84, 0.98);
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .primary-navigation-v2.active {
        display: block;
    }

    .nav-menu-v2 {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .header-cta-v2 {
        margin-left: 0;
        margin-top: 1rem;
    }

    .btn-getstarted-v2 {
        width: 100%;
        text-align: center;
    }
}

.hero-corporate-inner h1 {
    font-weight:normal !important;
}

.hero-corporate-inner h1 strong{
    font-weight:700  !important;
}

/* Hero Corporate Section */
.hero-corporate-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2C0454;
    overflow: hidden;
    padding: 80px 20px;
}

/* Hero Logo Images - Top Left & Bottom Right */
.hero-corporate-section::before,
.hero-corporate-section::after {
    content: '';
    position: absolute;
    background-image: url('images/hero-logo.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
}

.hero-corporate-section::before {
    top: 100px;
    left: 50px;
}

.hero-corporate-section::after {
    bottom: -250px;
    right: 50px;
}

/* Background Decorative Shapes */
.hero-corporate-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.3) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.15) 0%, transparent 70%);
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -50px;
    animation-delay: 7s;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.08) 0%, transparent 70%);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Hero Content */
.hero-corporate-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.hero-corporate-inner {
    animation: fadeInUp 1s ease-out;
}

.hero-corporate-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-corporate-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-corporate-content h2 .highlight-text {
    color: #FF1493;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.hero-corporate-content h2 .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF1493 0%, transparent 100%);
}

.hero-corporate-content .lead {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

/* Primary Button (Accent Color) */
.btn-primary-v2 {
    display: inline-block;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    background: #FF1493;
    color: #ffffff;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #FF1493;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-v2:hover {
    background: #e0127d;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-primary-v2:active {
    transform: translateY(-1px);
    color: #ffffff;
}

/* Secondary Button (Outline) */
.btn-secondary-v2 {
    display: inline-block;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    background: transparent;
    color: #ffffff;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary-v2:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.trust-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF1493;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator - Updated for dark background */
.hero-corporate-section .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-corporate-section .scroll-indicator:hover {
    opacity: 1;
}

.hero-corporate-section .scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.hero-corporate-section .scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
}

.hero-corporate-section .scroll-arrow span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    border-left: 2px solid #FF1493;
    border-bottom: 2px solid #FF1493;
    transform: rotate(-45deg);
    animation: scrollArrow 2s infinite;
}

.hero-corporate-section .scroll-arrow span:nth-child(2) {
    top: 16px;
    animation-delay: 0.15s;
}

.hero-corporate-section .scroll-arrow span:nth-child(3) {
    top: 24px;
    animation-delay: 0.3s;
}

@keyframes scrollArrow {
    0% {
        opacity: 0;
        transform: rotate(-45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(-45deg) translate(0, 0);
    }
}

/* Hero Animation Sequence */
.hero-corporate-content h1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-corporate-content h2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-corporate-content .lead {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta-group {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-corporate-section {
        padding: 60px 15px;
        min-height: 90vh;
    }

    /* Adjust hero logo size and position on mobile */
    .hero-corporate-section::before,
    .hero-corporate-section::after {
        max-width: 250px;
        max-height: 250px;
        opacity: 1;
    }

    .hero-corporate-section::before {
        top: 80px;
        left: 20px;
    }

    .hero-corporate-section::after {
        bottom: 80px;
        right: 20px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-primary-v2,
    .btn-secondary-v2 {
        width: 100%;
        padding: 16px 32px;
        font-size: 1rem;
    }

    .trust-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-shape-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -50px;
    }

    .hero-shape-2 {
        width: 250px;
        height: 250px;
        bottom: -50px;
        left: -30px;
    }

    .hero-shape-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-corporate-content h2 .highlight-text::after {
        display: none;
    }

    .trust-indicators {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .trust-stats {
        gap: 1.5rem;
    }
}

/* ==========================================================================
   Common Section Styles
   ========================================================================== */

.container-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header-v2 {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-v2 h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #2C0454;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header-v2 .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-v2-section {
    padding: 100px 0;
    background: #ffffff;
}

.features-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-v2-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(44, 4, 84, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-v2-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44, 4, 84, 0.12);
    border-color: #FF1493;
}

.feature-v2-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2C0454 0%, #4a0874 100%);
    border-radius: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.feature-v2-card:hover .feature-v2-icon {
    background: linear-gradient(135deg, #FF1493 0%, #ff4db8 100%);
    transform: scale(1.1) rotate(5deg);
}

.feature-v2-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C0454;
    margin-bottom: 1rem;
}

.feature-v2-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   Solutions Section
   ========================================================================== */

.solutions-v2-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.solutions-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-v2-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(44, 4, 84, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-v2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #FF1493 0%, #2C0454 100%);
    transition: height 0.4s ease;
}

.solution-v2-card:hover::before {
    height: 100%;
}

.solution-v2-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(44, 4, 84, 0.1);
    border-color: rgba(255, 20, 147, 0.3);
}

.solution-v2-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(44, 4, 84, 0.08);
    line-height: 1;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.solution-v2-card:hover .solution-v2-number {
    color: rgba(255, 20, 147, 0.2);
}

.solution-v2-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C0454;
    margin-bottom: 1rem;
}

.solution-v2-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.solution-v2-link {
    display: inline-flex;
    align-items: center;
    color: #FF1493;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.solution-v2-link:hover {
    color: #2C0454;
    transform: translateX(5px);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing-v2-section {
    padding: 100px 0;
    background: #f9fafb;
}

.pricing-label {
    color: #7C3AED;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.75rem;
}

.pricing-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-v2-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pricing-v2-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.pricing-v2-header {
    margin-bottom: 1.5rem;
}

.pricing-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.pricing-v2-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.pricing-badge {
    background: #ede9fe;
    color: #7C3AED;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-v2-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3.75rem;
    font-weight: 600;
    color: #111827;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.pricing-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pricing-btn {
    display: block;
    padding: 12px 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.pricing-btn-primary {
    background: #2C0454;
    color: #ffffff;
    border-color: #2C0454;
}

.pricing-btn-primary:hover {
    background: #1f0339;
    border-color: #1f0339;
    color: #ffffff;
}

.pricing-btn-secondary {
    background: #ffffff;
    color: #374151;
    border-color: #d1d5db;
}

.pricing-btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.pricing-features-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.pricing-features-section h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #111827;
    letter-spacing: 0.05em;
    margin: 0 0 1rem 0;
}

.features-intro {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0 0 1rem 0;
}

.features-intro strong {
    color: #111827;
    font-weight: 600;
}

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

.pricing-v2-features li {
    padding: 0.75rem 0;
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.5;
    position: relative;
    padding-left: 32px;
    border: none;
}

.pricing-v2-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.875rem;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%237C3AED"><circle cx="12" cy="12" r="10" fill="%23ede9fe"/><path d="M9 12l2 2 4-4" stroke="%237C3AED" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none"/></svg>') no-repeat center;
    background-size: contain;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */

.about-v2-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.about-v2-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-v2-text {
    text-align: center;
}

.about-v2-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #2C0454;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-v2-lead {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: #2C0454;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-v2-text p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-v2-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(44, 4, 84, 0.1);
}

.about-v2-stat {
    text-align: center;
}

.stat-v2-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #FF1493;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-v2-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================================================
   Contact/Get Started Section
   ========================================================================== */

.contact-v2-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2C0454 0%, #4a0874 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-v2-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-v2-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-v2-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-v2-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-v2-text p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-v2-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.contact-v2-info {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-v2-item {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-v2-item strong {
    color: #ffffff;
    font-weight: 600;
    margin-right: 0.5rem;
}

/* ==========================================================================
   Responsive Design for New Sections
   ========================================================================== */

@media (max-width: 768px) {
    .features-v2-section,
    .solutions-v2-section,
    .pricing-v2-section,
    .about-v2-section,
    .contact-v2-section {
        padding: 60px 0;
    }

    .section-header-v2 {
        margin-bottom: 3rem;
    }

    .features-v2-grid,
    .solutions-v2-grid {
        gap: 2rem;
    }

    .pricing-v2-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-v2-stats {
        gap: 2rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .contact-v2-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-v2-actions .btn-primary-v2,
    .contact-v2-actions .btn-secondary-v2 {
        width: 100%;
    }

    .contact-v2-info {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features-v2-grid {
        grid-template-columns: 1fr;
    }

    .feature-v2-card,
    .solution-v2-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   Footer V2 - Corporate Design
   ========================================================================== */

footer {
    margin-top:0px !important;
    padding-top:0px !important;
    background:#2C0454 !important;
    margin-top: -20px !important;
    color:#FFF !important;
}

footer .footer-logo .custom-logo-link img {
    max-width:200px !important;
}

footer a, footer p {
    color:#FFF !important;
}

.footer-corporate-section {
    position: relative;
    background: #2C0454;
    color: #ffffff;
    padding: 60px 20px 40px;
    /* margin-top: 80px; */
    overflow: hidden;
}

.footer-corporate-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 20, 147, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.footer-corporate-section .footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-corporate-section .footer-logo {
    margin-bottom: 30px;
}

.footer-corporate-section .footer-logo img,
.footer-corporate-section .footer-logo .site-title {
    max-width: 180px;
    height: auto;
    display: inline-block;
}

.footer-corporate-section .site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-corporate-section .site-title:hover {
    color: #FF1493;
}

.footer-corporate-section .footer-navigation {
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-corporate-section .footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-corporate-section .footer-copyright p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-corporate-section {
        padding: 40px 20px 30px;
        margin-top: 60px;
    }

    .footer-corporate-section .footer-logo img,
    .footer-corporate-section .footer-logo .site-title {
        max-width: 150px;
    }
}

/* Print Styles */
@media print {
    .hero-corporate-section {
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-shape,
    .scroll-indicator {
        display: none;
    }

    .hero-corporate-content h1,
    .hero-corporate-content h2,
    .hero-corporate-content .lead {
        color: #2C0454;
    }

    .footer-corporate-section {
        background: #ffffff;
        color: #2C0454;
        margin-top: 40px;
        padding: 30px 20px;
    }

    .footer-corporate-background {
        display: none;
    }
}

/* ==========================================================================
   Main Content Area
   ========================================================================== */

main.container {
    background: #ffffff;
    padding-top: 0;
    padding-bottom: 0;
}

.page-content {
    background: #ffffff;
}

.page-content .content {
    background: #ffffff;
}

/* ==========================================================================
   Feature Tabs Section V2 - Tab-Based Layout with Image Switching
   ========================================================================== */

.features-section-v2 {
    background: #FAFAFA;
    padding: 100px 0;
    min-height: 100vh;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.features-section-v2 .container-v2 {
    max-width: 1336px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header - Full Width */
.features-section-v2-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.border-beam-pill {
    border:0px !important;
    background:transparent !important;
    font-size:0.875rem !important;
}

.features-section-v2-label,
.border-beam-pill,
.border-beam-pill-gold,
.border-beam-container {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FF1493 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.features-section-v2-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2C0454;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.features-section-v2-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Two-Column Grid */
.features-section-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side Content */
.features-section-v2-content {
    padding-right: 20px;
}

/* Tab Items List */
.features-tabs-v2-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-tab-item-v2 {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    border-left: 3px solid transparent;
}

.feature-tab-item-v2:hover {
    background: rgba(44, 4, 84, 0.03);
}

.feature-tab-item-v2.active {
    background: rgba(44, 4, 84, 0.05);
    /* border-left-color: #2C0454; */
}

.small-logo {
    max-width:100px !important;
    max-height:100px !important;
}

.feature-tab-icon-v2 {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2C0454;
    border-radius: 12px;
    color: #2C0454;
}

.feature-tab-icon-v2 .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color:#FF1493 !important;
}

.feature-tab-text-v2 {
    flex: 1;
}

.feature-tab-title-v2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C0454;
    margin: 0 0 0.5rem 0;
}

.feature-tab-desc-v2 {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

.feature-tab-link-v2 {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2C0454;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-tab-link-v2:hover {
    color: #FF1493;
    transform: translateX(5px);
}

/* Right Side Media */
.features-section-v2-media {
    position: relative;
    height: 600px;
    background: #f3f4f6;
    border-radius: 20px;
    overflow: hidden;
}

.feature-tab-image-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-tab-image-v2.active {
    opacity: 1;
}

.feature-tab-image-v2 img,
.feature-tab-image-v2 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.features-video-v2-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2C0454 0%, #4a0874 100%);
}

@media (max-width: 968px) {
    .features-section-v2 {
        padding: 60px 0;
    }

    .features-section-v2-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-section-v2-content {
        padding-right: 0;
    }

    .features-section-v2-media {
        height: 400px;
    }

    .feature-tab-item-v2 {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Features Showcase Section V2
   ========================================================================== */

.features-showcase-section-v2 {
    min-height: 100vh;
    padding: 100px 0;
    background: #2C0454;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    display: block;
    align-items: center;
}

/* Features Showcase Logo Images - Top Left & Bottom Right */
.features-showcase-section-v2::before,
.features-showcase-section-v2::after {
    content: '';
    position: absolute;
    background-image: url('images/hero-logo.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
}

.features-showcase-section-v2::before {
    top: 100px;
    left: 50px;
}

.features-showcase-section-v2::after {
    bottom: -250px;
    right: 50px;
}

.features-showcase-section-v2 .container-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header Section - 50/50 Layout */
.features-header-v2 {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.features-header-v2-text {
    text-align: left;
}

.features-header-v2 h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.features-subtitle-v2 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
    margin: 0;
}

.features-header-v2-venn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.venn-diagram-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.venn-diagram-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Swiper Container */
.features-swiper-container-v2 {
    position: relative;
    padding: 0 80px;
}

.features-swiper-v2 {
    padding: 40px 0 60px;
}

.features-swiper-v2 .swiper-wrapper {
    align-items: center;
}

.features-swiper-v2 .swiper-slide {
    transition: all 0.4s ease;
    transform: scale(0.85) !important;
}

.features-swiper-v2 .swiper-slide-active {
    transform: scale(1) !important;
    z-index: 2;
}

.features-swiper-v2 .swiper-slide-active .feature-card-v2 {
    border: 3px solid #FF1493;
}

/* Feature Card */
.feature-card-v2 {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(44, 4, 84, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.feature-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 4, 84, 0.12);
    border-color: #FF1493;
}

.feature-image-v2 {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.feature-image-v2 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.feature-content-v2 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-icon-v2 {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#FF1493;
    border-radius: 12px;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.feature-icon-v2, .feature-icon-v2 .dashicons {
    color:#2C0454 !important;
}

.feature-icon-v2 .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
}

.feature-title-v2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2C0454;
    margin-bottom: 1rem;
}

.feature-description-v2 {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Swiper Navigation */
.features-swiper-prev-v2,
.features-swiper-next-v2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid rgba(44, 4, 84, 0.1);
    flex-shrink: 0;
    padding: 0 !important;
    overflow: hidden;
}

.features-swiper-prev-v2 {
    left: 10px;
}

.features-swiper-next-v2 {
    right: 10px;
}

.sticky-heading {
    position: relative !important;
    top: 0px !important;
}

.features-swiper-prev-v2::after,
.features-swiper-next-v2::after {
    font-family: 'swiper-icons';
    font-size: 14px !important;
    color: #2C0454;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-swiper-prev-v2::after {
    content: 'prev';
}

.features-swiper-next-v2::after {
    content: 'next';
}

.features-swiper-prev-v2:hover,
.features-swiper-next-v2:hover {
    background: #2C0454;
    border-color: #2C0454;
}

.features-swiper-prev-v2:hover::after,
.features-swiper-next-v2:hover::after {
    color: #ffffff;
}

.swiper {
    overflow:visible !important;
}

/* Swiper Pagination */
.features-swiper-pagination-v2 {
    position: relative !important;
    bottom: auto !important;
    margin-top: 40px;
    text-align: center;
    z-index: 10;
}

.features-swiper-pagination-v2 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.features-swiper-pagination-v2 .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 968px) {
    .features-showcase-section-v2 {
        padding: 60px 0;
    }

    /* Header stacks on mobile */
    .features-header-v2 {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 3rem;
    }

    .features-header-v2-text {
        text-align: center;
    }

    .features-header-v2-venn {
        min-height: 250px;
    }

    .venn-diagram-placeholder {
        height: 250px;
    }

    /* Adjust logo size and position on mobile */
    .features-showcase-section-v2::before,
    .features-showcase-section-v2::after {
        max-width: 250px;
        max-height: 250px;
        opacity: 1;
    }

    .features-showcase-section-v2::before {
        top: 80px;
        left: 20px;
    }

    .features-showcase-section-v2::after {
        bottom: 80px;
        right: 20px;
    }

    .features-swiper-container-v2 {
        padding: 0 60px;
    }

    .features-swiper-prev-v2,
    .features-swiper-next-v2 {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        max-width: 32px;
        max-height: 32px;
    }

    .features-swiper-prev-v2 {
        left: 5px;
    }

    .features-swiper-next-v2 {
        right: 5px;
    }

    .features-swiper-prev-v2::after,
    .features-swiper-next-v2::after {
        font-size: 12px;
    }

    .feature-card-v2 {
        padding: 2rem;
        min-height: 350px;
    }
}

/* ==========================================================================
   Leadership Team Section V2
   ========================================================================== */

.leadership-section-v2 {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.leadership-section-v2::after {
    content: '';
    position: absolute;
    background-image: url('images/hero-logo.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
    bottom: -250px;
    right: 50px;
    opacity:.3;
}

.leadership-section-v2 .container-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.leadership-header-v2 {
    text-align: center;
    margin-bottom: 4rem;
}

.leadership-header-v2 h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #2C0454;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.leadership-subtitle-v2 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.leadership-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member-card-v2 {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(44, 4, 84, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 4, 84, 0.15);
    border-color: #FF1493;
}

.member-image-v2 {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.member-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-placeholder-v2 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2C0454 0%, #4a0874 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-initials-v2 {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
}

.member-info-v2 {
    padding: 2rem;
}

.member-name-v2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C0454;
    margin: 0 0 0.5rem 0;
}

.member-position-v2 {
    font-size: 1rem;
    font-weight: 600;
    color: #FF1493;
    margin: 0 0 1rem 0;
}

.member-bio-v2 {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.member-social-v2 {
    display: flex;
    gap: 1rem;
}

.social-link-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border-radius: 8px;
    color: #666;
    transition: all 0.3s ease;
}

.social-link-v2:hover {
    background: #2C0454;
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .leadership-section-v2 {
        padding: 60px 0;
    }

    .leadership-grid-v2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================================================
   Contact CTA Section V2
   ========================================================================== */

.contact-cta-section-v2 {
    padding: 80px 0 100px;
    background: #2C0454;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.contact-cta-section-v2::before {
    content: '';
    position: absolute;
    background-image: url('images/hero-logo.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
    top: 100px;
    left: 50px;
    opacity:.3;
}

.contact-cta-section-v2 a {
    color:#FFF !important;
}

.contact-cta-section-v2 a:hover {
    color:#FF1493 !important;
}



.contact-cta-section-v2 .container-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.container-v2 h3 {
    color:#FF1493 !important;
}

/* Speech bubble decorations */
.contact-bubble-decoration {
    position: absolute;
    background: #FF1493;
    border-radius: 20px;
    z-index: 1;
}

.contact-bubble-1 {
    top: 10%;
    right: 8%;
    width: 280px;
    height: 140px;
}

.contact-bubble-1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 30px;
    height: 30px;
    background: #FF1493;
    border-radius: 50%;
}

.contact-bubble-2 {
    bottom: 35%;
    right: 10%;
    width: 180px;
    height: 120px;
}

.contact-bubble-2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 25px;
    width: 25px;
    height: 25px;
    background: #FF1493;
    border-radius: 50%;
}

/* Logo */
.contact-logo-v2 {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.contact-logo-img {
    max-width: 200px;
    height: auto;
}

.contact-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

/* Headline with divider */
.contact-headline-v2 {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.contact-headline-v2 h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-headline-divider {
    width: 100%;
    max-width: 600px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

/* Columns */
.contact-columns-v2 {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-column-v2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF1493;
    margin: 0 0 1rem 0;
}

.wp-block-columns.stylised .wp-block-column {
    padding:1.5rem !important;
    border:3px solid #FF1493 !important;
    border-radius:12px !important;
}


.wp-block-columns.stylised .wp-block-column .has-text-color{
   color: #FF1493 !important;
}

.wp-block-columns.stylised .wp-block-column svg {
    height:50px;
    width:50px;
    background-color:#FF1493 !important;
    border-radius:8px;
    padding:7px;
    color:#2C0454 !important;
}

.contact-column-v2 p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Contact info styling */
.contact-info-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-item-v2 {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    align-items: center;
}

.contact-label-v2 {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.contact-value-v2 {
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-value-v2:hover {
    color: #FF1493;
}

/* Bottom CTA */
.contact-bottom-cta-v2 {
    position: relative;
    z-index: 2;
    text-align: left;
    margin-top: 3rem;
}

.contact-bottom-cta-v2 p {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #FF1493 !important;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 968px) {
    .contact-cta-section-v2 {
        padding: 60px 0;
    }

    .contact-columns-v2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
