/* Synchro Technologies - Custom Styles */

/* ================================
   BASE STYLES
   ================================ */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================
   TYPEWRITER EFFECT
   ================================ */
.typewriter-text {
    display: inline;
}

.typewriter-cursor {
    display: inline-block;
    color: #F8ACFF;
    font-weight: 300;
    animation: blink-cursor 0.7s step-end infinite;
    margin-left: 2px;
}

.typewriter-cursor.hidden {
    opacity: 0;
    animation: none;
}

.typewriter-highlight {
    color: #F8ACFF;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ================================
   COLOR UTILITIES
   ================================ */
.bg-dark { background: #0B0813; }
.bg-light { background: #F9FAFB; }
.bg-light-gray { background: #F3F4F6; }

.text-dark { color: #030712; }
.text-purple { color: #9618A0; }
.text-purple-dark { color: #92119C; }
.text-pink-acent { color: #F8ACFF; }

/* ================================
   BACKGROUNDS & GRADIENTS
   ================================ */
.hero-bg {
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.our-approach-section {
    background: #0B0813;
    position: relative;
}

.our-approach-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.our-approach-visual img {
    max-height: 600px;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.our-approach-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 273px;
    left: 0;
    bottom: -20;
    background: linear-gradient(8.39deg, #0B0813 6.36%, #0B0813 22.72%, rgba(11, 8, 19, 0) 93.64%);
    transform: rotate(-180deg);
    pointer-events: none;
    z-index: 1;
}

/* Our Approach - Typography */
.approach-indicator {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background-color: #92119C;
    animation: blink-online-approach 3s ease-in-out infinite;
    animation-delay: 1s;
    animation-fill-mode: both;
    box-shadow: 0 0 0 0 rgba(248, 172, 255, 0.7);
    will-change: background-color, box-shadow;
}

.approach-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1.08px;
    text-transform: uppercase;
    color: #9CA3AF;
}


/* Our Approach - Feature Cards */
.approach-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
}

.approach-icon-container {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(121, 118, 121, 0.16);
    backdrop-filter: blur(135px);
    -webkit-backdrop-filter: blur(135px);
    border-radius: 8px;
}


.gradient-cta-section {
    background: linear-gradient(180deg, #0B0813 0%, #1a0f2e 50%, #0B0813 100%);
}

/* ================================
   TYPOGRAPHY - SECTION LABELS
   ================================ */
.section-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 17.4px;
    line-height: 24px;
    letter-spacing: 1.08px;
    text-transform: uppercase;
    color: #616E80;
}

.section-label-purple {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9618A0;
}


.footer-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    color: #6B7280;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
}


/* ================================
   COMPONENTS - INDICATORS
   ================================ */
.purple-square {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background-color: #9618A0;
    animation: blink-online 3s ease-in-out infinite;
    animation-delay: 1s;
    animation-fill-mode: both;
    box-shadow: 0 0 0 0 rgba(248, 172, 255, 0.7);
    will-change: background-color, box-shadow;
}

.purple-square-dark {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background-color: #92119C;
    animation: blink-online-dark 3s ease-in-out infinite;
    animation-delay: 1s;
    animation-fill-mode: both;
    box-shadow: 0 0 0 0 rgba(248, 172, 255, 0.7);
    will-change: background-color, box-shadow;
}

@keyframes blink-online {
    0%, 100% {
        background-color: #9618A0;
        box-shadow: 0 0 0 0 rgba(248, 172, 255, 0.7);
    }
    50% {
        background-color: #F8ACFF;
        box-shadow: 0 0 8px 3px rgba(248, 172, 255, 0.6);
    }
}

@keyframes blink-online-dark {
    0%, 100% {
        background-color: #92119C;
        box-shadow: 0 0 0 0 rgba(248, 172, 255, 0.7);
    }
    50% {
        background-color: #F8ACFF;
        box-shadow: 0 0 8px 3px rgba(248, 172, 255, 0.6);
    }
}

@keyframes blink-online-pink {
    0%, 100% {
        background-color: #F8ACFF;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        background-color: #FFFFFF;
        box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.8);
    }
}

@keyframes blink-online-approach {
    0%, 100% {
        background-color: #92119C;
        box-shadow: 0 0 0 0 rgba(248, 172, 255, 0.7);
    }
    50% {
        background-color: #F8ACFF;
        box-shadow: 0 0 8px 3px rgba(248, 172, 255, 0.6);
    }
}

.pink-square {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background-color: #F8ACFF;
    animation: blink-online-pink 3s ease-in-out infinite;
    animation-delay: 1s;
    animation-fill-mode: both;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    will-change: background-color, box-shadow;
}

/* ================================
   COMPONENTS - CARDS
   ================================ */


/* ================================
   COMPONENTS - GRADIENT BORDER BUTTON
   ================================ */
.gradient-border-btn {
    position: relative;
    background: #3D2066;
    border: none;
    border-radius: 9px;
}

.gradient-border-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9px;
    padding: 0.5px;
    background: linear-gradient(90deg, #F8ACFF 0%, #F8ACFF 34%, transparent 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}


/* ================================
   UTILITIES - FILTERS
   ================================ */
.invert-white {
    filter: brightness(0) invert(1);
}


/* ================================
   SCROLLBAR
   ================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0514;
}

::-webkit-scrollbar-thumb {
    background: #a855f7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c084fc;
}

/* ================================
   SELECTION
   ================================ */
::selection {
    background: #a855f7;
    color: white;
}

/* ================================
   FOCUS STYLES
   ================================ */
a:focus,
button:focus {
    outline: 2px solid #a855f7;
    outline-offset: 2px;
}

/* ================================
   NAVIGATION SCROLLED
   ================================ */
nav.scrolled {
    background: rgba(10, 5, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.enterprise-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.08px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}


/* ================================
   ADDITIONAL COMPONENTS
   ================================ */
.enterprise-checkmark {
    width: 24px;
    height: 24px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(123.14deg, #F8ACFF -8.64%, #92119C 69.94%, #3D184C 250.68%);
}


.btn-secondary {
    width: 285px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 11px 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
}

.btn-cta-interested {
    box-sizing: border-box;
    width: 183.48px;
    height: 48px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.btn-cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
}

/* ================================
   GLOWING BORDER BUTTON
   ================================ */
.glow-btn {
    position: relative;
    padding: 2px;
    border: none;
    border-radius: 999px;
    background: rgba(248, 172, 255, 0.12);
    cursor: pointer;
    overflow: hidden;
}

.glow-btn-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        transparent 260deg,
        rgba(100, 150, 255, 0.5) 280deg,
        rgba(120, 180, 255, 1) 300deg,
        #ffffff 320deg,
        rgba(120, 180, 255, 1) 340deg,
        rgba(100, 150, 255, 0.5) 355deg,
        transparent 360deg
    );
    animation: rotate-fluorescent 2s linear infinite;
    z-index: 0;
}

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

.glow-btn-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    background: linear-gradient(180deg, #1a1030 0%, #0d0818 100%);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    z-index: 1;
}

.glow-btn:hover .glow-btn-bg {
    animation-duration: 0.6s;
}

.glow-btn:hover .glow-btn-content {
    background: linear-gradient(180deg, #251545 0%, #150d25 100%);
}

/* ================================
   TESTIMONIAL CARD BACKGROUNDS
   ================================ */
.bg-yellow-card { background: #F4E0CE; }
.bg-blue-card { background: #CDE6EC; }
.bg-green-card { background: #D8EAD4; }
.bg-purple-card { background: #E8E0F7; }
.bg-salmon-card { background: #F2DCDC; }

/* ================================
   TESTIMONIALS GRID LAYOUT
   ================================ */
.testimonials-row-1,
.testimonials-row-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-card {
    padding: 28px;
    border-radius: 4px;
    flex: 1;
    min-width: 280px;
}

/* Row 1: Medium | Wide | Small */
.testimonials-row-1 .testimonial-card-sm { flex: 0.8; }
.testimonials-row-1 .testimonial-card-md { flex: 1; }
.testimonials-row-1 .testimonial-card-lg { flex: 1.3; }

/* Row 2: Small | Medium | Wide */
.testimonials-row-2 .testimonial-card-sm { flex: 0.75; }
.testimonials-row-2 .testimonial-card-md { flex: 1.1; }
.testimonials-row-2 .testimonial-card-lg { flex: 1.4; }

/* Mobile responsive - stack cards */
@media (max-width: 768px) {
    .testimonials-row-1,
    .testimonials-row-2 {
        flex-direction: column;
    }
    
    .testimonial-card {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

/* Tablet - 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-row-1,
    .testimonials-row-2 {
        flex-wrap: wrap;
    }
    
    .testimonial-card {
        flex: 1 1 calc(50% - 16px);
        min-width: calc(50% - 16px);
    }
}

/* ================================
   FOOTER STYLES
   ================================ */
.footer-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-bottom-border {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #6B7280;
}

.footer-bottom-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #6B7280;
    transition: opacity 0.2s;
}

.footer-bottom-link:hover {
    opacity: 0.8;
}

/* ================================
   RIPPLE ANIMATION
   ================================ */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(248, 172, 255, 0.4);
    pointer-events: none;
    border: 2px solid rgba(248, 172, 255, 0.6);
    z-index: 10;
}

#diagram-container {
    overflow: hidden;
    cursor: pointer;
}



/* ================================
   PRINT STYLES
   ================================ */
@media print {
    .no-print {
        display: none !important;
    }
}

/* ================================
   CONTACT MODAL
   ================================ */
.contact-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 8, 19, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-overlay.hidden {
    display: none;
}

.contact-modal {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #1a1025 0%, #0f0a18 100%);
    border: 1px solid rgba(248, 172, 255, 0.15);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 0 60px rgba(248, 172, 255, 0.1),
        0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
}

.contact-modal-overlay.active .contact-modal {
    transform: scale(1) translateY(0);
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #9CA3AF;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-modal-close:hover {
    background: rgba(248, 172, 255, 0.1);
    border-color: rgba(248, 172, 255, 0.3);
    color: #F8ACFF;
}

.contact-modal-header {
    margin-bottom: 28px;
}

.contact-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #9CA3AF;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    transition: all 0.2s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6B7280;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(248, 172, 255, 0.5);
    background: rgba(248, 172, 255, 0.03);
    box-shadow: 0 0 0 3px rgba(248, 172, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 44px;
}

.form-group select option {
    background: #1a1025;
    color: #FFFFFF;
}

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

.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #F8ACFF -10%, #92119C 50%, #3D184C 110%);
    border: none;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(248, 172, 255, 0.3);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-success {
    text-align: center;
    padding: 20px 0;
}

.contact-success.hidden {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 172, 255, 0.1);
    border-radius: 50%;
    animation: success-pulse 2s ease-in-out infinite;
}

@keyframes success-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(248, 172, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(248, 172, 255, 0);
    }
}

/* Modal scrollbar */
.contact-modal::-webkit-scrollbar {
    width: 6px;
}

.contact-modal::-webkit-scrollbar-track {
    background: transparent;
}

.contact-modal::-webkit-scrollbar-thumb {
    background: rgba(248, 172, 255, 0.3);
    border-radius: 3px;
}
