/* ============================================
   ORION — Modern Event Company Website
   ============================================ */

:root {
    --color-dark: #111111;
    --color-dark-soft: #1a1a1a;
    --color-dark-card: #222222;
    --color-light: #f5f4f0;
    --color-light-soft: #eeedea;
    --color-white: #faf9f6;
    --color-gray-100: #f5f4f0;
    --color-gray-200: #e3e3e3;
    --color-gray-300: #d4d4d4;
    --color-gray-400: #a3a3a3;
    --color-gray-500: #737373;
    --color-gray-600: #3f3f3f;
    --color-gray-700: #3f3f3f;
    --color-gray-800: #262626;
    --color-accent: #F6A642;
    --color-accent-light: #f8b85e;
    --color-accent-dark: #e0932e;

    --font-sans: 'Acumin Pro', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--color-dark);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.portfolio,
.about,
.testimonials,
.contact {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

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

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

/* ---- Section Helpers ---- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-dark);
    max-width: 700px;
}

.section-title em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-accent-dark);
}

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

.section-header .section-title {
    margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    text-decoration: none;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-dark);
}

.btn--primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 164, 94, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
    border-color: var(--color-white);
    background: rgba(255,255,255,0.1);
}

.btn--large {
    padding: 18px 44px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-expo);
}

.nav--scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 70px;
    width: auto;
    transition: opacity 0.3s;
}

.nav__logo-img:hover {
    opacity: 0.85;
}

.footer__logo-img {
    height: 48px;
    width: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
    letter-spacing: 0.01em;
}

.nav__link:hover {
    color: var(--color-white);
}

.nav__link--cta {
    background: var(--color-accent);
    color: var(--color-dark) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
}

.nav__link--cta:hover {
    background: var(--color-accent-light);
}

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

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s;
    border-radius: 2px;
}

.nav__toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav__overlay.is-visible {
    display: block;
    opacity: 1;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg-video,
.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,10,10,0.85) 0%,
        rgba(10,10,10,0.6) 50%,
        rgba(10,10,10,0.4) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 120px;
}

.hero__tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.hero__title {
    font-family: var(--font-sans);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.5s forwards;
}

.hero__title-accent {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.7s forwards;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.9s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out-expo) 1.2s forwards;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ---- Stats ---- */
.stats {
    background: var(--color-dark);
    padding: 48px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stats__item {
    text-align: center;
}

.stats__number {
    display: block;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 4px;
}

.stats__number::before {
    content: '+';
}

.stats__label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

.stats__divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.1);
}

/* ---- Services ---- */
.services {
    padding: 120px 0;
    background: var(--color-white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    display: block;
    padding: 36px 32px;
    border-radius: 16px;
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    transition: all 0.4s var(--ease-out-expo);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(200,164,94,0.1), rgba(200,164,94,0.05));
    color: var(--color-accent);
    margin-bottom: 20px;
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
}

.service-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* ---- About ---- */
.about {
    padding: 120px 0;
    background: var(--color-gray-100);
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__text {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 40px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about__feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about__feature-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent);
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(200,164,94,0.1);
    flex-shrink: 0;
}

.about__feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.about__feature p {
    font-size: 0.88rem;
    color: var(--color-gray-500);
    line-height: 1.5;
}

.about__images {
    position: relative;
    height: 500px;
}

.about__img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img--1 {
    width: 65%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 1;
}

.about__img--2 {
    width: 55%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 4px solid var(--color-gray-100);
}

/* ---- Portfolio ---- */
.portfolio {
    padding: 120px 0;
    background: var(--color-white);
}

.portfolio__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio__item {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.portfolio__item--wide {
    grid-column: span 2;
}

.portfolio__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.portfolio__item:hover img {
    transform: scale(1.05);
}

.portfolio__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--color-white);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s var(--ease-out-expo);
}

.portfolio__item:hover .portfolio__caption {
    transform: translateY(0);
    opacity: 1;
}

.portfolio__type {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.portfolio__caption h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.portfolio__caption p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
}

/* ---- Testimonials ---- */
.testimonials {
    padding: 120px 0;
    background: var(--color-gray-100);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    border: 1px solid var(--color-gray-200);
    transition: all 0.4s var(--ease-out-expo);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.testimonial-card__quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 32px;
}

.testimonial-card__text {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

/* ---- Sponsors Carousel ---- */
.sponsors {
    padding: 60px 0;
    background: var(--color-dark);
    overflow: hidden;
}

.sponsors__title {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 32px;
}

.sponsors__track {
    display: flex;
    width: max-content;
    animation: sponsorScroll 30s linear infinite;
}

.sponsors__slide {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
}

.sponsors__slide img {
    height: 130px;
    width: auto;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.sponsors__slide img:hover {
    opacity: 1;
}

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

/* ---- CTA Section ---- */
.cta {
    position: relative;
    padding: 160px 0;
    text-align: center;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
}

.cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.8);
}

.cta__content {
    position: relative;
    z-index: 2;
}

.cta__content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta__content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}

/* ---- Contact ---- */
.contact {
    padding: 120px 0;
    background: var(--color-white);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__text {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 32px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-gray-600);
    transition: color 0.3s;
}

.contact__detail:hover {
    color: var(--color-accent);
}

.contact__detail svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-accent);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    background: var(--color-gray-100);
    color: var(--color-dark);
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(200,164,94,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* ---- Footer ---- */
.footer {
    background: var(--color-dark);
    padding: 60px 0 32px;
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    margin-top: 8px;
    max-width: 300px;
}

.footer__links {
    display: flex;
    gap: 28px;
}

.footer__links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--color-white);
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    transition: all 0.3s;
}

.footer__social a:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.footer__social svg {
    width: 18px;
    height: 18px;
}

.footer__bottom {
    padding-top: 24px;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s var(--ease-out-expo);
}

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

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

/* ---- Animations ---- */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

[data-animate] {
    opacity: 1;
    transform: translateY(0);
}

.js-ready [data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.js-ready [data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .portfolio__item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* ---- Nav mobile ---- */
    .nav {
        padding: 12px 0;
    }

    .nav__toggle {
        display: flex;
        z-index: 1001;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--color-dark-soft);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right 0.4s var(--ease-out-expo);
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }

    .nav__menu.is-open {
        right: 0;
    }

    .nav__logo-img {
        height: 44px;
    }

    .nav__link {
        font-size: 1.1rem;
    }

    .nav__link--cta {
        text-align: center;
        display: block;
        margin-top: 8px;
    }

    /* ---- Hero mobile ---- */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero__content {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero__tag {
        font-size: 0.7rem;
        margin-bottom: 16px;
    }

    .hero__title {
        font-size: clamp(1.9rem, 8vw, 3.5rem);
    }

    .hero__subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .hero__scroll {
        display: none;
    }

    /* ---- Stats mobile ---- */
    .stats {
        padding: 32px 0;
    }

    .stats__grid {
        gap: 16px 32px;
    }

    .stats__divider {
        display: none;
    }

    .stats__item {
        min-width: 100px;
    }

    .stats__number {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .stats__label {
        font-size: 0.75rem;
    }

    /* ---- Services mobile ---- */
    .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 24px;
    }

    /* ---- About mobile ---- */
    .about__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__text {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .about__images {
        height: 300px;
    }

    /* ---- Portfolio mobile ---- */
    .portfolio__gallery {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 12px;
    }

    .portfolio__item {
        aspect-ratio: 16/10;
    }

    .portfolio__item--wide {
        grid-column: span 1;
    }

    .portfolio__caption {
        transform: translateY(0);
        opacity: 1;
        padding: 16px;
    }

    .portfolio__caption h3 {
        font-size: 0.95rem;
    }

    .portfolio__caption p {
        display: none;
    }

    /* ---- Testimonials mobile ---- */
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-card__quote {
        font-size: 2.5rem;
        top: 12px;
        right: 20px;
    }

    .testimonial-card__text {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    /* ---- CTA mobile ---- */
    .cta {
        padding: 80px 0;
    }

    .cta__content h2 {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .cta__content p {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    /* ---- Contact mobile ---- */
    .contact__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__text {
        font-size: 0.95rem;
    }

    /* ---- Sponsors mobile ---- */
    .sponsors {
        padding: 40px 0;
    }

    .sponsors__title {
        font-size: 0.7rem;
        margin-bottom: 24px;
    }

    .sponsors__slide {
        gap: 40px;
        padding: 0 20px;
    }

    .sponsors__slide img {
        height: 70px;
    }

    /* ---- Footer mobile ---- */
    .footer {
        padding: 40px 0 24px;
    }

    .footer__content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer__brand p {
        font-size: 0.82rem;
        max-width: 100%;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }

    .footer__links a {
        font-size: 0.8rem;
    }

    .footer__social a {
        width: 36px;
        height: 36px;
    }

    .footer__bottom p {
        font-size: 0.72rem;
    }

    /* ---- General mobile ---- */
    .container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .services,
    .about,
    .portfolio,
    .testimonials,
    .contact {
        padding: 64px 0;
    }

    /* ---- WhatsApp mobile ---- */
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 50px;
        height: 50px;
    }

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

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero__title {
        font-size: clamp(1.7rem, 7.5vw, 2.5rem);
    }

    .about__images {
        height: 240px;
    }

    .about__img--1 {
        width: 70%;
        height: 75%;
    }

    .about__img--2 {
        width: 55%;
        height: 55%;
    }

    .stats__grid {
        gap: 12px 24px;
    }

    .stats__number {
        font-size: 1.6rem;
    }

    .portfolio__item {
        aspect-ratio: 16/11;
    }

    .service-card__desc {
        font-size: 0.82rem;
    }
}
