/* ===== BASE STYLES ===== */
:root {
    --primary-color: #e91e63;
    --primary-dark: #ad1457;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #00bcd4;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #3f51b5 100%);
    --gradient-secondary: linear-gradient(135deg, #00bcd4 0%, #009688 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #40407a 100%);
    --box-shadow: 0 0.5rem 1rem rgba(233, 30, 99, 0.15);
    --box-shadow-lg: 0 1rem 3rem rgba(233, 30, 99, 0.175);
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    scroll-behavior: smooth;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    margin: 0 0.5rem;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

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

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-stats {
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    overflow: visible;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    animation: float 3s ease-in-out infinite;
}

/* ===== HERO BACKGROUND EFFECTS ===== */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

/* ===== FEATURES LIST ===== */
.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.feature-item i {
    font-size: 2rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.feature-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #e9ecef;
}

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

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

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

.service-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* ===== INNOVATION SECTION ===== */
.innovation-features {
    margin-top: 2rem;
}

.innovation-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.innovation-feature i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    color: var(--white);
}

.innovation-feature h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.innovation-feature p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* ===== CONSULTATION FORM ===== */
.consultation-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
}

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

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

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

/* ===== CONTACT ITEMS ===== */
.contact-item {
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.contact-item a {
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-dark);
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-color) !important;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color) !important;
}

/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--box-shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-lg);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(233, 30, 99, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .innovation-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .innovation-feature i {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero-content {
        padding-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .consultation-form {
        padding: 2rem;
    }
    
    .feature-item,
    .innovation-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i,
    .innovation-feature i {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 5rem 0 3rem;
    }
    
    .hero-content {
        padding-top: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .consultation-form {
        padding: 1.5rem;
    }
    
    .service-card,
    .feature-item,
    .innovation-feature {
        padding: 1.5rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== UTILITIES ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.shadow-lg {
    box-shadow: var(--box-shadow-lg) !important;
}

.border-radius {
    border-radius: var(--border-radius) !important;
}

/* ===== PRIVACY POLICY PAGE ===== */
.privacy-content {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
    margin-bottom: 2rem;
}

.privacy-content .section-block {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.privacy-content .section-block:last-of-type {
    border-bottom: none;
}

.privacy-content .section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.privacy-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-content ul li {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.privacy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.privacy-content .alert {
    border-radius: var(--border-radius);
    border: none;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 1.5rem;
    }
}

/* ===== COOKIE CONSENT CUSTOMIZATION ===== */
/* Customize TermsFeed Cookie Consent to match Creative SRL branding */

/* Main banner container */
.termsfeed-com---nb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
}

/* Banner text */
.termsfeed-com---nb .cc-nb-title {
    color: white !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
}

.termsfeed-com---nb .cc-nb-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

/* Accept button */
.termsfeed-com---nb .cc-nb-okagree {
    background: white !important;
    color: var(--primary-color) !important;
    border: 2px solid white !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', sans-serif !important;
}

.termsfeed-com---nb .cc-nb-okagree:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* Reject button */
.termsfeed-com---nb .cc-nb-reject {
    background: transparent !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', sans-serif !important;
}

.termsfeed-com---nb .cc-nb-reject:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: white !important;
    transform: translateY(-1px) !important;
}

/* Settings/Preferences button */
.termsfeed-com---nb .cc-nb-changep {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', sans-serif !important;
}

.termsfeed-com---nb .cc-nb-changep:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

/* Preferences Center */
.cc-preferences-center {
    font-family: 'Inter', sans-serif !important;
}

.cc-preferences-center .cc-pc-head {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
}

.cc-preferences-center .cc-pc-head h2 {
    color: white !important;
    font-weight: 600 !important;
}

.cc-preferences-center .cc-pc-save {
    background: var(--primary-color) !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
}

.cc-preferences-center .cc-pc-save:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-1px) !important;
}

.cc-preferences-center .cc-pc-close {
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
}

.cc-preferences-center .cc-pc-close:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

/* Toggle switches */
.cc-preferences-center .cc-toggle {
    accent-color: var(--primary-color) !important;
}

.cc-preferences-center .cc-toggle:checked {
    background-color: var(--primary-color) !important;
}

/* ===== CONTACT ACTION CARDS ===== */
.contact-actions {
    max-width: 800px;
    margin: 0 auto;
}

.contact-action-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.contact-action-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.whatsapp-bg {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.phone-bg {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.contact-action-card:hover .contact-action-icon {
    transform: scale(1.1);
}

.contact-action-card h4 {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-action-card p {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-action-card .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-action-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-action-card .btn-success {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
}

.contact-action-card .btn-success:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
}

@media (max-width: 768px) {
    .contact-action-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-action-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-action-card h4 {
        font-size: 1.25rem;
    }
    
    .contact-action-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .termsfeed-com---nb {
        margin: 10px !important;
        border-radius: 12px !important;
    }
    
    .termsfeed-com---nb .cc-nb-okagree,
    .termsfeed-com---nb .cc-nb-reject {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
}
