/* ============================================
   GOSHEN MOTION STUDIO — Luxury Dark Theme
   Developed by diolichat (www.diolichat.co.rw)
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --gold: #c41e2a;
    --gold-light: #e8434e;
    --gold-dark: #9b1620;
    --white: #ffffff;
    --white-soft: #f0f0f0;
    --gray: #888888;
    --gray-light: #aaaaaa;
    --gray-dark: #444444;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.25s ease;
    --shadow: 0 10px 40px rgba(0,0,0,0.4);
    --shadow-gold: 0 5px 30px rgba(196,30,42,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white-soft);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold {
    color: var(--gold);
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    position: relative;
    padding-left: 50px;
}

.section-tag svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 2px;
    background: var(--gold);
    transform: translateY(-50%);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}

.section-header .section-title {
    position: relative;
    padding-bottom: 20px;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.8;
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 8px 0;
    font-size: 0.78rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    height: 34px;
    transition: transform 0.3s ease;
}

.top-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.top-bar-left a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

.top-bar-left a:hover {
    color: var(--gold);
}

.top-bar-left svg {
    color: var(--gold);
    flex-shrink: 0;
}

.top-bar-divider {
    color: var(--gray-dark);
    margin: 0 6px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    color: var(--gray-light);
    transition: all var(--transition-fast);
    display: flex;
}

.top-bar-right a:hover {
    color: var(--gold);
    transform: translateY(-1px);
}

/* ---------- Navigation ---------- */
#navbar {
    position: fixed;
    top: 34px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

#navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 30, 42, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-light);
    border-radius: 6px;
    transition: all var(--transition-fast);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link svg {
    opacity: 0.6;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.nav-link:hover svg,
.nav-link.active svg {
    opacity: 1;
    color: var(--gold);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--black) !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    padding: 10px 24px !important;
}

.nav-cta svg {
    opacity: 1 !important;
    color: var(--black) !important;
}

.nav-cta:hover svg {
    color: var(--black) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 4px;
}

.hamburger .bar {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
    transform-origin: center;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    margin-top: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Video */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.65) 0%,
        rgba(10, 10, 10, 0.4) 40%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
}

.hero-title .line.animated {
    animation: fadeUp 0.8s ease forwards;
}

.hero-title .line:nth-child(2) { animation-delay: 0.15s; }
.hero-title .line:nth-child(3) { animation-delay: 0.3s; }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
}

.hero-subtitle.animated {
    animation: fadeUp 0.8s 0.4s ease forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons.animated {
    animation: fadeUp 0.8s 0.55s ease forwards;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.hero-stats.animated {
    animation: fadeUp 0.8s 0.7s ease forwards;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition);
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 42, 0.3);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--white);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ---------- About Section ---------- */
.about {
    background: var(--dark);
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.about-images {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img-main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-accent {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--dark);
    box-shadow: var(--shadow);
}

.about-img-accent img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    line-height: 1.3;
}

.about-content {
    max-width: 600px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text-below {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-top: 24px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--dark-2);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.feature:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white-soft);
}

/* ---------- Mission & Vision Cards ---------- */
.about-mission-vision {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.mv-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    transition: border-color var(--transition-fast);
}

.mv-card:hover {
    border-color: rgba(196, 30, 42, 0.25);
}

.mv-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 42, 0.1);
    border-radius: 10px;
    color: var(--gold);
}

.mv-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.mv-card p {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

/* ---------- Clients Marquee ---------- */
.clients-section {
    padding: 50px 0;
    background: var(--dark);
    overflow: hidden;
}

.clients-heading {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 28px;
}

.clients-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.clients-track img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(0.7);
    opacity: 0.6;
    transition: all var(--transition);
}

.clients-track img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

/* ---------- Services Section ---------- */
.services {
    background: var(--black);
}

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

.service-card {
    position: relative;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    cursor: default;
    display: flex;
    flex-direction: column;
}

.service-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 30px 24px;
    position: relative;
    flex: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196, 30, 42, 0.2);
    box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 42, 0.08);
    border-radius: var(--radius);
    margin-bottom: 24px;
    color: var(--gold);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--black);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: color var(--transition);
}

.service-card:hover .service-number {
    color: rgba(196, 30, 42, 0.08);
}

/* ---------- Portfolio Section ---------- */
.portfolio {
    background: var(--dark);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 28px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-btn svg {
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--black);
    background: var(--gold);
    border-color: var(--gold);
}

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

.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    transition: all var(--transition);
}

.portfolio-item:nth-child(2),
.portfolio-item:nth-child(7) {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
    transform: translateY(100%);
    transition: transform var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-show-more {
    text-align: center;
    margin-top: 40px;
}

.portfolio-show-more .btn {
    min-width: 180px;
}

/* ---------- Video Section ---------- */
.video-section {
    background: var(--black);
}

.video-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

.video-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

.video-card:hover {
    border-color: rgba(196, 30, 42, 0.2);
    box-shadow: var(--shadow-gold);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px 24px;
}

.video-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.video-info p {
    font-size: 0.88rem;
    color: var(--gray);
}

/* Instagram Embed Card */
.instagram-card {
    display: flex;
    flex-direction: column;
}

.instagram-embed-wrapper {
    flex: 1;
    position: relative;
    min-height: 480px;
    overflow: hidden;
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 600;
}

.instagram-embed-wrapper iframe {
    width: 100%;
    height: calc(100% - 48px);
    min-height: 430px;
    border: none;
    background: var(--dark-2);
}

/* ---------- Testimonials Section ---------- */
.testimonials {
    background: var(--dark);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    margin: 0 12px;
    flex-shrink: 0;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--white-soft);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -5px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--black);
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--gold);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-fast);
}

.testimonial-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(196, 30, 42, 0.08);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-dark);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dots .dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

/* ---------- Team Section ---------- */
.team {
    background: var(--dark);
    overflow: hidden;
}

.team-slider {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.team-track {
    display: flex;
    gap: 24px;
    animation: teamScroll 30s linear infinite;
    width: max-content;
}

.team-track:hover {
    animation-play-state: paused;
}

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

.team-card {
    background: var(--dark-2);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
    min-width: 220px;
    max-width: 220px;
    flex-shrink: 0;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(196, 30, 42, 0.2);
}

.team-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.08);
}

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

.team-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.team-role {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ---------- Contact Section ---------- */
.contact {
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--dark);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.contact-card:hover {
    border-color: rgba(196, 30, 42, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 42, 0.08);
    border-radius: var(--radius-sm);
    color: var(--gold);
    flex-shrink: 0;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-card a,
.contact-card p {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 18px;
    font-size: 0.92rem;
    color: var(--gray);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 14px;
    font-size: 0.75rem;
    color: var(--gold);
    background: var(--dark);
    padding: 0 6px;
}

.form-group select {
    width: 100%;
    padding: 16px 18px;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--gray-light);
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-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='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    transition: border-color var(--transition-fast);
}

.form-group select:focus {
    border-color: var(--gold);
}

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

.contact-form .btn-primary {
    padding: 16px 36px;
    font-size: 1rem;
    border: none;
}

/* Map */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-map iframe {
    display: block;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--dark);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand img {
    margin-bottom: 16px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

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

.footer ul li a {
    font-size: 0.9rem;
    color: var(--gray);
    transition: all var(--transition-fast);
}

.footer ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--gray);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-credit a {
    color: var(--gold);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-credit a:hover {
    color: var(--gold-light);
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    color: var(--white);
    z-index: 10;
    transition: color var(--transition-fast);
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(196, 30, 42, 0.1);
}

/* ---------- Call Float ---------- */
.call-float {
    position: fixed;
    bottom: 100px;
    right: 28px;
    height: 48px;
    padding: 0 20px 0 14px;
    background: var(--gold);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(196, 30, 42, 0.4);
    z-index: 999;
    transition: all var(--transition-fast);
    animation: callPulse 2s infinite;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.call-float:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(196, 30, 42, 0.5);
}

@keyframes callPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(196, 30, 42, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(196, 30, 42, 0.6); }
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    height: 48px;
    padding: 0 20px 0 14px;
    background: #25D366;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-fast);
    animation: whatsappPulse 2s infinite;
}

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

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 174px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* ---------- Portfolio Video Items ---------- */
.portfolio-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-2);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    flex-wrap: wrap;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin: 0;
}

.cookie-banner a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-accept {
    padding: 8px 24px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.cookie-accept:hover {
    background: var(--gold-light);
}

/* ---------- PWA Install Prompt ---------- */
.pwa-install {
    position: fixed;
    bottom: 90px;
    left: 24px;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 9998;
    box-shadow: var(--shadow);
    max-width: 360px;
    width: calc(100% - 48px);
}

.pwa-install.visible {
    display: flex;
}

.pwa-install-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pwa-install-content img {
    border-radius: 8px;
    width: 40px;
    height: 40px;
}

.pwa-install-content strong {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
}

.pwa-install-content span {
    font-size: 0.75rem;
    color: var(--gray);
}

.pwa-install-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-sm {
    padding: 6px 16px !important;
    font-size: 0.78rem !important;
}

.pwa-dismiss {
    font-size: 1.3rem;
    color: var(--gray);
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition-fast);
}

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

/* ---------- Footer Privacy ---------- */
.footer-privacy {
    color: var(--gold);
    margin-left: 10px;
    border-left: 1px solid var(--gray-dark);
    padding-left: 10px;
}

.footer-privacy:hover {
    color: var(--gold-light);
}

/* ---------- Enhanced Section Dividers ---------- */
.section + .section::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 0;
    opacity: 0.4;
}

/* ---------- Glow accent on section tags ---------- */
.section-tag {
    text-shadow: 0 0 20px rgba(196, 30, 42, 0.3);
}

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

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-30px);
}

[data-animate="scale-in"] {
    transform: scale(0.92);
}

[data-animate].in-view {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* ---------- Responsive Design ---------- */

/* Tablet Landscape */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .portfolio-item:nth-child(2),
    .portfolio-item:nth-child(7) {
        grid-column: span 1;
        aspect-ratio: 3/4;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
    .about-grid {
        flex-direction: column;
        gap: 50px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-tag {
        padding-left: 0;
        display: block;
        text-align: center;
    }

    .about-content .section-tag::before {
        display: none;
    }

    .about-text {
        text-align: center;
    }

    .about-text-below {
        text-align: left;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    #navbar {
        top: 0 !important;
    }

    .hero {
        margin-top: 80px;
    }

    .section {
        padding: 70px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right var(--transition);
        border-left: 1px solid rgba(196, 30, 42, 0.1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 12px 0;
        width: 100%;
    }

    .nav-link::after {
        bottom: 8px;
        left: 0;
        transform: none;
    }

    .nav-cta {
        margin-top: 16px;
        text-align: center;
        display: block;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4.5rem);
    }

    .hero-stats {
        gap: 28px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .portfolio-item:nth-child(2),
    .portfolio-item:nth-child(7) {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .testimonial-card {
        padding: 28px 20px;
        margin: 0 6px;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .section {
        padding: 50px 0;
    }

    .container {
        padding: 0 16px;
    }

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

    .hero-title {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item:nth-child(2),
    .portfolio-item:nth-child(7) {
        grid-column: span 1;
        aspect-ratio: 3/4;
    }

    .portfolio-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .about-images {
        max-width: 100%;
    }

    .about-img-accent {
        width: 45%;
        top: -20px;
        right: -10px;
    }

    .about-img-accent img {
        height: 150px;
    }

    .about-experience-badge {
        width: 90px;
        height: 90px;
        top: -15px;
        left: -10px;
    }

    .exp-number {
        font-size: 1.6rem;
    }

    .about-text-below {
        font-size: 0.9rem;
        padding: 16px;
        margin-top: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mv-card {
        padding: 14px 16px;
    }

    .mv-card h4 {
        font-size: 0.9rem;
    }

    .mv-card p {
        font-size: 0.82rem;
    }

    .contact-form-wrapper {
        padding: 24px 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        height: 42px;
        padding: 0 14px 0 10px;
        bottom: 20px;
        right: 16px;
        font-size: 0.75rem;
    }

    .call-float {
        height: 42px;
        padding: 0 14px 0 10px;
        bottom: 72px;
        right: 16px;
        font-size: 0.75rem;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 124px;
        right: 18px;
    }

    .whatsapp-float span,
    .call-float span {
        display: none;
    }

    .whatsapp-float,
    .call-float {
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* ---------- Selection ---------- */
::selection {
    background: var(--gold);
    color: var(--black);
}

::-moz-selection {
    background: var(--gold);
    color: var(--black);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ---------- Form Success Message ---------- */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    color: var(--gold);
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* ---------- Enhanced Animations & Effects ---------- */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(196,30,42,0.2); }
    50% { box-shadow: 0 0 25px rgba(196,30,42,0.4), 0 0 50px rgba(196,30,42,0.1); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(196,30,42,0.15); }
    50% { border-color: rgba(196,30,42,0.5); }
}

.service-card:hover .service-icon {
    animation: glowPulse 2s ease-in-out infinite;
}

.hero-title .gold {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.about-experience-badge {
    animation: float 3s ease-in-out infinite;
}

.nav-cta {
    animation: glowPulse 3s ease-in-out infinite;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--radius);
    transition: border-color 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.portfolio-item:hover::after {
    border-color: var(--gold);
    animation: borderGlow 2s ease-in-out infinite;
}

.section-title .gold {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.contact-card {
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}

.contact-card:hover::before {
    height: 100%;
}

.feature {
    position: relative;
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.feature:hover::after {
    width: 100%;
}

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer ul li a {
    position: relative;
}

.footer ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer ul li a:hover::before {
    width: 100%;
}

/* Responsive Instagram */
@media (max-width: 1024px) {
    .instagram-embed-wrapper {
        min-height: 400px;
    }
    .instagram-embed-wrapper iframe {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .instagram-embed-wrapper {
        min-height: 350px;
    }
    .call-float {
        width: 52px;
        height: 52px;
        bottom: 84px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .instagram-embed-wrapper {
        min-height: 300px;
    }
    .instagram-embed-wrapper iframe {
        min-height: 250px;
    }
    .call-float {
        width: 48px;
        height: 48px;
        bottom: 80px;
        right: 16px;
    }
}
