/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #932926;
    --dark-red: #7A1F1D;
    --shadow-red: #590200;
    --light-bg: #f0f0f0;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #555555;
    --bg-main: #f0f0f0;
}

body {
    font-family: 'Helvetica World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    background: #f0f0f0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f0f0f0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease;
    border-bottom: 1px solid #932926;
}

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

.logo img {
    height: 100px;
    width: auto;
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-red);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    min-height: 100vh;
    background: url('img/pennise home.png') center center / cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero .hero-title,
.hero .hero-subtitle {
    color: #fff;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
}

/* Hero Centered Layout */
.hero-content.hero-centered {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 0;
}

.hero-center {
    max-width: 800px;
}

.hero-centered .hero-title {
    margin-bottom: 30px;
}

.hero-centered .hero-subtitle {
    font-size: 1.5rem;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.4;
    color: var(--gray);
    font-weight: 300;
}

.youtube-box {
    background: var(--white);
    border: 3px solid var(--primary-red);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 560px;
}

.youtube-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.youtube-logo {
    width: 100%;
    max-width: 400px;
}

/* Scrolling Text */
.scroll-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 0;
    white-space: nowrap;
}

.scroll-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Zoom Image Section */
.zoom-image-section {
    padding: 80px 0;
    background: transparent;
    overflow: hidden;
}

.zoom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.zoom-image {
    width: 60%;
    height: auto;
    display: block;
    border-radius: 10px;
    will-change: transform;
}

/* Image Section */
.image-section {
    padding: 80px 0;
    background: transparent;
}

.office-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: transparent;
    border-bottom: 3px solid var(--primary-red);
}

.mission-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: center;
}

.mission-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.mission-left p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-arrow {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 18px 35px;
    font-size: 1.05rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: visible;
    box-shadow: 0 6px 0 #590200, 0 8px 15px rgba(89, 2, 0, 0.4);
}

.btn-arrow span {
    white-space: nowrap;
}

.arrow-icon {
    width: 195px;
    height: 52px;
    transition: transform 0.4s ease;
}

.btn-arrow:hover {
    background: var(--dark-red);
    transform: translateY(3px);
    box-shadow: 0 3px 0 #590200, 0 5px 10px rgba(89, 2, 0, 0.4);
}

.btn-arrow:hover .arrow-icon {
    transform: translateX(10px);
}

.btn-arrow:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #590200, 0 2px 5px rgba(89, 2, 0, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1.05rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: lowercase;
    box-shadow: 0 6px 0 #590200, 0 8px 15px rgba(89, 2, 0, 0.4);
    position: relative;
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(3px);
    box-shadow: 0 3px 0 #590200, 0 5px 10px rgba(89, 2, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #590200, 0 2px 5px rgba(89, 2, 0, 0.3);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: transparent;
}

.services-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 900px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
    column-gap: 20px;
    margin-top: 60px;
    align-items: center;
}

/* New Service Cards - 2 columns */
.services-grid.services-grid-2cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 60px auto 0;
}

.service-card {
    background: var(--primary-red);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    box-shadow: 0 6px 0 #590200, 0 8px 20px rgba(89, 2, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 0 #590200, 0 16px 30px rgba(89, 2, 0, 0.4);
    background: var(--dark-red);
}

.service-card-icon img {
    filter: brightness(0) invert(1);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.4s ease;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: var(--white);
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-svg {
    width: 100%;
    height: 100%;
    max-width: 350px;
    max-height: 350px;
    transition: all 0.4s ease;
    overflow: visible;
}

.svg-text {
    font-size: 1.1rem;
    font-weight: 700;
    fill: var(--black);
    font-family: 'Helvetica World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: all 0.4s ease;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* RIMOSSO: hover CSS su service-item - gestito interamente da GSAP v4.0 */
/* .service-item:hover .service-svg - GSAP gestisce y, scale, strokeWidth */
/* .service-item:hover .svg-text - GSAP gestisce fill */
/* .service-item:hover .service-svg path - GSAP gestisce strokeWidth */

/* Prima riga: 3 elementi centrati */
.service-item:nth-child(1) {
    grid-column: 2 / 5;
}
.service-item:nth-child(2) {
    grid-column: 5 / 8;
}
.service-item:nth-child(3) {
    grid-column: 8 / 11;
}

/* Seconda riga: 4 elementi */
.service-item:nth-child(4) {
    grid-column: 1 / 4;
}
.service-item:nth-child(5) {
    grid-column: 4 / 7;
}
.service-item:nth-child(6) {
    grid-column: 7 / 10;
}
.service-item:nth-child(7) {
    grid-column: 10 / 13;
}

/* Success Stories Section */
.success-stories {
    padding: 120px 0;
    background: #922926;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.stories-bg-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-article {
    position: absolute;
    width: 350px;
    height: auto;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(30%);
}

.bg-article-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-8deg);
}

.bg-article-2 {
    top: 5%;
    right: 8%;
    transform: rotate(12deg);
}

.bg-article-3 {
    bottom: 15%;
    left: 15%;
    transform: rotate(5deg);
}

.bg-article-4 {
    bottom: 10%;
    right: 10%;
    transform: rotate(-10deg);
}

.bg-article-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
}

.stories-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #922926;
    opacity: 0.1;
    z-index: 2;
}

.stories-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 3;
}

.stories-number {
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
}

.stories-text {
    flex-grow: 1;
}

.stories-label {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border: none;
    padding: 15px 40px;
    font-size: 1.05rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 6px 0 #590200, 0 8px 15px rgba(89, 2, 0, 0.4);
    position: relative;
    text-decoration: none;
}

.btn-secondary span {
    white-space: nowrap;
}

.btn-secondary:hover {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #590200, 0 5px 10px rgba(89, 2, 0, 0.4);
}

.btn-secondary:hover .arrow-icon {
    transform: translateX(10px);
}

.btn-secondary:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #590200, 0 2px 5px rgba(89, 2, 0, 0.3);
}

/* Formation Section */
.formation {
    padding: 80px 0;
    background: transparent;
}

.section-title-large {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.3;
}

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

.formation-column {
    border: 2px solid #932926;
    display: flex;
    flex-direction: column;
}

.formation-item {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: var(--white);
    flex: 1;
}

.formation-item img {
    max-width: 80%;
    height: auto;
}

.formation-text-column {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.formation-text-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: transparent;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid var(--black);
    background: transparent;
    font-size: 1rem;
    font-family: 'Helvetica World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--black);
    transition: border-color 0.3s ease;
    width: 100%;
    transform: none !important;
    margin-left: 0 !important;
    left: auto !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-red);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1.05rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    align-self: flex-start;
    width: auto;
    box-shadow: 0 6px 0 #590200, 0 8px 15px rgba(89, 2, 0, 0.4);
    position: relative;
}

.btn-submit:hover {
    background: var(--dark-red);
    transform: translateY(3px);
    box-shadow: 0 3px 0 #590200, 0 5px 10px rgba(89, 2, 0, 0.4);
}

.btn-submit:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #590200, 0 2px 5px rgba(89, 2, 0, 0.3);
}

.contact-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Footer */
.footer {
    background: var(--primary-red);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-address {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.social-links a:hover svg {
    fill: #ffffff;
}

/* Responsive Design */

/* ===== SMALL DESKTOP / LAPTOP 13" (max 1440px) ===== */
@media (max-width: 1440px) {
    .container {
        padding: 0 60px;
    }

    .contact-wrapper {
        gap: 40px;
    }

    .hero-content {
        gap: 40px;
    }

    .mission-wrapper {
        gap: 40px;
    }
}

/* ===== TABLET (max 1024px) ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    .hero-content,
    .contact-wrapper,
    .mission-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-centered .hero-subtitle {
        font-size: 1.3rem;
    }

    .services-grid.services-grid-2cols {
        gap: 30px;
        max-width: 700px;
    }

    .service-card {
        padding: 40px 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        row-gap: 0;
    }

    .service-item:nth-child(1),
    .service-item:nth-child(2),
    .service-item:nth-child(3),
    .service-item:nth-child(4),
    .service-item:nth-child(5),
    .service-item:nth-child(6),
    .service-item:nth-child(7) {
        grid-column: span 1 !important;
    }

    .service-svg {
        max-width: 280px;
        max-height: 280px;
    }

    .svg-text {
        font-size: 1.2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zoom-image {
        width: 70%;
    }

    .mission-right {
        justify-content: flex-start;
    }

    .mission-left h2 {
        font-size: 2rem;
    }

    .contact-right {
        display: none;
    }
}

/* ===== MOBILE (max 768px) ===== */
@media (max-width: 768px) {
    /* Previeni overflow orizzontale */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Assicura che tutti gli elementi rispettino i limiti */
    img, video, iframe, svg {
        max-width: 100%;
        height: auto;
    }

    /* Hero */
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 70px;
    }

    .hero-content {
        padding: 40px 0 60px 0;
        gap: 30px;
    }

    .scroll-text {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-right {
        display: none;
    }

    .scroll-text {
        padding: 10px 0;
    }

    .scroll-content {
        font-size: 0.8rem;
    }

    /* Mission */
    .mission {
        padding: 60px 0;
    }

    .mission-wrapper {
        gap: 30px;
    }

    .mission-left h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .mission-left p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .btn-arrow {
        padding: 12px 20px;
        font-size: 0.85rem;
        gap: 10px;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 30px;
    }

    .arrow-icon {
        width: 80px;
        height: 25px;
    }

    /* Services */
    .services {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .services-description {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .services-grid.services-grid-2cols {
        grid-template-columns: 1fr !important;
        gap: 20px;
        max-width: 100%;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-card-icon {
        width: 60px;
        height: 60px;
    }

    .service-card-title {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        row-gap: 10px;
        margin-top: 30px;
    }

    .service-svg {
        max-width: 220px;
        max-height: 220px;
    }

    .svg-text {
        font-size: 1rem;
    }

    /* Success Stories */
    .success-stories {
        padding: 60px 0;
        min-height: auto;
    }

    .stories-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .stories-number {
        font-size: 4rem;
    }

    .stories-text {
        margin-bottom: 10px;
    }

    .stories-label {
        font-size: 1.4rem;
    }

    .btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
        gap: 10px;
    }

    .btn-secondary .arrow-icon {
        width: 80px;
        height: 25px;
    }

    .bg-article {
        width: 100px;
        opacity: 0.15;
    }

    .bg-article-1 {
        top: 5%;
        left: 2%;
    }

    .bg-article-2 {
        top: 5%;
        right: 2%;
    }

    .bg-article-3,
    .bg-article-4,
    .bg-article-5 {
        display: none;
    }

    /* Formation */
    .formation {
        padding: 60px 0;
    }

    .section-title-large {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .formation-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .formation-column {
        border: 2px solid #932926;
        border-bottom: none;
    }

    .formation-column:last-child {
        border-bottom: 2px solid #932926;
    }

    .formation-item {
        padding: 30px 20px;
        min-height: 150px;
        border-bottom: 1px solid rgba(147, 41, 38, 0.3);
    }

    .formation-item:last-child {
        border-bottom: none;
    }

    .formation-text-column {
        padding: 30px 20px;
        order: -1;
    }

    .formation-text-column p {
        font-size: 0.95rem;
    }

    /* Contact */
    .contact {
        padding: 60px 0;
    }

    .contact-wrapper {
        gap: 30px;
    }

    .contact-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .contact-left {
        width: 100%;
        max-width: 100%;
    }

    .contact-form {
        gap: 15px;
        width: 100%;
        max-width: 100%;
        align-items: stretch;
        padding: 0;
        margin: 0;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        padding: 15px 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0 !important;
        transform: none !important;
        left: 0 !important;
        position: relative;
    }

    .btn-submit {
        padding: 12px 30px;
        font-size: 0.95rem;
        margin: 0 0 30px 0 !important;
        width: 100%;
        box-sizing: border-box;
        transform: none !important;
    }

    .contact-right {
        display: none;
    }

    /* Zoom Image */
    .zoom-image-section {
        padding: 40px 0;
    }

    .zoom-image {
        width: 90%;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-logo {
        height: 45px;
    }

    .footer-address {
        font-size: 0.85rem;
    }

    .footer h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer ul li {
        margin-bottom: 8px;
    }

    .footer a {
        font-size: 0.9rem;
    }

    .social-links {
        margin-top: 15px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }
}

/* ===== SMALL MOBILE (max 480px) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .mission-left h2 {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title-large {
        font-size: 1.3rem;
    }

    .stories-number {
        font-size: 3rem;
    }

    .stories-label {
        font-size: 1.2rem;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .btn-arrow {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .arrow-icon {
        width: 80px;
        height: 25px;
    }

    .service-svg {
        max-width: 180px;
        max-height: 180px;
    }

    .svg-text {
        font-size: 0.85rem;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

/* Pulse animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}