/*
 * Zoomin Design Theme - Miami Event Videography
 * Based on Zoomin Photography Portfolio Template
 */

/* Import Nunito Sans font */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&display=swap');

/* ================================
   CSS VARIABLES - ZOOMIN PALETTE
   ================================ */
:root {
    --zm-primary: #7d6ee7;
    --zm-primary-dark: #6558c9;
    --zm-dark: #282832;
    --zm-dark2: #151515;
    --zm-grey-bg: rgba(215, 215, 215, 0.17);
    --zm-text: #5f5f5f;
    --zm-heading: #2d275e;
    --zm-link: #505060;
    --zm-white: #ffffff;
    --zm-star: #FF9800;
    --zm-border: rgba(125, 110, 231, 0.2);
    --zm-shadow: 0 5px 20px rgba(125, 110, 231, 0.15);
    --zm-transition: all 0.4s ease;
    --zm-radius: 50px;
}

/* ================================
   BASE OVERRIDES
   ================================ */
body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--zm-text);
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--zm-heading);
    font-weight: 700;
    line-height: 1.4;
}

a {
    color: var(--zm-link);
    transition: var(--zm-transition);
}

a:hover {
    color: var(--zm-primary);
    text-decoration: none;
}

p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--zm-text);
}

/* ================================
   PRELOADER
   ================================ */
.zm-preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zm-preloader .loader-spin {
    width: 50px;
    height: 50px;
    border: 4px solid var(--zm-border);
    border-top-color: var(--zm-primary);
    border-radius: 50%;
    animation: zm-spin 0.8s linear infinite;
}
@keyframes zm-spin {
    to { transform: rotate(360deg); }
}

/* ================================
   HEADER / NAVBAR - ZOOMIN STYLE
   ================================ */
.header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    transition: var(--zm-transition);
}

.header.scrolled {
    position: fixed;
    background: var(--zm-white);
    box-shadow: 0 7px 13px 0 rgba(0,0,0,0.1);
    padding: 12px 0;
}

.header.scrolled .logo-text {
    color: var(--zm-heading) !important;
}

.header.scrolled .nav-menu a {
    color: #505050 !important;
}

.header.scrolled .nav-menu a:hover {
    color: var(--zm-primary) !important;
}

.header.scrolled .hamburger span {
    background: var(--zm-dark) !important;
}

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

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

.logo-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    transition: var(--zm-transition);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-menu li a {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    padding: 8px 14px;
    display: block;
    transition: var(--zm-transition);
}

.nav-menu li a:hover,
.nav-menu li.current > a {
    color: var(--zm-primary) !important;
}

/* Dropdown */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--zm-transition);
    list-style: none;
    margin: 0;
    z-index: 100;
}

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

.nav-menu .dropdown .dropdown-menu li a {
    color: #505060 !important;
    padding: 8px 20px;
    font-size: 14px;
}

.nav-menu .dropdown .dropdown-menu li a:hover {
    color: var(--zm-primary) !important;
    background: #f8f8f8;
}

/* Lang Switcher */
.lang-switcher {
    display: flex;
    gap: 5px;
}

.lang-switcher a {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--zm-transition);
}

.lang-switcher a.active,
.lang-switcher a:hover {
    color: var(--zm-primary);
}

.header.scrolled .lang-switcher a {
    color: rgba(0,0,0,0.5);
}

.header.scrolled .lang-switcher a.active,
.header.scrolled .lang-switcher a:hover {
    color: var(--zm-primary);
}

/* Header CTA Button */
.header-cta {
    background: var(--zm-primary);
    color: #fff !important;
    padding: 10px 28px;
    border-radius: var(--zm-radius);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--zm-primary);
    transition: var(--zm-transition);
    white-space: nowrap;
}

.header-cta:hover {
    background: transparent;
    color: var(--zm-primary) !important;
}

.header.scrolled .header-cta {
    border-color: var(--zm-primary);
}

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

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--zm-transition);
}

/* ================================
   SECTION DEFAULTS
   ================================ */
.section-padding {
    padding: 100px 0;
}

.bg-grey {
    background-color: rgba(215, 215, 215, 0.17);
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--zm-heading);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--zm-primary);
    border-radius: 3px;
}

.section-title.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.default-btn {
    display: inline-block;
    padding: 12px 35px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--zm-primary);
    border: 2px solid var(--zm-primary);
    border-radius: var(--zm-radius);
    transition: var(--zm-transition);
    text-decoration: none;
    margin-right: 10px;
}

.default-btn:hover {
    color: var(--zm-primary);
    background: transparent;
    text-decoration: none;
}

.default-btn-one {
    display: inline-block;
    padding: 12px 35px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--zm-primary);
    background: transparent;
    border: 2px solid var(--zm-primary);
    border-radius: var(--zm-radius);
    transition: var(--zm-transition);
    text-decoration: none;
}

.default-btn-one:hover {
    color: #fff;
    background: var(--zm-primary);
    text-decoration: none;
}

/* ================================
   HERO SLIDER SECTION
   ================================ */
.zm-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.zm-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.zm-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.zm-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.zm-slide-caption {
    max-width: 700px;
    color: #fff;
}

.zm-slide-caption h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--zm-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease 0.2s;
}

.zm-slide.active .zm-slide-caption h4 {
    opacity: 1;
    transform: translateY(0);
}

.zm-slide-caption h1 {
    font-size: 60px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease 0.4s;
}

.zm-slide.active .zm-slide-caption h1 {
    opacity: 1;
    transform: translateY(0);
}

.zm-slide-caption p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease 0.6s;
}

.zm-slide.active .zm-slide-caption p {
    opacity: 1;
    transform: translateY(0);
}

.zm-slide-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease 0.8s;
}

.zm-slide.active .zm-slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.zm-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.zm-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--zm-transition);
    border: none;
    padding: 0;
}

.zm-dot.active {
    background: var(--zm-primary);
    transform: scale(1.3);
}

.zm-slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.zm-arrow {
    width: 48px;
    height: 48px;
    background: rgba(125,110,231,0.3);
    border: 2px solid rgba(125,110,231,0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: var(--zm-transition);
}

.zm-arrow:hover {
    background: var(--zm-primary);
    border-color: var(--zm-primary);
}

/* ================================
   ABOUT SECTION
   ================================ */
.zm-about-section {
    padding: 100px 0;
    background: #fff;
}

.zm-about-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--zm-heading);
    margin-bottom: 20px;
    line-height: 1.3;
}

.zm-about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.zm-about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--zm-text);
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.zm-about-features li:last-child {
    border-bottom: none;
}

.zm-about-features li svg {
    flex-shrink: 0;
    color: var(--zm-primary);
}

.zm-about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(125, 110, 231, 0.15);
}

.zm-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* ================================
   SERVICES SECTION
   ================================ */
.zm-services-section {
    padding: 100px 0;
    background: var(--zm-grey-bg);
}

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

.zm-service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    transition: var(--zm-transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(125, 110, 231, 0.1);
    text-decoration: none;
    display: block;
}

.zm-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--zm-shadow);
    border-color: var(--zm-primary);
    text-decoration: none;
}

.zm-service-icon {
    width: 70px;
    height: 70px;
    background: rgba(125, 110, 231, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--zm-transition);
}

.zm-service-card:hover .zm-service-icon {
    background: var(--zm-primary);
}

.zm-service-icon svg {
    color: var(--zm-primary);
    transition: var(--zm-transition);
}

.zm-service-card:hover .zm-service-icon svg {
    color: #fff;
}

.zm-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--zm-heading);
    margin-bottom: 12px;
}

.zm-service-card p {
    font-size: 14px;
    color: var(--zm-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.zm-service-link {
    color: var(--zm-primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ================================
   PORTFOLIO SECTION
   ================================ */
.zm-portfolio-section {
    padding: 100px 0;
    background: #fff;
}

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

.zm-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    display: block;
}

.zm-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

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

.zm-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(125, 110, 231, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--zm-transition);
    border-radius: 10px;
}

.zm-portfolio-item:hover .zm-portfolio-overlay {
    opacity: 1;
}

.zm-portfolio-overlay svg {
    color: #fff;
    width: 40px;
    height: 40px;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.zm-testimonials-section {
    padding: 100px 0;
    background: var(--zm-grey-bg);
}

.zm-testimonials-slider {
    position: relative;
    overflow: hidden;
}

.zm-testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.zm-testimonial-item {
    flex: 0 0 100%;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .zm-testimonials-track {
        /* show 2 at a time on desktop */
    }
}

.zm-testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(125, 110, 231, 0.1);
    height: 100%;
}

.zm-testimonial-logo {
    margin-bottom: 20px;
    height: 40px;
}

.zm-testimonial-logo img {
    height: 40px;
    object-fit: contain;
}

.zm-testimonial-text {
    font-size: 15px;
    color: var(--zm-text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

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

.zm-testimonial-stars svg {
    color: var(--zm-star);
    width: 18px;
    height: 18px;
}

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

.zm-testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--zm-primary);
}

.zm-testimonial-author h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--zm-heading);
    margin: 0 0 3px;
}

.zm-testimonial-author span {
    font-size: 13px;
    color: var(--zm-text);
}

.zm-testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

/* ================================
   BLOG SECTION
   ================================ */
.zm-blog-section {
    padding: 100px 0;
    background: #fff;
}

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

.zm-blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: var(--zm-transition);
    border: 1px solid rgba(0,0,0,0.06);
    display: block;
    text-decoration: none;
}

.zm-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--zm-shadow);
    text-decoration: none;
}

.zm-blog-image {
    overflow: hidden;
    height: 220px;
}

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

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

.zm-blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px 0;
    font-size: 13px;
}

.zm-blog-meta .category {
    color: var(--zm-primary);
    font-weight: 700;
}

.zm-blog-meta .sep {
    color: #ccc;
}

.zm-blog-meta .date {
    color: var(--zm-text);
}

.zm-blog-content {
    padding: 15px 25px 25px;
}

.zm-blog-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--zm-heading);
    line-height: 1.4;
    margin-bottom: 12px;
}

.zm-blog-content h3 a {
    color: var(--zm-heading);
}

.zm-blog-content h3 a:hover {
    color: var(--zm-primary);
}

.zm-blog-content p {
    font-size: 14px;
    color: var(--zm-text);
    margin-bottom: 15px;
    line-height: 1.7;
}

.zm-blog-read-more {
    color: var(--zm-primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ================================
   PARTNERS SECTION
   ================================ */
.zm-partners-section {
    padding: 60px 0;
    background: var(--zm-grey-bg);
}

.zm-partners-track-wrapper {
    overflow: hidden;
    position: relative;
}

.zm-partners-track {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.zm-partner-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    opacity: 0.6;
    transition: var(--zm-transition);
}

.zm-partner-item:hover {
    opacity: 1;
}

.zm-partner-item span {
    font-size: 14px;
    font-weight: 700;
    color: var(--zm-text);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ================================
   NEWSLETTER SECTION
   ================================ */
.zm-newsletter-section {
    background: var(--zm-dark);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.zm-newsletter-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.zm-newsletter-section p {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 15px;
}

.zm-newsletter-form {
    display: flex;
    gap: 10px;
}

.zm-newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--zm-radius);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    outline: none;
}

.zm-newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.zm-newsletter-form button {
    padding: 14px 30px;
    background: var(--zm-primary);
    color: #fff;
    border: none;
    border-radius: var(--zm-radius);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--zm-transition);
    white-space: nowrap;
}

.zm-newsletter-form button:hover {
    background: var(--zm-primary-dark);
}

/* ================================
   FOOTER - ZOOMIN STYLE
   ================================ */
.footer {
    background: var(--zm-dark) !important;
    padding: 80px 0 40px !important;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo-text {
    color: #fff !important;
    font-size: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 15px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.footer-social li a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--zm-transition);
    font-size: 14px;
}

.footer-social li a:hover {
    background: var(--zm-primary);
    color: #fff;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 20px;
}

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

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

.footer-links li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--zm-transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a:hover {
    color: var(--zm-primary);
    padding-left: 5px;
}

.footer-contact-item {
    margin-bottom: 15px;
}

.footer-contact-item h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--zm-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-contact-item span,
.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--zm-transition);
}

.footer-contact-item a:hover {
    color: var(--zm-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
}

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

/* ================================
   GO TO TOP BUTTON
   ================================ */
.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--zm-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--zm-transition);
    z-index: 99;
    border: none;
}

.go-top.visible {
    opacity: 1;
    visibility: visible;
}

.go-top:hover {
    background: var(--zm-primary-dark);
    transform: translateY(-3px);
}

/* ================================
   PAGE HERO BANNER (Internal Pages)
   ================================ */
.zm-page-hero {
    background: var(--zm-dark);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zm-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125,110,231,0.3) 0%, rgba(40,40,50,0.95) 100%);
}

.zm-page-hero .container {
    position: relative;
    z-index: 1;
}

.zm-page-hero h1 {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.zm-page-hero .breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.zm-page-hero .breadcrumb-nav a {
    color: rgba(255,255,255,0.6);
    transition: var(--zm-transition);
}

.zm-page-hero .breadcrumb-nav a:hover {
    color: var(--zm-primary);
}

.zm-page-hero .breadcrumb-nav .sep {
    color: rgba(255,255,255,0.3);
}

.zm-page-hero .breadcrumb-nav .current {
    color: var(--zm-primary);
}

/* About grid on homepage */
.zm-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .zm-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Section title centered - underline centered */
.section-title[style*="text-align:center"] h2::after,
.section-title[style*="text-align: center"] h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title[style*="text-align:center"],
.section-title[style*="text-align: center"] {
    text-align: center;
}

/* ================================
   ABOUT PAGE
   ================================ */
.zm-about-page {
    padding: 80px 0;
}

/* ================================
   CONTACT PAGE
   ================================ */
.zm-contact-section {
    padding: 80px 0;
}

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

.zm-contact-info h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--zm-heading);
    margin-bottom: 20px;
}

.zm-contact-info p {
    color: var(--zm-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.zm-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.zm-contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(125, 110, 231, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--zm-primary);
}

.zm-contact-detail h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--zm-heading);
    margin-bottom: 4px;
}

.zm-contact-detail span,
.zm-contact-detail a {
    font-size: 14px;
    color: var(--zm-text);
}

.zm-contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(125, 110, 231, 0.1);
}

.zm-contact-form h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--zm-heading);
    margin-bottom: 25px;
}

.zm-form-group {
    margin-bottom: 20px;
}

.zm-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--zm-heading);
    margin-bottom: 8px;
}

.zm-form-group input,
.zm-form-group select,
.zm-form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid rgba(125, 110, 231, 0.2);
    border-radius: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: var(--zm-heading);
    outline: none;
    transition: var(--zm-transition);
    background: #fff;
}

.zm-form-group input:focus,
.zm-form-group select:focus,
.zm-form-group textarea:focus {
    border-color: var(--zm-primary);
    box-shadow: 0 0 0 3px rgba(125, 110, 231, 0.1);
}

.zm-form-group textarea {
    height: 130px;
    resize: vertical;
}

/* ================================
   BLOG PAGE
   ================================ */
.zm-blog-page {
    padding: 80px 0;
}

.zm-blog-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.zm-blog-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.zm-sidebar .sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(125, 110, 231, 0.1);
}

.zm-sidebar .sidebar-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--zm-heading);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--zm-primary);
}

.zm-sidebar .recent-post {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.zm-sidebar .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.zm-sidebar .recent-post img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.zm-sidebar .recent-post h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--zm-heading);
    line-height: 1.4;
    margin-bottom: 4px;
}

.zm-sidebar .recent-post h4 a {
    color: var(--zm-heading);
}

.zm-sidebar .recent-post h4 a:hover {
    color: var(--zm-primary);
}

.zm-sidebar .recent-post span {
    font-size: 12px;
    color: var(--zm-text);
}

/* ================================
   ARTICLE/POST PAGE
   ================================ */
.zm-article-page {
    padding: 80px 0;
}

.zm-article-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.zm-article-content {
    background: #fff;
}

.zm-article-header {
    margin-bottom: 30px;
}

.zm-article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
}

.zm-article-meta .category {
    background: rgba(125, 110, 231, 0.1);
    color: var(--zm-primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
}

.zm-article-meta .date {
    color: var(--zm-text);
    display: flex;
    align-items: center;
    gap: 5px;
}

.zm-article-header h1 {
    font-size: 36px;
    font-weight: 900;
    color: var(--zm-heading);
    line-height: 1.2;
}

.zm-article-featured-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 35px;
}

.zm-article-featured-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.zm-article-body {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
}

.zm-article-body h2,
.zm-article-body h3 {
    color: var(--zm-heading);
    margin-top: 30px;
    margin-bottom: 15px;
}

.zm-article-body p {
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
    line-height: 1.9;
}

.zm-article-body a {
    color: var(--zm-primary);
    text-decoration: underline;
}

/* ================================
   SERVICES PAGE
   ================================ */
.zm-services-page {
    padding: 80px 0;
}

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

/* Equipment page */
.zm-equipment-page {
    padding: 80px 0;
}

/* ================================
   404 PAGE
   ================================ */
.zm-404-section {
    padding: 100px 0;
    text-align: center;
}

.zm-404-section h1 {
    font-size: 120px;
    font-weight: 900;
    color: var(--zm-primary);
    line-height: 1;
    margin-bottom: 0;
}

.zm-404-section h2 {
    font-size: 32px;
    color: var(--zm-heading);
    margin-bottom: 20px;
}

.zm-404-section p {
    color: var(--zm-text);
    font-size: 16px;
    margin-bottom: 30px;
}

/* ================================
   MODAL ADJUSTMENTS
   ================================ */
.proposal-modal .proposal-modal-content {
    border-radius: 16px;
    overflow: hidden;
}

.proposal-modal .proposal-modal-body h3 {
    color: var(--zm-heading);
    font-family: 'Nunito Sans', sans-serif;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .zm-services-grid,
    .zm-blog-grid,
    .zm-services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .zm-blog-page-grid {
        grid-template-columns: 1fr;
    }

    .zm-article-grid {
        grid-template-columns: 1fr;
    }

    .zm-blog-list-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .nav-menu,
    .lang-switcher,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-inner {
        flex-wrap: nowrap;
    }

    .nav-main {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--zm-dark);
        padding: 80px 0 30px;
        overflow-y: auto;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .nav-main.active {
        left: 0;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li a {
        color: rgba(255,255,255,0.85) !important;
        padding: 12px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-menu li a:hover {
        color: var(--zm-primary) !important;
        background: rgba(125, 110, 231, 0.1);
    }

    .nav-menu .dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        border-radius: 0;
        padding: 5px 0;
        display: none;
        margin: 0;
        min-width: unset;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-menu .dropdown .dropdown-menu li a {
        color: rgba(255,255,255,0.6) !important;
        padding-left: 40px;
        font-size: 13px;
    }

    .lang-switcher {
        display: flex !important;
        padding: 15px 25px;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 10px;
    }

    .lang-switcher a {
        color: rgba(255,255,255,0.6) !important;
    }

    .header-cta {
        display: block !important;
        margin: 15px 25px;
        text-align: center;
    }

    .zm-slide-caption h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .zm-services-grid,
    .zm-blog-grid,
    .zm-services-page-grid,
    .zm-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .zm-contact-form {
        padding: 30px 20px;
    }

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

    .zm-newsletter-form {
        flex-direction: column;
    }

    .section-padding {
        padding: 70px 0;
    }

    .zm-slide-caption h1 {
        font-size: 32px;
    }

    .zm-page-hero h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .zm-hero-slider {
        height: 85vh;
    }

    .zm-slide-caption h1 {
        font-size: 26px;
    }

    .section-title h2 {
        font-size: 26px;
    }
}
