/* ==================== RESET & GENERAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.logo-icon {
    font-size: 2.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav a:hover,
nav a.active {
    color: #fbbf24;
    background: rgba(255, 255, 255, 0.1);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin: 0.5rem 0 1.5rem 0;
}

/* ==================== BUTTONS ==================== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.cta-button-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: all 0.3s;
}

.cta-button-outline:hover {
    background: white;
    color: #1e3c72;
}

.btn-link {
    color: #7e22ce;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-link:hover {
    color: #5b21b6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(135deg, #1e3c72, #7e22ce);
    color: white;
    padding: 4rem 2rem 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ==================== SECTIONS ==================== */
section {
    padding: 4rem 0;
}

section.alt {
    background: #f8fafc;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1e3c72;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #7e22ce);
    border-radius: 2px;
}

.lead-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: #64748b;
}

/* ==================== HOME PAGE STYLES ==================== */
.intro {
    background: #f8fafc;
}

.featured-services {
    padding: 4rem 0;
}

.amazon-section {
    background: #f8fafc;
}

.why-us {
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

/* ==================== SERVICE CARDS ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
}

.service-card:nth-child(1) { border-top-color: #3b82f6; }
.service-card:nth-child(2) { border-top-color: #8b5cf6; }
.service-card:nth-child(3) { border-top-color: #ec4899; }
.service-card:nth-child(4) { border-top-color: #f59e0b; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

/* ==================== INFO BOX ==================== */
.info-box {
    background: linear-gradient(135deg, #1e3c72, #7e22ce);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.info-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ==================== CHI SIAMO PAGE ==================== */
.our-story {
    padding: 4rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.experience-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7e22ce, #5b21b6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(126, 34, 206, 0.3);
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #1e3c72, #7e22ce);
    width: 400px;
    height: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.icon-large {
    font-size: 8rem;
    margin-bottom: 1rem;
}

.our-team {
    background: #f8fafc;
    padding: 4rem 0;
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.team-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.team-card h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.role {
    color: #7e22ce;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.description {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.badge {
    background: #e0e7ff;
    color: #5b21b6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.our-values {
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.what-makes-us-different {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.difference-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.diff-number {
    font-size: 3rem;
    font-weight: bold;
    color: #7e22ce;
    min-width: 80px;
}

.diff-content h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.reviews-section {
    padding: 4rem 0;
    text-align: center;
}

.rating-summary {
    margin: 2rem 0;
}

.rating-number {
    font-size: 4rem;
    font-weight: bold;
    color: #7e22ce;
}

.rating-stars {
    font-size: 2rem;
    color: #fbbf24;
    margin: 0.5rem 0;
}

.reviews-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ==================== SERVIZI PAGE ==================== */
.service-detail {
    padding: 4rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.service-detail-grid.reverse {
    grid-template-columns: 1fr 300px;
}

.service-detail-icon {
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #7e22ce, #5b21b6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    box-shadow: 0 8px 30px rgba(126, 34, 206, 0.3);
}

.service-detail-content h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.service-detail-content h2::after {
    left: 0;
    transform: none;
}

.lead {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 30px;
}

.feature-item strong {
    color: #1e3c72;
    display: block;
    margin-bottom: 0.3rem;
}

.brands-section {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.brand-badge {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.brand-icon {
    font-size: 1.5rem;
}

.amazon-pickup {
    background: #f8fafc;
    padding: 4rem 0;
}

.info-box-large {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.amazon-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.amazon-icon {
    font-size: 5rem;
    min-width: 80px;
}

.amazon-benefits {
    list-style: none;
    margin-top: 1rem;
}

.amazon-benefits li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.why-choose {
    padding: 4rem 0;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

/* ==================== CONTATTI PAGE ==================== */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.distance {
    color: #64748b;
    font-size: 0.95rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.phone-number a {
    color: #7e22ce;
    text-decoration: none;
}

.phone-number a:hover {
    text-decoration: underline;
}

.contact-list {
    list-style: none;
    padding-left: 0;
    color: #64748b;
}

.contact-list li::before {
    content: "• ";
    color: #7e22ce;
    font-weight: bold;
    margin-right: 0.5rem;
}

.rating-display {
    margin: 1rem 0;
}

.stars {
    font-size: 1.5rem;
    color: #fbbf24;
}

.rating-score {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1e3c72;
    margin: 0.5rem 0;
}

.hours-section {
    position: sticky;
    top: 100px;
}

.hours-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.hours-card h3 {
    background: linear-gradient(135deg, #1e3c72, #7e22ce);
    color: white;
    padding: 1.5rem;
    margin: 0;
}

.hours-list {
    padding: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #1e3c72;
}

.hours {
    text-align: right;
    color: #64748b;
    line-height: 1.5;
}

.hours-row.closed .hours {
    color: #dc2626;
    font-weight: 600;
}

.hours-note {
    background: #fef3c7;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
}

.hours-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #92400e;
}

.map-section {
    background: #f8fafc;
    padding: 4rem 0;
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.directions-info {
    margin-top: 3rem;
}

.directions-info h3 {
    color: #1e3c72;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.direction-item {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.direction-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.faq-contact {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.emergency-cta {
    background: #f8fafc;
    padding: 3rem 0;
}

.emergency-box {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
}

.emergency-icon {
    font-size: 5rem;
    min-width: 80px;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

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

.emergency-content h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.emergency-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ==================== CTA SECTIONS ==================== */
.cta-section {
    background: linear-gradient(135deg, #1e3c72, #7e22ce);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section h2::after {
    background: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ==================== FOOTER ==================== */
footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-col p {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fbbf24;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .story-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
    }

    .icon-circle {
        width: 200px;
        height: 200px;
        font-size: 6rem;
    }

    .image-placeholder {
        width: 300px;
        height: 300px;
    }

    .icon-large {
        font-size: 6rem;
    }

    .amazon-content {
        flex-direction: column;
    }

    .emergency-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .services-grid,
    .benefits-grid,
    .values-grid,
    .faq-grid,
    .directions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}