/* ═══════════════════════════════════════
   HI-TECH VIDEOGRAPHER PORTFOLIO
   Dark Blue + Neon Cyan + Glassmorphism
   ═══════════════════════════════════════ */

:root {
    --bg-deep: #050505;
    --bg-surface: #0A0A0A;
    --bg-card: rgba(10, 10, 10, 0.9);
    --border-subtle: #4B5563;
    --border-glow: #B0B0B0;

    --accent-gold: #F3F4F6;
    --accent-muted: #9CA3AF;
    --accent-gradient: linear-gradient(135deg, #E0E0E0, #707070);

    --text-primary: #FAFAFA;
    --text-secondary: #AAAAAA;
    --text-muted: #666666;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--bg-deep);
}

body {
    background: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: pointer;
}

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

ul {
    list-style: none;
}

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








/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

/* ── Typography ── */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-weight: 500;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--accent-gradient);
    margin: 16px auto 0;
}

.section-title-left {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 24px;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--accent-gradient);
    color: #2C2825;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    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.3), transparent);
    transition: 0.6s;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(208, 208, 208, 0.3);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    border: 2px solid var(--border-subtle);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-ghost:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(208, 208, 208, 0.1);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

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

/* ═══════════ NAVBAR ═══════════ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 100;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(229, 231, 235, 0.95); /* Light silver glass */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.navbar.scrolled .logo-name, .navbar.scrolled .nav-link, .navbar.scrolled .lang-btn, .navbar.scrolled .burger span {
    color: #111827 !important;
}

.logo {
    grid-column: 2;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

.logo-name {
    color: var(--text-primary);
    margin-right: 4px;
}

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

.logo-sub {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
    margin-top: 2px;
}

.lang-switcher {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.lang-btn {
    background: none;
    border: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover, .lang-btn.active {
    color: var(--accent-gold);
}

.lang-sep {
    color: var(--border-subtle);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ═══════════ HERO ═══════════ */
.hero {
    box-shadow: inset 0 0 150px rgba(44, 40, 37, 0.15);
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 120px;
    align-items: center;
    width: 100%;
}

.hero-split-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    min-width: 0;
}

.hero-split-right {
    display: flex;
    justify-content: flex-end;
}

.hero-secretary-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(208, 208, 208, 0.08));
    border: 2px solid rgba(208, 208, 208, 0.4);
    border-radius: 12px;
    padding: 32px;
    max-width: 440px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    position: relative;
    z-index: 5;
}

.hero-secretary-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    font-weight: 600;
}

.hero-secretary-title {
    font-size: 1.6rem;
    line-height: 1.3;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
}

.chat-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 8px;
}

.chat-message {
    max-width: 90%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
    white-space: pre-line;
}

.chat-message.assistant {
    background: rgba(208, 208, 208, 0.1);
    border: 2px solid rgba(208, 208, 208, 0.2);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-muted));
    color: #111;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

.chat-input-area {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.chat-input-area input {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(208, 208, 208, 0.3);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.chat-input-area input:focus {
    border-color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(208, 208, 208, 0.2);
}

.chat-submit {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-muted));
    border: none;
    color: #000;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(208, 208, 208, 0.3);
}

.chat-submit i {
    font-size: 1.1rem;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 14px 16px;
    background: rgba(208, 208, 208, 0.1);
    border: 2px solid rgba(208, 208, 208, 0.2);
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    width: fit-content;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: typingBlink 1.4s infinite both;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBlink {
    0%, 80%, 100% { opacity: 0.3; }
    40% { opacity: 1; }
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}
.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(208, 208, 208, 0.3);
    border-radius: 4px;
}

.hero-secretary-trust {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-style: italic;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.7) 0%,
            rgba(10, 10, 10, 0.5) 50%,
            rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 24px;
    animation: fadeInDown 1s ease;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 24px;
    min-height: 2.4em;
    white-space: nowrap;
}

.cursor-blink {
    display: inline;
    color: var(--accent-gold);
    animation: blink 0.8s step-end infinite;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: 0;
    margin-right: 0;
    animation: fadeInUp 1.2s ease;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

/* ── Hero Navigation Buttons ── */
.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    animation: fadeInUp 1.4s ease;
    z-index: 10;
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.hero-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    border-right: 1px solid var(--border-subtle);
    white-space: nowrap;
}

.hero-nav-btn:last-child {
    border-right: none;
}

.hero-nav-btn i {
    font-size: 1.05rem;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: rgba(208, 208, 208, 0.1);
    color: #fff;
    border-color: var(--accent-gold);
}

.hero-nav-btn:hover i {
    text-shadow: 0 0 12px rgba(208, 208, 208, 0.8);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: scrollDown 2s ease infinite;
}

/* ═══════════ PORTFOLIO ═══════════ */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--border-subtle);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: var(--transition);
}

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

.filter-btn.active .filter-dot,
.filter-btn:hover .filter-dot {
    background: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

/* Portfolio Card — Floating Platform */
.portfolio-card {
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    position: relative;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 8px;
    background: linear-gradient(135deg, transparent 40%, var(--accent-gold) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover::before {
    opacity: 0.5;
}

.portfolio-card:nth-child(2) {
    animation-delay: -1s;
}

.portfolio-card:nth-child(3) {
    animation-delay: -2s;
}

.portfolio-card:nth-child(4) {
    animation-delay: -3s;
}

.portfolio-card:nth-child(5) {
    animation-delay: -0.5s;
}

.portfolio-card:nth-child(6) {
    animation-delay: -1.5s;
}

.portfolio-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-gold);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(208, 208, 208, 0.15);
}

.card-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.5);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .card-play {
    opacity: 1;
}

.play-ring {
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-gold);
    transition: var(--transition-bounce);
    box-shadow: 0 0 30px rgba(208, 208, 208, 0.3);
}

.portfolio-card:hover .play-ring {
    transform: scale(1.1);
}

.card-category {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
    border: 1px solid var(--border-glow);
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.card-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ═══════════ ABOUT ═══════════ */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-photo-wrapper {
    position: relative;
}

.photo-frame {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border-subtle);
    position: relative;
    z-index: 2;
}

.photo-frame img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.photo-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    z-index: 1;
    opacity: 0.3;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text-col p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.stat-card {
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 8px;
    padding: 20px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    flex: 1;
}

.stat-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(208, 208, 208, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ═══════════ SERVICES ═══════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-platform {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    animation: float 7s ease-in-out infinite;
}

.service-platform:nth-child(2) {
    animation-delay: -2s;
}

.service-platform:nth-child(3) {
    animation-delay: -4s;
}

.service-platform:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(208, 208, 208, 0.1);
}

.platform-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(208, 208, 208, 0.05), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.service-platform:hover .platform-glow {
    opacity: 1;
}

.platform-badge {
    position: absolute;
    top: 0;
    right: 24px;
    background: var(--accent-gradient);
    color: #2C2825;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 0 0 8px 8px;
}

.platform-content {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.platform-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.service-platform:hover .platform-icon {
    background: rgba(208, 208, 208, 0.1);
    box-shadow: 0 0 20px rgba(208, 208, 208, 0.2);
}

.platform-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.platform-price {
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.platform-features {
    text-align: left;
    margin-bottom: 28px;
}

.platform-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.platform-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.service-platform.featured {
    border-color: rgba(208, 208, 208, 0.3);
    background: linear-gradient(145deg, var(--bg-card), rgba(208, 208, 208, 0.05));
}

/* ═══════════ CONTACT ═══════════ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.visitor-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border-subtle);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.visitor-counter:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-gold);
    color: var(--text-primary);
}

.visitor-counter i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.ai-secretary-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(208, 208, 208, 0.05));
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(208, 208, 208, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(10px);
}

.ai-secretary-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.ai-secretary-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.ai-btn {
    align-self: flex-start;
    padding: 12px 24px;
}

.messenger-links {
    display: flex;
    flex-direction: column;
}

.messenger-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.messenger-btn i {
    font-size: 1.3rem;
    color: var(--accent-gold);
    width: 24px;
    text-align: center;
}

.messenger-btn:hover {
    border-color: var(--accent-gold);
    transform: translateX(8px);
    box-shadow: 0 0 20px rgba(208, 208, 208, 0.1);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(10, 10, 10, 0.6);
    border: 2px solid var(--border-subtle);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    cursor: pointer;
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(208, 208, 208, 0.1);
}

.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: 12px;
    font-size: 0.75rem;
    color: var(--accent-gold);
    background: var(--bg-deep);
    padding: 0 6px;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
    background: #E5E7EB; /* Light silver */
    border-top: 2px solid #D1D5DB;
    padding: 60px 0;
    text-align: center;
}
.footer-logo, .footer p, .footer .logo-name {
    color: #374151 !important;
}
.visitor-counter {
    background: #FFFFFF;
    border: 2px solid #D1D5DB;
    color: #374151;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.visitor-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border-subtle);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.visitor-counter:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-gold);
    color: var(--text-primary);
    box-shadow: 0 0 10px rgba(208, 208, 208, 0.1);
}

.visitor-counter i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-muted);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ═══════════ VIDEO MODAL ═══════════ */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 85%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    z-index: 2001;
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(208, 208, 208, 0.2);
    animation: modalIn 0.4s ease;
}

.modal-player {
    width: 100%;
    height: 100%;
}

.modal-player iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .hero {
        height: auto;
        padding: 120px 0 60px;
    }
    .hero-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-split-left {
        text-align: center;
        align-items: center;
        min-width: auto;
    }
    .hero-split-right {
        justify-content: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-nav {
        justify-content: center;
    }
    .hero-secretary-card {
        text-align: center;
        padding: 24px;
        margin: 0 auto;
    }
    .hero-secretary-btn {
        align-self: center;
    }
}

#youtube-player {
    width: 100%;
    height: 100%;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: 2px solid var(--border-subtle);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2002;
}

.modal-close:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* ═══════════ REVEAL ANIMATIONS ═══════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════ KEYFRAMES ═══════════ */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }

    100% {
        opacity: 0;
        transform: scaleY(1);
        transform-origin: bottom;
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ═══════════ SHOWREEL ═══════════ */
.showreel-section {
    padding: 40px 0 100px;
}

.showreel-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.showreel-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glow);
    box-shadow:
        0 20px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(208, 208, 208, 0.1);
}

.showreel-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ═══════════ PHOTO CAROUSEL ═══════════ */
.carousel-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-subtle);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    aspect-ratio: 3 / 4;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

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

.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 5;
}

.carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent-gradient);
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(208, 208, 208, 0.5);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .hero {
        display: block;
        height: auto;
        min-height: 100vh;
        padding: 120px 0 48px;
        overflow: visible;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    body {
        cursor: auto;
    }

    a,
    button,
    .portfolio-card,
    .messenger-btn,
    .form-group input,
    .form-group textarea {
        cursor: pointer;
    }

    .navbar {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border-subtle);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        white-space: normal;
        min-height: auto;
    }

    .hero-layout-grid {
        gap: 28px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 16px;
        margin-bottom: 28px;
    }

    .hero-nav {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        flex-wrap: wrap;
        max-width: 320px;
        margin: 20px auto 0;
    }

    .hero-nav-btn {
        flex: 1 1 40%;
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .hero-secretary-card {
        max-width: 100%;
    }

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

    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        flex-direction: column;
        gap: 12px;
    }

    .section {
        padding: 40px 0;
    }

    .showreel-section {
        padding: 20px 0 60px;
    }

    .carousel-container {
        aspect-ratio: 4 / 5;
    }
}

/* ── Cinematic Film Grain ── */
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='1 0 0 0 0, 1 0 0 0 0, 1 0 0 0 0, 0 0 0 0.8 0' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    mix-blend-mode: multiply;
}

/* ── Hero Vignette ── */
