/* ========================================
   VINALINK Landing Page - Custom Styles
   Brand Colors: #034ea2 (Primary Blue), #db2e28 (Danger Red)
======================================== */

/* === ROOT VARIABLES === */
:root {
    --primary-color: #034ea2;
    --danger-color: #db2e28;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --gradient-primary: linear-gradient(135deg, #034ea2 0%, #0266d8 100%);
    --gradient-danger: linear-gradient(135deg, #db2e28 0%, #ff4444 100%);
    --gradient-hero: linear-gradient(135deg, rgba(3, 78, 162, 0.95) 0%, rgba(219, 46, 40, 0.85) 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn-danger {
    background: var(--gradient-danger);
    border: none;
    box-shadow: 0 4px 15px rgba(219, 46, 40, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 46, 40, 0.4);
    background: var(--danger-color);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1rem;
}

/* === NAVIGATION === */
.navbar {
    background: transparent;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(3, 78, 162, 0.98);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white !important;
}

.navbar-brand i {
    color: var(--danger-color);
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1920&h=1080&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

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

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.text-gradient {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.hero-cta .btn {
    margin: 0.5rem;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-stats {
    margin-top: 4rem;
}

.stat-item {
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--danger-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll a {
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* === SECTION STYLES === */
section {
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
}
.section-title1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-danger);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* === PAIN POINTS SECTION === */
.pain-points-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.pain-points-list {
    max-width: 1000px;
    margin: 0 auto;
}

.pain-point-item {
    display: flex;
    align-items: flex-start;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 5px solid var(--danger-color);
}

.pain-point-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.pain-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.pain-icon i {
    font-size: 1.5rem;
    color: white;
}

.pain-content h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0rem;
}

.pain-content p {
    color: var(--text-light);
    margin: 0;
}

.pain-transition {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.bounce-arrow {
    animation: bounce 2s infinite;
    opacity: 0.8;
}

/* === BENEFITS SECTION === */
.benefits-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0266d8 100%);
    color: white;
    padding: 6rem 0;
}

.benefits-section .section-title,
.benefits-section .lead {
    color: white;
}

.benefit-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.2);
    height: 100%;
}

.benefit-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
    border-color: var(--danger-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.benefit-card p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* === ABOUT SECTION === */
.about-section {
    padding: 6rem 0;
    background: white;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 20px;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-danger);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-badge i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.about-badge span {
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateX(10px);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h5 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
}

/* === PROCESS SECTION === */
.process-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
}

.process-section-marketting .process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 3rem;
	width:100%;
	height:auto;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-danger);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(219, 46, 40, 0.3);
    z-index: 2;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.step-content:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-icon i {
    font-size: 1.3rem;
    color: white;
}

.step-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

/* === ECOSYSTEM SECTION === */
.ecosystem-section {
    background: white;
    padding: 6rem 0;
}

.ecosystem-card {
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ecosystem-card.academy {
    background: linear-gradient(135deg, #034ea2 0%, #0266d8 100%);
    color: white;
}

.ecosystem-card.media {
    background: linear-gradient(135deg, #db2e28 0%, #ff4444 100%);
    color: white;
}

.ecosystem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.ecosystem-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.ecosystem-icon i {
    font-size: 3rem;
    color: white;
}

.ecosystem-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.ecosystem-card .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
}

.ecosystem-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.ecosystem-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
}

.ecosystem-list li:last-child {
    border-bottom: none;
}

.ecosystem-list i {
    margin-right: 1rem;
    color: rgba(255,255,255,0.9);
}

/* === SERVICES SECTION === */
.services-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h5 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin: 0;
}

/* === SOCIAL PROOF SECTION === */
.proof-section {
    background: white;
    padding: 6rem 0;
}

.client-logos {
    padding: 2rem 0;
}

.client-logo {
    text-align: center;
    transition: var(--transition);
}

.logo-placeholder {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: var(--transition);
    border: 2px solid #e9ecef;
}

.logo-placeholder:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.logo-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.logo-placeholder span {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
    height: 100%;
    border-left: 5px solid var(--primary-color);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.1;
}

.testimonial-quote i {
    font-size: 4rem;
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.testimonial-author h6 {
    margin: 0;
    font-weight: 700;
    color: var(--dark-color);
}

.testimonial-author p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === WHY CHOOSE SECTION === */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
}

.why-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    height: 100%;
}

.why-card:hover {
    border-color: var(--danger-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-danger);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-card h5 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-light);
    margin: 0;
}

/* === CTA FINAL SECTION === */
.cta-final-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--danger-color) 100%);
    color: white;
    padding: 6rem 0;
}

.cta-final-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-final-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-final-content .lead {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
}

.cta-final-content p {
    color: rgba(255,255,255,0.9);
}

/* === CONTACT SECTION === */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 6rem 0;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: block;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(3, 78, 162, 0.25);
}

.form-check {
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #e9ecef;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-color);
    font-weight: 500;
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.contact-info-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    color: white;
}

.contact-info-item i {
    font-size: 2.5rem;
    color: var(--danger-color);
    margin-bottom: 1rem;
}

.contact-info-item h5 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-info-item a {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-info-item a:hover {
    color: var(--danger-color);
}

/* === FOOTER === */
.footer {
    background: #1a1a1a;
    color: white;
}

.footer p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--danger-color);
    transform: translateY(-3px);
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-danger);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        left: -5px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .process-section-marketting .process-step {
        padding-left: 80px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .pain-point-item {
        flex-direction: column;
        text-align: center;
    }
    
    .pain-icon {
        margin: 0 auto 1rem;
    }
    
    .about-badge {
        bottom: 10px;
        right: 10px;
        padding: 1rem 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-final-content h2 {
        font-size: 1.75rem;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === UTILITY CLASSES === */
.text-primary {
    color: var(--primary-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.bg-primary {
    background: var(--gradient-primary) !important;
}

.bg-danger {
    background: var(--gradient-danger) !important;
}
