/* ============================================================
   Videography Theme — Miami Video Services
   Based on: Videography HTML Template by Pixelnx
   ============================================================ */

/* Google Fonts loaded via header */
:root {
    --vg-gold: #edba78;
    --vg-gold-dark: #896537;
    --vg-red: #F13435;
    --vg-bg-dark: #212529;
    --vg-bg-darker: #181b1e;
    --vg-bg-section: #282d32;
    --vg-bg-footer: #000000;
    --vg-bg-footer-bottom: #18191E;
    --vg-text: #ededed;
    --vg-text-muted: #b6b6b6;
    --vg-white: #ffffff;
    --vg-transition: all 0.3s ease-in-out;
}

/* ===== BASE OVERRIDES ===== */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--vg-bg-dark);
    color: var(--vg-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--vg-white);
}

p {
    color: var(--vg-text-muted);
    margin-bottom: 0;
}

a {
    color: var(--vg-gold);
    transition: var(--vg-transition);
}

a:hover {
    color: var(--vg-gold);
    opacity: 0.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== HEADER ===== */
.header {
    background-color: var(--vg-bg-dark);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: none;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    animation: slideInDown 1s ease;
}

@keyframes slideInDown {
    from { transform: translate3d(0, -100%, 0); }
    to { transform: translate3d(0, 0, 0); }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--vg-white);
    letter-spacing: 0.5px;
}

/* Nav */
.nav-main {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-menu > li > a {
    color: var(--vg-white);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 18px;
    line-height: 80px;
    display: block;
    text-decoration: none;
    position: relative;
    transition: var(--vg-transition);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    height: 2px;
    background-color: var(--vg-gold);
    width: 0%;
    transition: width 0.5s ease-in-out;
}

.nav-menu > li > a:hover,
.nav-menu > li.current > a {
    color: var(--vg-gold);
}

.nav-menu > li > a:hover::after,
.nav-menu > li.current > a::after {
    width: calc(100% - 36px);
}

/* Dropdown */
.nav-menu .dropdown-menu {
    position: absolute;
    top: 80px;
    left: 0;
    background: var(--vg-bg-darker);
    min-width: 200px;
    padding: 10px 0;
    border-top: 2px solid var(--vg-gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--vg-transition);
    list-style: none;
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--vg-text);
    font-size: 13px;
    text-decoration: none;
    transition: var(--vg-transition);
}

.nav-menu .dropdown-menu li a:hover {
    color: var(--vg-gold);
    background: rgba(237, 186, 120, 0.1);
    padding-left: 28px;
}

/* Lang switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-left: 15px;
    margin-right: 15px;
}

.lang-switcher a {
    color: var(--vg-text-muted);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    text-decoration: none;
    transition: var(--vg-transition);
}

.lang-switcher a.active,
.lang-switcher a:hover {
    color: var(--vg-gold);
    border-color: var(--vg-gold);
}

/* Header CTA */
.header-cta {
    background: var(--vg-gold);
    color: #000 !important;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 22px;
    border-radius: 0;
    text-decoration: none;
    transition: var(--vg-transition);
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--vg-gold-dark);
    color: #fff !important;
    opacity: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--vg-red);
    transition: var(--vg-transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO SLIDER ===== */
.hero-slider-section {
    position: relative;
    width: 100%;
    margin-top: 80px;
}

.swiper-container {
    width: 100%;
    margin: 0 auto;
}

.hero-swiper {
    width: 100%;
}

.hero-slide {
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(33, 37, 41, 0.80);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0, rgba(0,0,0,0) 33%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

.slide-content .slide-label {
    display: inline-block;
    background: var(--vg-red);
    color: var(--vg-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 14px;
    margin-bottom: 16px;
}

.slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--vg-white);
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 700px;
}

.slide-content p {
    font-size: 1rem;
    color: var(--vg-text);
    margin-bottom: 28px;
    max-width: 500px;
}

.btn-slide {
    display: inline-block;
    background: var(--vg-gold);
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 35px;
    text-decoration: none;
    transition: var(--vg-transition);
    border-radius: 0;
}

.btn-slide:hover {
    background: var(--vg-gold-dark);
    color: var(--vg-white);
}

/* Swiper Nav Buttons */
.swiper-button-prev,
.swiper-button-next {
    background-image: none !important;
    width: 50px;
    height: 50px;
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vg-white);
    font-size: 20px;
    transition: var(--vg-transition);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--vg-red);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    color: #fff;
}

.swiper-pagination-bullet {
    background: var(--vg-gold);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--vg-gold);
}

/* ===== SECTION HEADERS ===== */
.vg-section {
    padding: 80px 0;
}

.vg-section-dark {
    background: var(--vg-bg-dark);
}

.vg-section-darker {
    background: var(--vg-bg-section);
}

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

.section-header .sub-title {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--vg-gold);
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--vg-white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--vg-gold);
    margin: 12px auto 0;
}

.section-header p {
    font-size: 15px;
    color: var(--vg-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.vg-about {
    background: var(--vg-bg-section);
}

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

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-img-main {
    grid-column: 1 / -1;
    border-radius: 0;
    overflow: hidden;
}

.about-img-main img,
.about-img-sub img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: filter 0.3s ease;
}

.about-img-main img {
    height: 300px;
}

.about-img-sub:hover img,
.about-img-main:hover img {
    filter: brightness(1);
}

.about-content .sub-title {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--vg-gold);
    margin-bottom: 15px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--vg-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    color: var(--vg-text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(50% - 5px);
    color: var(--vg-text);
    font-size: 13px;
    font-weight: 500;
}

.about-feature-item::before {
    content: '▸';
    color: var(--vg-gold);
    font-size: 16px;
    flex-shrink: 0;
}

.btn-vg {
    display: inline-block;
    background: var(--vg-gold);
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 35px;
    text-decoration: none;
    transition: var(--vg-transition);
    border-radius: 0;
    margin-top: 15px;
}

.btn-vg:hover {
    background: var(--vg-gold-dark);
    color: var(--vg-white);
    opacity: 1;
}

/* ===== SERVICES SECTION ===== */
.vg-services {
    background: var(--vg-bg-darker);
}

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

.service-card-vg {
    background: var(--vg-bg-section);
    padding: 35px 25px;
    text-align: center;
    transition: var(--vg-transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.service-card-vg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vg-gold);
    transform: scaleX(0);
    transition: var(--vg-transition);
}

.service-card-vg:hover::before {
    transform: scaleX(1);
}

.service-card-vg:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    opacity: 1;
}

.service-icon-vg {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(237, 186, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--vg-transition);
}

.service-card-vg:hover .service-icon-vg {
    background: rgba(237, 186, 120, 0.2);
}

.service-icon-vg img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: invert(0.8) sepia(1) saturate(2) hue-rotate(5deg);
}

.service-card-vg h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--vg-white);
    margin-bottom: 10px;
}

.service-card-vg p {
    font-size: 13px;
    color: var(--vg-text-muted);
    line-height: 1.6;
}

/* ===== STATS SECTION ===== */
.vg-stats {
    background-image: url('/assets/images/ref/compl-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.vg-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.vg-stats .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--vg-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--vg-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== PORTFOLIO SECTION ===== */
.vg-portfolio {
    background: var(--vg-bg-dark);
}

.portfolio-grid-vg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item-vg {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.portfolio-item-vg img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
    transition: var(--vg-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item-vg:hover .portfolio-overlay {
    background: rgba(0,0,0,0.7);
}

.play-btn-vg {
    width: 55px;
    height: 55px;
    background: var(--vg-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    transition: var(--vg-transition);
}

.portfolio-item-vg:hover .play-btn-vg {
    opacity: 1;
    transform: scale(1);
}

.play-btn-vg svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-left: 4px;
}

.portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
}

.portfolio-caption h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--vg-white);
    margin-bottom: 4px;
}

.portfolio-caption span {
    font-size: 12px;
    color: var(--vg-gold);
    font-weight: 500;
}

/* ===== BLOG SECTION ===== */
.vg-blog {
    background: var(--vg-bg-section);
}

.blog-grid-vg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card-vg {
    background: var(--vg-bg-darker);
    overflow: hidden;
    transition: var(--vg-transition);
    text-decoration: none;
    display: block;
}

.blog-card-vg:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    opacity: 1;
}

.blog-card-img {
    position: relative;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card-vg:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 33%, rgba(0,0,0,0.85) 100%);
    transition: var(--vg-transition);
}

.blog-card-vg:hover .blog-card-overlay {
    background: rgba(0,0,0,0.4);
}

.blog-card-body {
    padding: 25px;
}

.blog-card-meta {
    font-size: 11px;
    color: var(--vg-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--vg-white);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-body .read-more {
    font-size: 12px;
    color: var(--vg-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== VIDEO SHOWCASE ===== */
.vg-video {
    background: var(--vg-bg-dark);
}

.video-wrapper-vg {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

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

/* ===== CONTACT SECTION ===== */
.vg-contact {
    background: var(--vg-bg-section);
}

.contact-grid-vg {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.vg-form input,
.vg-form textarea,
.vg-form select {
    width: 100%;
    background: var(--vg-bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--vg-text);
    padding: 12px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 16px;
    outline: none;
    transition: var(--vg-transition);
    border-radius: 0;
    box-sizing: border-box;
}

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

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

.vg-form select option {
    background: var(--vg-bg-dark);
}

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

.contact-info-vg {
    padding-top: 10px;
}

.contact-info-item-vg {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon-vg {
    width: 50px;
    height: 50px;
    background: rgba(237,186,120,0.1);
    border: 1px solid var(--vg-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-vg svg {
    width: 22px;
    height: 22px;
    fill: var(--vg-gold);
}

.contact-info-text-vg h4 {
    font-size: 14px;
    color: var(--vg-white);
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.contact-info-text-vg p,
.contact-info-text-vg a {
    font-size: 13px;
    color: var(--vg-text-muted);
    text-decoration: none;
}

/* ===== VIDEO THUMBNAIL SLIDER ===== */
.vg-video-slider {
    background: var(--vg-bg-darker);
    padding: 50px 0;
}

.video-thumb-slide {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-thumb-slide:hover img {
    transform: scale(1.05);
}

.video-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--vg-transition);
}

.video-thumb-slide:hover .video-thumb-overlay {
    background: rgba(241,52,53,0.6);
}

.play-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--vg-transition);
}

.play-circle::after {
    content: '';
    border-left: 18px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 5px;
}

.video-thumb-slide:hover .play-circle {
    transform: scale(1.2);
    background: var(--vg-red);
    border-color: var(--vg-red);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--vg-bg-footer);
    padding: 60px 0 0;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--vg-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--vg-transition);
    font-size: 14px;
    color: #fff;
}

.footer-social-link:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--vg-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    font-size: 13px;
    color: var(--vg-text-muted);
    text-decoration: none;
    transition: var(--vg-transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a::before {
    content: '›';
    color: var(--vg-gold);
    font-size: 16px;
}

.footer-links li a:hover {
    color: var(--vg-gold);
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    background: var(--vg-bg-footer-bottom);
    padding: 18px 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 1000px) {
    .hamburger { display: flex; }

    .nav-main {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--vg-bg-darker);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-main.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu > li > a {
        line-height: 1;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        width: 100%;
    }

    .nav-menu > li > a::after { display: none; }

    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.04);
        display: none;
        border-top: none;
        padding: 5px 0;
    }

    .nav-menu .dropdown.active .dropdown-menu { display: block; }
    .nav-menu .dropdown-menu li a { padding: 10px 20px; border-bottom: none; }

    .lang-switcher { margin: 15px 0 10px; }
    .header-cta { margin-top: 10px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid-vg { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid-vg { grid-template-columns: repeat(2, 1fr); }
    .blog-grid-vg { grid-template-columns: repeat(2, 1fr); }
    .contact-grid-vg { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-slide { height: 80vh; }
    .slide-content { padding: 30px; }
    .slide-content h2 { font-size: 1.8rem; }
    .vg-section { padding: 60px 0; }
    .services-grid-vg { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-grid-vg { grid-template-columns: 1fr; }
    .blog-grid-vg { grid-template-columns: 1fr; }
    .vg-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-slide { height: 70vh; }
    .slide-content h2 { font-size: 1.5rem; }
}

/* ===== PROPOSAL MODAL (keep original functionality) ===== */
.proposal-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.proposal-modal.active {
    display: flex;
}

.proposal-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}

.proposal-modal-content {
    position: relative;
    background: var(--vg-bg-darker);
    border: 1px solid rgba(237,186,120,0.2);
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    padding: 40px;
}

.proposal-modal-content h3 {
    color: var(--vg-white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.proposal-modal-content p {
    color: var(--vg-text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.proposal-modal-content input,
.proposal-modal-content select,
.proposal-modal-content textarea {
    width: 100%;
    background: var(--vg-bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--vg-text);
    padding: 11px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 14px;
    outline: none;
    box-sizing: border-box;
}

.proposal-modal-content input:focus,
.proposal-modal-content textarea:focus {
    border-color: var(--vg-gold);
}

.proposal-modal-content textarea { height: 100px; resize: vertical; }

.proposal-modal-content .btn,
.proposal-modal-content .btn-primary {
    background: var(--vg-gold);
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 13px 30px;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: var(--vg-transition);
    width: 100%;
    border-radius: 0;
}

.proposal-modal-content .btn:hover {
    background: var(--vg-gold-dark);
    color: #fff;
}

.proposal-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vg-text-muted);
    transition: var(--vg-transition);
}

.proposal-modal-close:hover {
    background: var(--vg-red);
    color: #fff;
}

.proposal-modal-close svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: var(--vg-text-muted);
    margin-bottom: 5px;
    font-weight: 500;
}

/* ===== COUNTER ANIMATION ===== */
.stat-number[data-target] {
    transition: none;
}

/* ===== SUCCESS MESSAGE ===== */
.form-message {
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 0;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: rgba(237,186,120,0.15);
    border-left: 3px solid var(--vg-gold);
    color: var(--vg-gold);
    display: block;
}

.form-message.error {
    background: rgba(241,52,53,0.15);
    border-left: 3px solid var(--vg-red);
    color: var(--vg-red);
    display: block;
}

/* ===== INTERNAL PAGES — DARK THEME OVERRIDES ===== */

/* Override purple overlay on service pages */
.service-hero-overlay {
    background: linear-gradient(to bottom, rgba(33,37,41,0.6) 0%, rgba(33,37,41,0.85) 100%) !important;
}

/* Dark breadcrumb */
.service-breadcrumb {
    background: var(--vg-bg-section) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-breadcrumb nav,
.service-breadcrumb span {
    color: var(--vg-text-muted) !important;
}

.service-breadcrumb a {
    color: var(--vg-gold) !important;
}

/* Dark section alternating backgrounds */
.service-section {
    background: var(--vg-bg-dark);
}

.service-section.alt-bg {
    background: var(--vg-bg-section) !important;
}

.service-section.dark-bg {
    background: var(--vg-bg-darker) !important;
}

/* Internal page text colors */
.service-section h1,
.service-section h2,
.service-section h3,
.service-section h4,
.service-section h5,
.service-section h6,
.what-is-animation-content h2,
.what-is-animation-content h3,
.benefit-card h3,
.process-step h3,
.section-title h2,
.cta-banner h2,
.equipment-card h3 {
    color: var(--vg-white) !important;
}

.service-section p,
.what-is-animation-content p,
.benefit-card p,
.process-step p,
.equipment-card p {
    color: var(--vg-text-muted);
}

.section-label {
    color: var(--vg-gold) !important;
}

/* Cards in dark theme */
.benefit-card,
.process-step,
.equipment-card,
.about-stat-card {
    background: var(--vg-bg-section) !important;
    border-color: rgba(255,255,255,0.08) !important;
    color: var(--vg-text);
}

.about-stat-number {
    color: var(--vg-gold) !important;
}

.about-stat-label {
    color: var(--vg-text-muted) !important;
}

/* Contact page */
.contact-section {
    background: var(--vg-bg-section) !important;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: var(--vg-bg-dark) !important;
    border-color: rgba(255,255,255,0.12) !important;
    color: var(--vg-text) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.contact-form label {
    color: var(--vg-text-muted) !important;
}

/* Blog pages */
.blog-hero {
    background: var(--vg-bg-section) !important;
    padding: 120px 0 60px !important;
}

.blog-hero h1,
.blog-hero p {
    color: var(--vg-white) !important;
}

.blog-main {
    background: var(--vg-bg-dark) !important;
}

.blog-content {
    background: var(--vg-bg-dark) !important;
    padding: 60px 0 !important;
}

.blog-card {
    background: var(--vg-bg-section) !important;
    border-color: rgba(255,255,255,0.06) !important;
}

.blog-card h2, .blog-card h3, .blog-card-title {
    color: var(--vg-white) !important;
}

.blog-card p, .blog-card-excerpt {
    color: var(--vg-text-muted) !important;
}

/* 404 page */
.not-found-section {
    background: var(--vg-bg-dark) !important;
}

.not-found-section h1,
.not-found-section h2,
.not-found-section p {
    color: var(--vg-white) !important;
}

/* Equipment page */
.equipment-hero,
.equipment-section {
    background: var(--vg-bg-dark) !important;
}

.equipment-grid .equipment-card {
    background: var(--vg-bg-section) !important;
    border-color: rgba(255,255,255,0.08) !important;
}

/* Main body background */
body {
    background: var(--vg-bg-dark) !important;
}

/* Main container padding for non-home pages */
.main:not(.main-home) {
    padding-top: 80px;
    background: var(--vg-bg-dark);
}

/* Article/blog post content */
.article-content,
.post-content {
    color: var(--vg-white) !important;
    background: transparent !important;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6,
.post-content h1,
.post-content h2,
.post-content h3 {
    color: var(--vg-white) !important;
}

.article-content p,
.post-content p,
.article-content li,
.post-content li {
    color: var(--vg-text) !important;
}


/* Contact page hero gradient override */
.contact-hero-gradient {
    background: linear-gradient(to bottom, rgba(33,37,41,0.5) 0%, rgba(33,37,41,0.9) 100%) !important;
}

/* Contact page form cards dark */
.contact-card,
.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--vg-bg-section) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: var(--vg-text) !important;
}

.contact-card h3,
.contact-card h4,
.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    color: var(--vg-white) !important;
}

.contact-card p,
.contact-card label,
.contact-form-wrapper label {
    color: var(--vg-text-muted) !important;
}

.contact-card input,
.contact-card textarea,
.contact-card select,
.contact-form-wrapper input,
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    background: var(--vg-bg-dark) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: var(--vg-text) !important;
}

.contact-info-item h4,
.contact-info-item p,
.contact-info-item a {
    color: var(--vg-text) !important;
}

.contact-info-icon {
    background: rgba(237,186,120,0.1) !important;
    border-color: var(--vg-gold) !important;
}

/* Blog listing */
.blog-post-card,
.blog-post-item {
    background: var(--vg-bg-section) !important;
    border-color: rgba(255,255,255,0.06) !important;
}

.blog-post-title,
.blog-post-card h2,
.blog-post-card h3 {
    color: var(--vg-white) !important;
}

.blog-post-excerpt,
.blog-post-card p {
    color: var(--vg-text-muted) !important;
}

.blog-post-meta span,
.blog-post-date {
    color: var(--vg-gold) !important;
}

/* Pagination */
.pagination a,
.pagination span {
    background: var(--vg-bg-section) !important;
    color: var(--vg-text) !important;
    border-color: rgba(255,255,255,0.1) !important;
}

.pagination a:hover,
.pagination .current {
    background: var(--vg-gold) !important;
    color: #000 !important;
}

/* Fix Read Article link color to gold */
.blog-post-link,
.blog-post-card a,
.blog-post-read-more,
a.read-more {
    color: var(--vg-gold) !important;
}

a.read-more:hover,
.blog-post-card a:hover {
    color: var(--vg-white) !important;
}

/* Contact page form and info cards */
.contact-page-form {
    background: var(--vg-bg-section) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
    border-radius: 0 !important;
}

.contact-page-form h2 {
    color: var(--vg-white) !important;
}

.contact-page-form > p {
    color: var(--vg-text-muted) !important;
}

.contact-page-form label {
    color: var(--vg-text-muted) !important;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    background: var(--vg-bg-dark) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: var(--vg-text) !important;
    border-radius: 0 !important;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
    border-color: var(--vg-gold) !important;
    box-shadow: none !important;
    background: var(--vg-bg-darker) !important;
}

.contact-page-info {
    background: var(--vg-bg-section) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 0 !important;
}

.contact-page-info h3,
.contact-page-info h4 {
    color: var(--vg-white) !important;
}

.contact-page-info p,
.contact-page-info a {
    color: var(--vg-text-muted) !important;
}

.contact-info-icon-wrap {
    background: rgba(237,186,120,0.1) !important;
    border: 1px solid var(--vg-gold) !important;
}

.contact-info-icon-wrap svg,
.contact-info-icon-wrap i {
    color: var(--vg-gold) !important;
    fill: var(--vg-gold) !important;
}
