/* =====================================================
   TEAM PERSONAL TRAINER - CSS COMPLETAMENTE OTTIMIZZATO
   Mobile-First | UX/UI Migliorata | Loghi Trasparenti
===================================================== */

/* Reset e Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

html {
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   NAVBAR - DESKTOP
===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logos img {
    height: 55px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    background: transparent;
    border: none;
}

/* Logo ASD nella navbar - sfondo bianco per visibilità */
.nav-logos .logo-asd {
    background: rgba(255,255,255,0.98);
    border-radius: 8px;
    padding: 5px 8px;
}

.nav-logos .logo-asd {
    height: 50px;
    max-width: 160px;
    background: rgba(255,255,255,0.98);
    border-radius: 8px;
    padding: 5px 8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 12px 18px;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
    background: rgba(255,107,53,0.1);
}

.btn-cta-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-cta-nav:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* HAMBURGER MENU - NASCOSTO su desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 10px;
    z-index: 10001;
    width: 50px;
    height: 50px;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,53,0.95);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
}

.hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 35px;
    opacity: 0.95;
    text-align: center;
    line-height: 1.7;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #ff6b35;
    color: #fff;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

.btn-outline {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: #fff;
}

/* =====================================================
   SECTIONS
===================================================== */
.section {
    padding: 90px 0;
}

.section-light {
    background: #f8f9fa;
}

.section-dark {
    background: #1a1a2e;
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #1a1a2e;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
}

.section-dark .section-title {
    color: #fff;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}

/* =====================================================
   CARDS GRID
===================================================== */
.grid {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon i {
    font-size: 28px;
    color: #fff;
}

.card h3 {
    font-size: 1.35rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 700;
}

.card p {
    color: #666;
    font-size: 1rem;
    text-align: center;
    line-height: 1.7;
}

/* =====================================================
   TEAM SECTION
===================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.team-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 8px;
    text-align: center;
}

.team-role {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: center;
}

.team-bio {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.7;
}

/* =====================================================
   REVIEWS SECTION
===================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
}

.review-name {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 1.05rem;
}

.review-date {
    font-size: 0.85rem;
    color: #888;
}

.review-stars {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.review-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =====================================================
   CONTACT SECTION
===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-icon i {
    font-size: 32px;
    color: #fff;
}

.contact-card h3 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-card p,
.contact-card a {
    color: #666;
    font-size: 1rem;
}

.contact-card a:hover {
    color: #ff6b35;
}

/* =====================================================
   WHATSAPP CTA SECTION
===================================================== */
.whatsapp-section {
    background: linear-gradient(135deg, #25d366, #128c7e);
    padding: 70px 0;
    text-align: center;
}

.whatsapp-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.whatsapp-section p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1rem;
}

.btn-whatsapp-big {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 45px;
    background: #fff;
    color: #128c7e;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.15rem;
    transition: all 0.3s;
}

.btn-whatsapp-big:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* =====================================================
   FOOTER - LOGHI TRASPARENTI
===================================================== */
.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 70px 0 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* LOGHI FOOTER - CON SFONDO PER VISIBILITÀ */
.footer-logos img {
    height: 75px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 10px 15px;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    margin: 0 !important;
    mix-blend-mode: normal !important;
    filter: none !important;
    transition: all 0.3s;
}

.footer-logos img:hover {
    filter: drop-shadow(0 4px 12px rgba(255,107,53,0.4)) !important;
    transform: scale(1.05);
}

.footer-logos .logo-secondary {
    height: 65px;
    max-width: 180px;
}

.footer-text {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-slogan {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1rem;
}

.footer h4 {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

.footer-contact i {
    color: #ff6b35;
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.75);
}

.footer-contact a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* =====================================================
   WHATSAPP FLOAT
===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 6px 30px rgba(37,211,102,0.45);
    z-index: 9998;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37,211,102,0.55);
}

/* =====================================================
   PAGE HEADER
===================================================== */
.page-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 150px 0 70px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 15px;
    text-align: center;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* =====================================================
   RESPONSIVE - TABLET (max 992px)
===================================================== */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* =====================================================
   RESPONSIVE - MOBILE (max 768px) - COMPLETAMENTE RIFATTO
===================================================== */
@media (max-width: 768px) {
    /* ===== BASE ===== */
    body {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* ===== NAVBAR MOBILE ===== */
    .navbar {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    /* LOGHI NAVBAR - PIU GRANDI E VISIBILI */
    .nav-logos {
        gap: 10px;
        flex-shrink: 0;
    }
    
    .nav-logos img {
        height: 44px !important;
        max-width: 120px !important;
        width: auto !important;
    }
    
    .nav-logos .logo-asd {
        height: 40px !important;
        max-width: 100px !important;
        padding: 4px 6px !important;
        border-radius: 6px !important;
        background: rgba(255,255,255,0.98) !important;
    }
    
    /* HAMBURGER - SEMPRE VISIBILE E BEN DEFINITO */
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 46px;
        height: 46px;
        background: #f5f5f5;
        border: 2px solid #ddd;
        border-radius: 10px;
        cursor: pointer;
        flex-shrink: 0;
    }
    
    .nav-toggle span {
        display: block;
        width: 22px;
        height: 3px;
        background: #333;
        border-radius: 2px;
    }
    
    /* MENU - FULLSCREEN */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 100px 30px 50px;
        display: none;
        z-index: 9998;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-link {
        width: 100%;
        padding: 22px 20px;
        text-align: center;
        font-size: 20px;
        font-weight: 700;
        border-bottom: 1px solid #eee;
        color: #1a1a2e;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #ff6b35;
        background: rgba(255,107,53,0.08);
    }
    
    .btn-cta-nav {
        display: none;
    }
    
    /* ===== HERO MOBILE ===== */
    .hero {
        min-height: 100vh;
        padding: 90px 0 50px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1.05rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 18px;
        margin-bottom: 20px;
    }
    
    /* ===== BUTTONS MOBILE ===== */
    .btn {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
        margin: 8px auto;
    }
    
    .btn-whatsapp-big {
        padding: 18px 35px;
        font-size: 1.05rem;
    }
    
    /* ===== SECTIONS MOBILE ===== */
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 8px 18px;
    }
    
    .section-title {
        font-size: 1.9rem;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* ===== GRIDS - 1 COLONNA ===== */
    .grid-3,
    .grid-2,
    .reviews-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* ===== CARDS MOBILE ===== */
    .card {
        padding: 30px 25px;
        border-radius: 18px;
    }
    
    .card-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }
    
    .card h3 {
        font-size: 1.25rem;
    }
    
    .card p {
        font-size: 0.95rem;
    }
    
    /* ===== TEAM MOBILE ===== */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }
    
    .team-photo {
        height: 350px;
        object-position: center top;
    }
    
    .team-info {
        padding: 25px 20px;
    }
    
    .team-name {
        font-size: 1.7rem;
    }
    
    .team-role {
        font-size: 0.85rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .team-bio {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .team-card {
        width: 100%;
        max-width: 100%;
    }
    
    /* ===== REVIEWS MOBILE ===== */
    .review-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .review-avatar {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.1rem;
    }
    
    .review-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    /* ===== WHATSAPP SECTION MOBILE ===== */
    .whatsapp-section {
        padding: 55px 20px;
    }
    
    .whatsapp-section h2 {
        font-size: 1.9rem;
    }
    
    .whatsapp-section p {
        font-size: 1rem;
    }
    
    /* ===== FOOTER MOBILE ===== */
    .footer {
        padding: 55px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logos {
        justify-content: center;
        gap: 20px;
        flex-direction: row;
    }
    
    .footer-logos img {
        height: 65px !important;
        max-width: 170px !important;
        padding: 8px 12px !important;
        border-radius: 10px !important;
    }
    
    .footer-logos .logo-secondary {
        height: 60px !important;
    }
    
    .footer h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-text,
    .footer-slogan {
        text-align: center;
    }
    
    /* ===== PAGE HEADER MOBILE ===== */
    .page-header {
        padding: 120px 20px 55px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    /* ===== WHATSAPP FLOAT MOBILE ===== */
    .whatsapp-float {
        width: 58px;
        height: 58px;
        font-size: 28px;
        bottom: 20px;
        right: 18px;
    }
}

/* =====================================================
   EXTRA SMALL (max 480px)
===================================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-logos img {
        height: 40px !important;
        max-width: 110px !important;
    }
    
    .nav-logos .logo-asd {
        height: 36px !important;
        max-width: 95px !important;
        padding: 3px 5px !important;
        border-radius: 5px !important;
    }
    
    .hero h1 {
        font-size: 1.85rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.65rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .card {
        padding: 25px 20px;
    }
    
    .team-photo {
        height: 300px;
        object-position: center top;
    }
    
    .footer-logos img {
        height: 55px !important;
        max-width: 150px !important;
        padding: 6px 10px !important;
    }
    
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}

/* =====================================================
   UTILITY CLASSES
===================================================== */
.text-center {
    text-align: center !important;
}

.text-white {
    color: #fff;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

/* =====================================================
   ASD PAGE STYLES - COMPLETAMENTE OTTIMIZZATO
===================================================== */

/* ASD Hero */
.asd-hero-clear {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 130px 0 70px;
    color: #fff;
}

.asd-hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.asd-logo-box {
    flex-shrink: 0;
}

.asd-logo-box img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3));
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    padding: 10px;
}

.asd-hero-info h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 12px;
}

.hero-location {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 25px;
}

.hero-location i {
    color: #ff6b35;
    margin-right: 10px;
}

.hero-badges-clear {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.badge-clear {
    background: rgba(255,107,53,0.25);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,107,53,0.4);
}

.badge-clear i {
    color: #ff6b35;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* ASD About Section */
.asd-about-optimized {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-intro-opt {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro-opt h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-top: 18px;
    line-height: 1.2;
}

.section-subtitle-opt {
    color: #666;
    font-size: 1.1rem;
    margin-top: 12px;
}

.lead-text-opt {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.highlight-item {
    background: #fff;
    padding: 28px 22px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.highlight-item i {
    font-size: 1.6rem;
    color: #ff6b35;
    margin-top: 4px;
}

.highlight-item strong {
    display: block;
    color: #1a1a2e;
    margin-bottom: 5px;
    font-size: 1rem;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* What We Do Section */
.asd-what-we-do-opt {
    padding: 80px 0;
    background: #fff;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.what-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 22px;
    text-align: center;
}

.what-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.what-icon i {
    font-size: 32px;
    color: #fff;
}

.what-card h3 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 18px;
    font-weight: 700;
}

.what-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.what-list {
    text-align: left;
    padding-left: 25px;
}

.what-list li {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 10px;
    position: relative;
}

.what-list li::before {
    content: '✓';
    color: #25d366;
    font-weight: bold;
    position: absolute;
    left: -22px;
}

/* Who Can Join */
.asd-who-can-join {
    padding: 80px 0;
    background: #f8f9fa;
}

.who-can-join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.who-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.who-card i {
    font-size: 2.8rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.who-card h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 700;
}

.who-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* President Section */
.asd-intro-simple {
    padding: 80px 0;
    background: #fff;
}

.president-section {
    max-width: 850px;
    margin: 50px auto 0;
}

.president-card {
    display: flex;
    align-items: center;
    gap: 45px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 25px;
}

.president-photo {
    flex-shrink: 0;
}

.president-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.president-badge {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.president-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.president-title {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 18px;
}

.president-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

/* Facilities */
.asd-facilities {
    padding: 80px 0;
    background: #f8f9fa;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.facility-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.facility-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.facility-info {
    background: #fff;
    padding: 25px;
    text-align: center;
}

.facility-info h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-weight: 700;
}

.facility-info h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.facility-info p {
    font-size: 0.95rem;
    color: #666;
}

/* Affiliations */
.asd-affiliations-simple {
    padding: 80px 0;
    background: #fff;
}

.affiliations-simple-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.affiliation-simple-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
}

.affiliation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.affiliation-icon i {
    font-size: 32px;
    color: #fff;
}

.affiliation-simple-card h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-weight: 700;
}

.affiliation-name {
    color: #ff6b35;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.affiliation-simple-card p:last-child {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

/* Join Form */
.asd-join-simple {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.asd-join-simple .section-title,
.asd-join-simple .section-subtitle {
    color: #fff;
}

.join-form {
    max-width: 650px;
    margin: 50px auto 0;
    background: #fff;
    padding: 45px;
    border-radius: 25px;
}

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

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-actions {
    text-align: center;
    margin-top: 25px;
}

.form-note {
    margin-top: 18px;
    color: #666;
    font-size: 0.95rem;
}

.link-wa {
    color: #25d366;
    font-weight: 700;
}

.link-wa:hover {
    text-decoration: underline;
}

/* Footer Extra Styles */
.footer-col {
    text-align: left;
}

.footer-brand-text {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #ff6b35;
}

.footer-legal {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 18px;
}

.footer-legal a {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: #ff6b35;
}

/* =====================================================
   ASD PAGE - MOBILE RESPONSIVE COMPLETAMENTE RIFATTO
===================================================== */
@media (max-width: 768px) {
    /* ASD Hero Mobile */
    .asd-hero-clear {
        padding: 100px 20px 50px;
    }
    
    .asd-hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .asd-logo-box {
        display: flex;
        justify-content: center;
    }
    
    .asd-logo-box img {
        width: 120px !important;
        max-width: 120px !important;
        padding: 8px !important;
    }
    
    .asd-hero-info {
        text-align: center;
    }
    
    .asd-hero-info h1 {
        font-size: 1.9rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-location {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .hero-badges-clear {
        justify-content: center;
        gap: 10px;
    }
    
    .badge-clear {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    /* ASD About Mobile */
    .asd-about-optimized {
        padding: 60px 0;
    }
    
    .section-intro-opt h2 {
        font-size: 1.9rem;
    }
    
    .lead-text-opt {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlight-item {
        padding: 22px 18px;
    }
    
    /* What We Do Mobile */
    .asd-what-we-do-opt {
        padding: 60px 0;
    }
    
    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .what-card {
        padding: 30px 25px;
    }
    
    .what-icon {
        width: 70px;
        height: 70px;
    }
    
    .what-card h3 {
        font-size: 1.25rem;
    }
    
    /* Who Can Join Mobile */
    .asd-who-can-join {
        padding: 60px 0;
    }
    
    .who-can-join-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 35px;
    }
    
    .who-card {
        padding: 28px 22px;
    }
    
    .who-card i {
        font-size: 2.3rem;
    }
    
    .who-card h3 {
        font-size: 1.1rem;
    }
    
    /* President Mobile */
    .asd-intro-simple {
        padding: 60px 0;
    }
    
    .president-section {
        margin: 35px 15px 0;
    }
    
    .president-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 22px;
        gap: 25px;
    }
    
    .president-photo img {
        width: 160px !important;
        height: 160px !important;
        margin: 0 auto;
        object-position: center 15%;
    }
    
    .president-info h3 {
        font-size: 1.7rem;
    }
    
    .president-description {
        font-size: 0.95rem;
    }
    
    /* Facilities Mobile */
    .asd-facilities {
        padding: 60px 0;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 35px;
    }
    
    .facility-card img {
        height: 200px;
    }
    
    .facility-info {
        padding: 20px;
    }
    
    /* Affiliations Mobile */
    .asd-affiliations-simple {
        padding: 60px 0;
    }
    
    .affiliations-simple-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 35px;
    }
    
    .affiliation-simple-card {
        padding: 30px 25px;
    }
    
    /* Join Form Mobile */
    .asd-join-simple {
        padding: 60px 0;
    }
    
    .join-form {
        padding: 30px 22px;
        margin: 35px 15px 0;
        border-radius: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Previene zoom iOS */
    }
    
    /* Footer Mobile */
    .footer-col {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .asd-logo-box img {
        width: 100px !important;
        padding: 6px !important;
    }
    
    .asd-hero-info h1 {
        font-size: 1.6rem;
    }
    
    .badge-clear {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .section-intro-opt h2 {
        font-size: 1.65rem;
    }
    
    .president-photo img {
        width: 140px !important;
        height: 140px !important;
        object-position: center 15%;
    }
}
