﻿:root {
    --primary-color: #1f6bff;
    --primary-dark: #0F4C81;
    --primary-light: #4d8aff;
    --accent-color: #FF9500;
    --text-color: #212837;
    --text-light: #4d6593;
    --bg-light: #ebeef4;
    --bg-dark: #212837;    
    --bg-gradient: linear-gradient(135deg, #1f6bff 0%, #3e597d 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
}

/* Navbar */
.navbar-landing {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.navbar-landing.scrolled {
    background: var(--bg-light) !important;
    box-shadow: 0 2px 10px rgba(33,40,55,0.1);
}

.navbar-brand-landing {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link-landing {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.2s;
}

.nav-link-landing:hover {
    color: var(--primary-color) !important;
}

.btn-cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.btn-cta:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31,107,255,0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero */
.hero-section {
    background: var(--bg-gradient);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/img/bg/pink-suitcase.jpg');
    background-position: center;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #f3f3f3, transparent);
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(33,40,55,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--bg-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Pricing */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.pricing-card.featured::before {
    content: 'Consigliato';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-period {
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Video Section */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CTA Section */
.cta-section {
    background: var(--bg-gradient);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-cta-white {
    background: #ffffff;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 15px 40px;
}

.btn-cta-white:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

/* Override Bootstrap bg-light and section backgrounds */
.bg-light {
    background-color: #f3f3f3 !important;
}

.section:not(.bg-light) {
    background-color: var(--bg-light);
}

/* Footer */
.footer-landing {
    background: var(--bg-dark);
    color: #a8b6d1;
    padding: 60px 0 30px;
}

.footer-landing a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-landing a:hover {
    color: white;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.footer-links h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-section {
        padding: 80px 0 60px;
    }
    .section {
        padding: 50px 0;
    }
}