/* ===== BERAFILM FRONTEND CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;1,14..32,300;1,14..32,400&display=swap');

:root {
    --black: #060810;
    --dark: #0d0f1a;
    --dark2: #141724;
    --dark3: #1c1f30;
    --border: rgba(255, 255, 255, .07);
    --gold: #e8b86d;
    --gold2: #c9973a;
    --gold-l: rgba(232, 184, 109, .15);
    --glass: rgba(20, 23, 36, 0.7);
    --glass-b: blur(12px);
    --text: #f0f2f8;
    --text2: #a0a6c0;
    --white: #ffffff;
    --radius: 12px;
    --font: 'Inter', sans-serif;
    --shadow: 0 8px 40px rgba(0, 0, 0, .5);
    --max-w: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--dark)
}

::-webkit-scrollbar-thumb {
    background: var(--gold2);
    border-radius: 3px
}

/* ===== UTILS ===== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: 90px 0
}

.section-sm {
    padding: 60px 0
}

.text-gold {
    color: var(--gold)
}

.text-muted {
    color: var(--text2)
}

.text-center {
    text-align: center
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px
}

.section-label {
    display: inline-block;
    background: var(--gold-l);
    color: var(--gold);
    border: 1px solid rgba(232, 184, 109, .3);
    border-radius: 20px;
    padding: 5px 16px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2
}

.section-title span {
    color: var(--gold)
}

.section-desc {
    color: var(--text2);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 16px auto 0
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: background .3s, padding .3s, backdrop-filter .3s
}

.navbar.scrolled {
    background: rgba(6, 8, 16, .9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: .5px
}

.nav-logo i {
    color: var(--gold);
    font-size: 1.4rem
}

.nav-logo span {
    color: var(--gold)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px
}

.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text2);
    transition: color .2s;
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .2s
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold)
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #111 !important;
    font-weight: 700;
    font-size: .9rem;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(232, 184, 109, 0.25);
    border: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 184, 109, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    width: 40px;
    height: 36px;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: .3s
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6, 8, 16, .98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    z-index: 999
}

.mobile-menu.open {
    display: block
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text2);
    border-bottom: 1px solid var(--border);
    transition: color .2s
}

.mobile-menu a:hover {
    color: var(--gold)
}

.mobile-menu .nav-cta {
    margin-top: 24px;
    width: 100%;
    padding: 14px 0;
    font-size: 1.05rem;
    border-radius: 12px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s
}

.hero-slide.active {
    opacity: 1
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 8, 16, .88) 0%, rgba(6, 8, 16, .65) 50%, rgba(6, 8, 16, .4) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 72px
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-l);
    color: var(--gold);
    border: 1px solid rgba(232, 184, 109, .3);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    max-width: 720px;
    margin-bottom: 24px
}

.hero-title span {
    color: var(--gold);
    display: block
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text2);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn-gold {
    background: var(--gold);
    color: #111;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    transition: .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-gold:hover {
    background: var(--gold2);
    transform: translateY(-2px)
}

.btn-ghost {
    background: rgba(255, 255, 255, .05);
    color: var(--text);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    border: 1px solid var(--border);
    transition: .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(232, 184, 109, .05);
}

.hero-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: .3s
}

.hero-dot.active {
    width: 28px;
    background: var(--gold)
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    right: 48px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text2);
    font-size: .7rem;
    letter-spacing: 1px;
    text-transform: uppercase
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(var(--gold), transparent)
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px
}

.service-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: .3s;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: .3s
}

.service-card:hover {
    border-color: rgba(232, 184, 109, .3);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4)
}

.service-card:hover::before {
    opacity: 1
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-l);
    border: 1px solid rgba(232, 184, 109, .2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 24px
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px
}

.service-card p {
    color: var(--text2);
    font-size: .9rem;
    line-height: 1.65
}

/* ===== VIDEOS ===== */
.video-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center
}

.filter-btn {
    background: var(--dark2);
    color: var(--text2);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 8px 22px;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    transition: .2s
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
    font-weight: 700
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px
}

.video-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .3s
}

.video-card:hover {
    border-color: rgba(232, 184, 109, .3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4)
}

.video-thumb {
    position: relative;
    padding-top: 56.25%;
    background: var(--dark3)
}

.video-thumb iframe,
.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none
}

.video-thumb .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 8, 16, .4);
    opacity: 0;
    transition: .3s
}

.video-card:hover .play-overlay {
    opacity: 1
}

.play-btn {
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 1.2rem;
    cursor: pointer;
    transition: .2s
}

.play-btn:hover {
    transform: scale(1.1)
}

.video-info {
    padding: 18px 20px
}

.video-info h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 6px
}

.video-info p {
    font-size: .82rem;
    color: var(--text2)
}

.video-cat-badge {
    display: inline-block;
    background: var(--gold-l);
    color: var(--gold);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: .7rem;
    font-weight: 600;
    margin-bottom: 10px
}

/* ===== ABOUT (HOME SECTION) ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

@media(max-width:768px) {
    .about-grid {
        grid-template-columns: 1fr
    }
}

.about-image {
    position: relative
}

.about-image img {
    border-radius: 16px;
    width: 100%;
    height: 420px;
    object-fit: cover
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: #111;
    border-radius: 12px;
    padding: 18px 24px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(232, 184, 109, .3)
}

.about-image-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1
}

.about-content .section-label {
    margin-bottom: 16px
}

.about-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 20px
}

.about-content p {
    color: var(--text2);
    margin-bottom: 16px;
    line-height: 1.75
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px
}

.about-stat {
    text-align: center;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 10px
}

.about-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold)
}

.about-stat span {
    font-size: .75rem;
    color: var(--text2)
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start
}

@media(max-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

.contact-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px
}

.contact-info p {
    color: var(--text2);
    margin-bottom: 32px;
    line-height: 1.7
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-l);
    border: 1px solid rgba(232, 184, 109, .2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0
}

.contact-item h4 {
    font-size: .85rem;
    color: var(--text2);
    font-weight: 500
}

.contact-item p {
    font-size: .95rem;
    font-weight: 600;
    margin: 0
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 28px
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text2);
    transition: .2s
}

.social-link:hover {
    background: var(--gold-l);
    color: var(--gold);
    border-color: rgba(232, 184, 109, .3)
}

/* Contact Form */
.contact-form {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px
}

.contact-form h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

@media(max-width:480px) {
    .form-row-2 {
        grid-template-columns: 1fr
    }
}

.cf-group {
    margin-bottom: 16px
}

.cf-group label {
    display: block;
    font-size: .8rem;
    color: var(--text2);
    font-weight: 500;
    margin-bottom: 6px
}

.cf-group input,
.cf-group textarea,
.cf-group select {
    width: 100%;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    color: var(--text);
    font-size: .9rem;
    font-family: var(--font);
    transition: .2s
}

.cf-group input:focus,
.cf-group textarea:focus {
    outline: none;
    border-color: var(--gold)
}

.cf-group textarea {
    min-height: 130px;
    resize: vertical
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: #111;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.btn-submit:hover {
    background: var(--gold2)
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 60px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2.5fr;
    gap: 40px;
    margin-bottom: 48px
}

@media(max-width:900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

/* ===== PREMIUM ANIMATIONS & EFFECTS ===== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

.glass-card {
    background: var(--glass) !important;
    backdrop-filter: var(--glass-b) !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
}

.hover-lift {
    transition: transform .3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
}

/* Custom Scroll reveal simulation */
.section {
    opacity: 1;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.section.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width:480px) {
    .footer-grid {
        grid-template-columns: 1fr
    }
}

.footer-brand .logo {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

.footer-brand .logo i {
    color: var(--gold)
}

.footer-brand p {
    color: var(--text2);
    font-size: .9rem;
    line-height: 1.7;
    max-width: 260px
}

.footer-col h4 {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text2);
    margin-bottom: 20px
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 10px
}

.footer-col ul li a {
    color: var(--text2);
    font-size: .9rem;
    transition: color .2s
}

.footer-col ul li a:hover {
    color: var(--gold)
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px
}

.footer-bottom p {
    color: var(--text2);
    font-size: .82rem
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
    text-align: center;
    border-bottom: 1px solid var(--border)
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px
}

.page-hero p {
    color: var(--text2);
    font-size: 1.05rem
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--text2);
    margin-bottom: 20px
}

.breadcrumb a {
    color: var(--text2);
    transition: color .2s
}

.breadcrumb a:hover {
    color: var(--gold)
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 2000;
    align-items: center;
    justify-content: center
}

.video-modal.open {
    display: flex
}

.video-modal-inner {
    width: 90%;
    max-width: 900px;
    position: relative
}

.video-modal-inner iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    border: none
}

.modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color .2s
}

.modal-close:hover {
    color: var(--gold)
}

/* ===== ALERT ===== */
.site-alert {
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: .9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px
}

.site-alert.success {
    background: rgba(76, 175, 130, .1);
    border: 1px solid rgba(76, 175, 130, .3);
    color: #4caf82
}

.site-alert.error {
    background: rgba(229, 90, 90, .1);
    border: 1px solid rgba(229, 90, 90, .3);
    color: #e55a5a
}

/* ===== FLOATING ACTION BUTTON ===== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}
.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #111;
    font-size: 1.6rem;
    border: none;
    box-shadow: 0 10px 25px rgba(232, 184, 109, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fab-btn:hover {
    transform: scale(1.1);
}
.fab-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fab-menu.open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0) scale(1);
}
.fab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--dark3);
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: .3s;
}
.fab-item:hover {
    transform: translateX(-5px);
}
.fab-item.wa:hover {
    background: #25D366;
    border-color: #25D366;
}
.fab-item.wa i { color: #25D366; font-size: 1.2rem; }
.fab-item.wa:hover i { color: #fff; }

.fab-item.phone:hover {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
}
.fab-item.phone i { color: var(--gold); font-size: 1.1rem; }
.fab-item.phone:hover i { color: #111; }

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem)
    }

    .floating-contact { bottom: 20px; right: 20px; }
    .fab-btn { width: 54px; height: 54px; font-size: 1.3rem; }
    .fab-menu { bottom: 65px; right: 0; }

    .section {
        padding: 60px 0
    }

    .videos-grid {
        grid-template-columns: 1fr
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}