/* ===== VARIABLES ===== */
:root {
    --primary: #0A1E3D;
    --primary-mid: #14305E;
    --primary-light: #1E4D8C;
    --accent: #FF6B00;
    --accent-hover: #E55D00;
    --accent-soft: rgba(255,107,0,0.1);
    --whatsapp: #25D366;
    --whatsapp-hover: #1DB954;
    --white: #FFFFFF;
    --off-white: #F5F7FA;
    --gray-100: #EDF0F7;
    --gray-200: #D5DAE5;
    --gray-400: #8E99AE;
    --gray-600: #556178;
    --gray-800: #2D3748;
    --gray-900: #1A202C;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 50px rgba(0,0,0,0.12);
    --radius: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-800);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.15; color: var(--gray-900); }

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 28px; }
.section-tag {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.section-subtitle {
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
    font-weight: 400;
}
.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #FF9F43 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-align: center;
    justify-content: center;
}
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,0,0.35);
}
.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    border-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}
.btn-glass {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}
.btn-glass:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s var(--ease);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.navbar-logo img { height: 55px; object-fit: contain; }
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}
.navbar-menu li a {
    padding: 9px 18px;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--gray-600);
    border-radius: 10px;
    transition: all 0.25s var(--ease);
}
.navbar-menu li a:hover {
    color: var(--accent);
    background: var(--accent-soft);
}
.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,0,0.3);
}
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
}
.navbar-toggle:hover { background: var(--gray-100); }
.navbar-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    opacity: 0.15;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg,
        rgba(10,30,61,0.95) 0%,
        rgba(14,48,94,0.9) 50%,
        rgba(30,77,140,0.85) 100%
    );
    z-index: 1;
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}
.particle {
    position: absolute;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}
.particle:nth-child(1) { width: 500px; height: 500px; top: -10%; right: -10%; animation-delay: 0s; background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%); }
.particle:nth-child(2) { width: 400px; height: 400px; bottom: -15%; left: -10%; animation-delay: 4s; background: radial-gradient(circle, rgba(30,77,140,0.15) 0%, transparent 70%); }
.particle:nth-child(3) { width: 250px; height: 250px; top: 40%; right: 25%; animation-delay: 2s; background: radial-gradient(circle, rgba(255,159,67,0.1) 0%, transparent 70%); }
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.03); }
}

/* Hero Two Columns */
.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 95px 0 40px;
}
.hero-left { text-align: left; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    padding: 7px 18px;
    border-radius: 50px;
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-weight: 500;
    margin-bottom: 22px;
}
.hero-badge i { color: var(--accent); }
.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -1px;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    font-weight: 300;
    line-height: 1.7;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 16px 28px;
    border-radius: var(--radius-md);
}
.stat { text-align: center; }
.stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}
.stat span { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 400; }
.stat span i { color: #FFB800; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* Hero Right - Image */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}
.hero-image-wrapper img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    animation: float-card 4s ease-in-out infinite;
}
.hero-card i {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.hero-card strong { display: block; font-size: 0.82rem; color: var(--gray-900); }
.hero-card span { font-size: 0.72rem; color: var(--gray-400); }
.hero-card-1 {
    top: 15%;
    left: -30px;
    animation-delay: 0s;
}
.hero-card-1 i { background: var(--accent-soft); color: var(--accent); }
.hero-card-2 {
    bottom: 15%;
    right: -30px;
    animation-delay: 2s;
}
.hero-card-2 i { background: rgba(37,211,102,0.1); color: var(--whatsapp); }
@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 4;
}
.hero-wave svg { display: block; width: 100%; height: 50px; }

/* ===== SERVICES ===== */
.services { padding: 52px 0; background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    border: 1px solid var(--gray-100);
    transition: all 0.35s var(--ease);
    position: relative;
}
.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(255,107,0,0.1);
    transform: translateY(-4px);
}
.service-icon-wrap { margin-bottom: 18px; }
.service-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    transition: all 0.3s var(--ease);
}
.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--white);
}
.service-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.service-body p {
    color: var(--gray-600);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== WHY US ===== */
.why-us {
    padding: 52px 0;
    background: var(--off-white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    border: 1px solid var(--gray-100);
    transition: all 0.35s var(--ease);
    display: flex;
    gap: 22px;
    align-items: flex-start;
}
.feature-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: transparent;
}
.feature-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    background: var(--accent-soft);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-card .feature-icon { display: none; }
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.feature-card p {
    color: var(--gray-600);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 42px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}
.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,107,0,0.08);
}
.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}
.cta-text p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}
.cta-buttons {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

/* ===== OUR WORK / GALLERY ===== */
.our-work { padding: 52px 0; background: var(--white); }
.subsection-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.subsection-title i { color: var(--accent); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,30,61,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.gallery-overlay-content i { color: var(--accent); font-size: 1.1rem; }
.gallery-overlay-content span { color: var(--white); font-weight: 600; font-size: 0.95rem; }

/* TikTok Carousel */
.videos-section { margin-top: 36px; }
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 8px 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.tiktok-item {
    flex: 0 0 330px;
    scroll-snap-align: center;
}
.tiktok-item blockquote { margin: 0 !important; }
.carousel-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-800);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-arrow:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: scale(1.08);
}
.carousel-arrow:disabled {
    opacity: 0.25;
    cursor: default;
    transform: none;
}
.carousel-arrow:disabled:hover {
    background: var(--white);
    color: var(--gray-800);
    border-color: var(--gray-200);
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    padding: 0;
}
.carousel-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}
.tiktok-follow {
    text-align: center;
    margin-top: 32px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 110px 0; background: var(--off-white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid var(--gray-100);
    transition: all 0.35s var(--ease);
    position: relative;
}
.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: transparent;
}
.testimonial-quote {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    color: var(--accent-soft);
}
.testimonial-quote i { color: var(--accent); opacity: 0.15; }
.stars { color: #FFB800; margin-bottom: 14px; font-size: 0.85rem; letter-spacing: 1px; }
.testimonial-card > p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 22px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-100);
}
.author-avatar {
    width: 42px;
    height: 42px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.82rem;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { color: var(--gray-400); font-size: 0.78rem; }

/* ===== CONTACT ===== */
.contact { padding: 52px 0; background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 36px;
    align-items: start;
}
.contact-info-card {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 44px 34px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,107,0,0.08);
}
.contact-info-card::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.contact-info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    position: relative;
}
.contact-info-card > p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    margin-bottom: 28px;
    position: relative;
}
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.06);
    transition: all 0.25s var(--ease);
}
a.contact-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(4px);
}
.contact-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.phone-icon { background: rgba(255,107,0,0.15); color: var(--accent); }
.wa-icon { background: rgba(37,211,102,0.15); color: var(--whatsapp); }
.location-icon { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.clock-icon { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.contact-item strong { display: block; font-size: 0.82rem; color: var(--white); }
.contact-item span { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.contact-social {
    display: flex;
    gap: 8px;
    margin-top: 28px;
    position: relative;
}
.contact-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease);
}
.contact-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--gray-800);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    transition: all 0.25s var(--ease);
    color: var(--gray-900);
    background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-note {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.75rem;
    margin-top: 12px;
}
.form-note i { margin-right: 4px; }
.form-message {
    margin-top: 14px;
    padding: 14px;
    border-radius: var(--radius-sm);
    display: none;
    font-weight: 600;
    text-align: center;
    font-size: 0.88rem;
}
.form-message.success { display: block; background: #D1FAE5; color: #065F46; }
.form-message.error { display: block; background: #FEE2E2; color: #991B1B; }

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.6);
    padding: 40px 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
    height: 50px;
    margin-bottom: 16px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 10px;
    display: inline-block;
}
.footer-brand p { font-size: 0.85rem; max-width: 280px; line-height: 1.8; }
.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.footer h4 { color: var(--white); margin-bottom: 18px; font-size: 0.95rem; font-weight: 700; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    transition: all 0.25s var(--ease);
}
.footer-links a i { font-size: 0.55rem; color: var(--accent); }
.footer-links a:hover { color: var(--white); transform: translateX(4px); }
.footer-contact-col p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}
.footer-contact-col i { color: var(--accent); width: 14px; text-align: center; font-size: 0.85rem; }
.footer-contact-col a:hover { color: var(--white); }
.footer-bottom {
    text-align: center;
    padding: 22px 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--accent); }
.made-by { margin-top: 4px; font-size: 0.72rem; color: rgba(255,255,255,0.18); }
.made-by a { color: rgba(255,255,255,0.25); }
.made-by a:hover { color: var(--accent); }

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    z-index: 999;
    transition: all 0.3s var(--ease);
    animation: pulse-ring 2.5s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(-8px); }
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--gray-900);
    color: var(--white);
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s var(--ease);
    pointer-events: none;
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--gray-900);
}
.call-float { display: none; }

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.35); }
    70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .cta-content { flex-direction: column; text-align: center; }
    .cta-buttons { justify-content: center; }
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; gap: 20px; padding: 90px 0 30px; }
    .hero-left { text-align: center; }
    .hero-cta { justify-content: center; }
    .hero h1 { font-size: 2.4rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-stats { gap: 14px; padding: 14px 20px; justify-content: center; width: 100%; }
    .stat strong { font-size: 1.2rem; }
    .stat-divider { width: 1px; height: 30px; }
    .hero-right { order: -1; }
    .hero-image-wrapper { max-width: 360px; }
    .hero-card { display: none; }
    .section-title { font-size: 2rem; }

    .navbar-toggle { display: flex; }
    .navbar-menu {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow);
        gap: 2px;
        border-top: 1px solid var(--gray-100);
    }
    .navbar-menu.active { display: flex; }
    .navbar-menu li a { display: block; padding: 12px 16px; }

    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .gallery-overlay { opacity: 1; }

    .hero-cta { flex-direction: column; align-items: center; }
    .btn-lg { width: 100%; max-width: 320px; }
    .cta-text h2 { font-size: 1.5rem; }
    .cta-buttons { flex-direction: column; align-items: center; width: 100%; }
    .cta-buttons .btn { width: 100%; max-width: 300px; }

    .tiktok-item { flex: 0 0 280px; }
    .carousel-arrow { width: 38px; height: 38px; font-size: 0.85rem; }

}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    .hero-grid { padding: 85px 0 24px; }
    .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
    .contact-form { padding: 24px 20px; }
    .contact-info-card { padding: 32px 24px; }
    .section-title { font-size: 1.7rem; }
    .section-header { margin-bottom: 40px; }
    .services, .why-us, .our-work, .testimonials, .contact { padding: 40px 0; }
    .section-header { margin-bottom: 22px; }
}
