/* General Body Styles */
body {
    margin: 0;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

html, body {
    width: 100vw;
    min-height: 100vh;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.container {
    width: 60vw;
    max-width: 60vw;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 4px 2px;
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 0;
    border-bottom: 1px solid #eaeaea;
    height: 150px;
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    margin-left: -50mm;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 0 0 auto;
    margin-right: 0;
}

.logo a {
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
    color: #333;
}

.logo span {
    display: block;
    font-size: 10px;
    color: #999;
    letter-spacing: 1px;
}

nav {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    margin-right: 60mm;
}

nav ul li a {
    white-space: nowrap;
    min-width: 50px;
}

nav a, .dropdown-menu li a {
    text-decoration: none;
    color: #222;
    font-weight: 900;
    font-size: 14px;
    padding: 10px 0;
    transition: color 0.3s;
}

/* Promo style for Focus Test */
/* Promo style for Focus Test */
.promo-focus {
    position: relative;
    display: inline-block;
    padding: 10px 16px;
    margin: 0 4px;
    color: #fff !important;
    background: linear-gradient(90deg, #ff512f, #dd2476, #6a11cb, #2575fc);
    background-size: 300% 300%;
    border-radius: 9999px;
    box-shadow: 0 6px 20px rgba(37,117,252,0.35);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    animation: promoGlow 6s ease infinite;
}

.promo-focus::after {
    content: '★';
    display: inline-block;
    margin-left: 6px;
    font-size: 0.9em;
    color: #ffd54f;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    animation: twinkle 2.2s ease-in-out infinite;
}

.promo-focus:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(37,117,252,0.45);
}

.promo-focus:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(37,117,252,0.45);
}

@keyframes promoGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes twinkle {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.25) rotate(10deg); opacity: 1; }
}

/* Mobile sizing for promo */
@media (max-width: 1024px) {
  .promo-focus {
    display: block !important;
    width: 100% !important;
    padding: 3.5vw 5vw !important;
    font-size: 4.8vw !important;
    text-align: center !important;
    border-radius: 2vw !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25) !important;
    background: linear-gradient(90deg, #ff512f, #dd2476, #6a11cb, #2575fc) !important;
    background-size: 300% 300% !important;
    animation: promoGlow 6s ease infinite !important;
  }
}

/* Ensure Focus Test keeps promo look on mobile despite generic link overrides */
@media (max-width: 1024px) {
  nav ul > li > a.promo-focus {
    background: linear-gradient(90deg, #ff512f, #dd2476, #6a11cb, #2575fc) !important;
    background-size: 300% 300% !important;
    background-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25) !important;
    animation: promoGlow 6s ease infinite !important;
  }
  nav ul > li > a.promo-focus::after {
    content: '★';
    display: inline-block;
    margin-left: 6px;
    font-size: 0.9em;
    color: #ffd54f;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    animation: twinkle 2.2s ease-in-out infinite;
  }
}

/* FINAL MOBILE OVERRIDE (kept at end to win specificity) */
@media (max-width: 1024px) {
  header nav ul li a.promo-focus,
  nav ul li a.promo-focus,
  a.promo-focus {
    background: linear-gradient(90deg, #ff512f, #dd2476, #6a11cb, #2575fc) !important;
    background-size: 300% 300% !important;
    background-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25) !important;
    animation: promoGlow 6s ease infinite !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
  }
  header nav ul li a.promo-focus::after,
  nav ul li a.promo-focus::after,
  a.promo-focus::after {
    content: '★';
    display: inline-block;
    margin-left: 6px;
    font-size: 0.9em;
    color: #ffd54f;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    animation: twinkle 2.2s ease-in-out infinite;
  }
}

/* Mobile sizing for promo */
/* Mobile: keep same look, match size with other buttons */
@media (max-width: 1024px) {
  /* Force exact desktop look on mobile */
  .promo-focus {
    display: inline-block !important;
    width: auto !important;
    background: linear-gradient(90deg, #ff512f, #dd2476, #6a11cb, #2575fc) !important;
    background-size: 300% 300% !important;
    color: #fff !important;
    padding: 10px 16px !important;
    border-radius: 9999px !important;
    box-shadow: 0 6px 20px rgba(37,117,252,0.35) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
  }
}

/* --- Mobile polish overrides (keep at end to win specificity) --- */
/* End mobile sizing adjustments */

nav a:hover, .dropdown-menu li a:hover {
    color: #000;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
}

.dropdown-menu li a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-menu li a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.get-in-touch {
    flex: 0 0 auto;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
}

.get-in-touch .btn {
    border: 1.5px solid #333;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #fff;
    background: #222;
    font-weight: bold;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.get-in-touch .btn:hover {
    background-color: #333;
    color: #fff;
    border-color: #111;
}

/* Modern Hero Section */
.hero {
    min-height: auto;
    height: auto;
    max-height: none;
    padding: 0;
    text-align: center;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: visible;
}
.hero .container {
    height: auto;
    width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}
.hero-inner {
    max-width: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.hero-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 16px;
    background: #f8fafc;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    border: 3px solid #e3e7ee;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 18px;
    font-weight: 500;
}

.hero-btn {
    margin-top: 10px;
    padding: 15px 36px;
    font-size: 1.1rem;
    border-radius: 8px;
    background: #000;
    color: #fff;
    border: none;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.hero-btn:hover {
    background: #222;
}

.hero h2 {
    width: 100%;
    text-align: center;
    margin: 0 0 32px 0;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    display: block;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Video Section */
.video-section {
    background: none;
    padding: 0;
}

.video-section-title {
    text-align: center;
    font-size: 2rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 36px;
    letter-spacing: 0.2px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #e0e0e0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Modern dark mobile background */
    body {
        background: linear-gradient(180deg, #0b0f14 0%, #0f141b 60%, #0a0d12 100%) !important;
        background-attachment: fixed !important;
        color: #f3f6fb;
    }
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero { min-height: auto; height: auto; max-height: none; }
    .hero .container,
    .video-carousel,
    .video-slide,
    .video-slide iframe {
        height: auto;
    }
    .hero-inner {
        max-width: 98vw;
    }
    .hero h2 {
        font-size: 5vw;
    }
    header {
        height: 80px;
    }
    .site-logo {
        max-height: 12vw !important;
    }
    nav a, .dropdown-menu li a {
        font-size: 16px;
        padding: 10px 0;
    }
}

@media (min-width: 600px) {
    .container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100vw;
        max-width: 1200px;
        margin: 0 auto;
        gap: 0;
        position: relative;
    }
    .logo {
        order: 1;
        margin-right: auto;
    }
    nav {
        order: 2;
        flex: 0 1 auto;
        display: flex;
        justify-content: center;
    }
    nav ul {
        display: flex;
        flex-direction: row;
        gap: 40px;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    .get-in-touch {
        order: 3;
        margin-left: auto;
    }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.page-animate {
  animation: fadeIn 0.8s cubic-bezier(0.4,0,0.2,1);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.video-carousel {
    position: relative;
    width: 100vw;
    height: 100%;
    max-width: 100vw;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-slide iframe {
    width: 100vw;
    height: 100%;
    border-radius: 0;
    border: none;
    background: #e0e0e0;
    box-shadow: none;
    display: block;
}

/* Desktop: Visionary click-to-play placeholder */
.yt-ph {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}
.yt-ph img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05) saturate(1.1);
    transform: scale(1.02);
}
.yt-ph::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 50% 50%, rgba(0,0,0,0.0), rgba(0,0,0,0.45)), linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}
.yt-play {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
    box-shadow: 0 12px 36px rgba(0,0,0,0.45), inset 0 0 24px rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease;
}
.yt-play:hover { transform: translateY(-1px) scale(1.03); box-shadow: 0 16px 42px rgba(0,0,0,0.55), inset 0 0 28px rgba(255,255,255,0.08); }
.yt-play:active { transform: scale(0.98); }
.yt-play::before {
    /* pulse ring */
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 9999px;
    background: radial-gradient(60% 60% at 50% 50%, rgba(255,255,255,0.22), rgba(255,255,255,0));
    animation: ytPulse 2.2s ease-in-out infinite;
}
.yt-play svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }

@keyframes ytPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.12); }
}

.carousel-arrow {
    display: none;
}

.site-logo {
    width: auto;
    max-width: 95vw;
    height: 130px;
    max-height: 130px;
    border-radius: 18px;
    margin-right: 24px;
    display: inline-block;
    vertical-align: middle;
    background: #111;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.growth-video-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.growth-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}
.phone-logo { display: none !important; }

.about-icon-li, .hamburger-li, .mobile-modal { display: none !important; }
.desktop-link { display: list-item !important; }

@media (max-width: 1024px) {
    .about-icon-li, .hamburger-li { display: list-item !important; }
    .mobile-modal { display: flex !important; }
    .desktop-link { display: list-item !important; }
}
@media (min-width: 601px) {
    .about-icon-li, .hamburger-li, .mobile-modal { display: none !important; }
    .desktop-link { display: list-item !important; }
}

.drawer-hamburger, .side-drawer, .drawer-backdrop { display: none !important; }

@media (max-width: 1024px) {
    .drawer-hamburger {
        display: block !important;
        position: relative;
        left: 0;
        top: 0;
        z-index: 10001;
        font-size: 2rem;
        background: none;
        border: none;
        color: #222;
        margin-right: 12px;
        margin-left: 0;
        cursor: pointer;
    }
    .side-drawer {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 82vw;
        max-width: 340px;
        background: #fff;
        box-shadow: 2px 0 32px rgba(0,0,0,0.18);
        z-index: 10002;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
        padding-top: 0;
        overflow-y: auto;
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px;
    }
    .side-drawer.open {
        transform: translateX(0);
    }
    .drawer-backdrop {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.18);
        backdrop-filter: blur(2px);
        z-index: 10001;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }
    .drawer-backdrop.open {
        opacity: 1;
        pointer-events: auto;
    }
    .drawer-close {
        position: absolute;
        top: 18px;
        right: 18px;
        font-size: 2.2rem;
        background: none;
        border: none;
        color: #222;
        cursor: pointer;
        z-index: 10003;
    }
    .drawer-menu, .drawer-submenu {
        display: none;
        flex-direction: column;
        gap: 22px;
        font-size: 1.25rem;
        margin-top: 70px;
        padding: 0 28px;
        list-style: none;
        width: 100%;
    }
    .drawer-menu {
        display: flex;
    }
    .drawer-menu a, .drawer-submenu a, .drawer-expand-btn, .drawer-back-btn {
        background: none;
        border: none;
        color: #222;
        text-align: left;
        font-size: 1.15rem;
        padding: 14px 0;
        width: 100%;
        cursor: pointer;
        border-radius: 8px;
        transition: background 0.2s, color 0.2s;
        outline: none;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    .drawer-menu a:hover, .drawer-submenu a:hover, .drawer-expand-btn:hover, .drawer-back-btn:hover {
        background: #f7f7f7;
        color: #111;
    }
    .drawer-arrow {
        float: right;
        font-size: 1.3rem;
    }
    .drawer-icon {
        margin-right: 12px;
        font-size: 1.3rem;
    }
}
@media (min-width: 601px) {
    .drawer-hamburger, .side-drawer, .drawer-backdrop { display: none !important; }
}

@media (max-width: 1024px) {
    .drawer-menu, .drawer-submenu {
        transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
        will-change: transform, opacity;
    }
    .drawer-menu[style*="display: none"] {
        transform: translateX(-40vw);
        opacity: 0;
        pointer-events: none;
    }
    .drawer-menu[style*="display: flex"] {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
    .drawer-submenu {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 10004;
        box-shadow: 2px 0 32px rgba(0,0,0,0.10);
    }
    .drawer-submenu[style*="display: none"] {
        transform: translateX(40vw);
        opacity: 0;
        pointer-events: none;
    }
    .drawer-submenu[style*="display: flex"] {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 1024px) {
    .logo { display: none !important; }
    nav ul > li {
        display: list-item !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        padding: 6px 0 !important;
        margin: 0 !important;
    }
    .get-in-touch {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .get-in-touch .btn {
        font-size: 0.95rem !important;
        padding: 8px 16px !important;
        border-radius: 6px;
    }
}

@media (max-width: 1024px) {
    nav ul {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5vw !important;
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    nav ul > li {
        display: list-item !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    nav ul > li > a, .get-in-touch .btn {
        display: block;
        font-size: 3.5vw !important;
        padding: 2vw 0 !important;
        margin: 0 !important;
        min-width: 0 !important;
        text-align: center;
    }
    .get-in-touch {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
        padding: 0 !important;
    }
    .site-logo {
        max-height: 12vw !important;
    }
    .hero-inner {
        max-width: 98vw;
    }
    .hero h2 {
        font-size: 5vw;
    }
    .get-in-touch .btn {
        font-size: 3.5vw !important;
        padding: 2vw 4vw !important;
        border-radius: 2vw !important;
    }
    .videos-grid {
        gap: 4vw;
    }
}

@media (max-width: 1024px) {
    nav ul > li {
        padding: 2px 0 !important;
        margin: 0 !important;
    }
    nav ul > li > a, .get-in-touch .btn {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
        margin: 0 !important;
    }
    .get-in-touch {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media (max-width: 1024px) {
    header {
        margin-left: 0 !important;
    }
}

@media (max-width: 1024px) {
    /* Remove border, box-shadow, and background from video containers and iframes on mobile */
    .video-slide, .video-container, .growth-video-wrapper {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }
    iframe, .video-slide iframe, .video-container iframe, .growth-video-wrapper iframe {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        width: 100% !important;
        max-width: 100vw !important;
        min-width: 0 !important;
        height: auto !important;
        display: block;
        box-sizing: border-box;
    }
}

@media (max-width: 1024px) {
    html, body {
        height: auto !important;
        min-height: 100vh !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }
    .page-animate {
        min-height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100vw !important;
        padding: 0 !important;
        overflow-y: auto !important;
    }
    header {
        width: 100vw !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    .logo {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100vw !important;
        margin: 0 0 6vw 0 !important;
    }
    .site-logo {
        display: block !important;
        margin: 0 auto 2vw auto !important;
        max-width: 40vw !important;
        max-height: 20vh !important;
    }
    nav {
        width: 100vw !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    nav ul {
        width: 100vw !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 4vw !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-y: auto !important;
        max-height: 80vh !important;
    }
    nav ul > li {
        display: list-item !important;
        width: 80vw !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    nav ul > li > a, .get-in-touch .btn {
        display: block !important;
        width: 100% !important;
        font-size: 5vw !important;
        padding: 4vw 0 !important;
        margin: 0 !important;
        border-radius: 2vw !important;
        background: #f8f8f8 !important;
        color: #222 !important;
        font-weight: 700 !important;
        text-align: center !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.03) !important;
        text-decoration: none !important;
    }
    .get-in-touch {
        width: 80vw !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    /* Hide only video elements on mobile, not .hero */
    .video-carousel, .video-section, .video-slide, .videos-grid, .video-container {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
    
}

@media (max-width: 1024px) {
    .logo {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100vw !important;
        margin: 0 0 6vw 0 !important;
    }
    .site-logo {
        display: block !important;
        margin: 0 auto 2vw auto !important;
        max-width: 40vw !important;
        max-height: 20vh !important;
    }
    nav ul {
        width: 100vw !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 4vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    nav ul > li {
        display: list-item !important;
        width: 80vw !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    nav ul > li > a, .get-in-touch .btn {
        display: block !important;
        width: 100% !important;
        font-size: 5vw !important;
        padding: 4vw 0 !important;
        margin: 0 !important;
        border-radius: 2vw !important;
        background: #f8f8f8 !important;
        color: #222 !important;
        font-weight: 700 !important;
        text-align: center !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.03) !important;
        text-decoration: none !important;
    }
    .get-in-touch {
        width: 80vw !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .desktop-link { display: list-item !important; }
}

@media (max-width: 1024px) {
    .container {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 90vw !important;
        max-width: 90vw !important;
        padding: 2px 1vw !important;
        margin: 0 auto !important;
    }
}

/* Remove desktop-only background image to restore prior state */

@media (max-width: 1024px) {
    header {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      padding: 1rem !important;
    }
  
    .container {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 1rem !important;
      margin: 0 auto !important;
    }
  
    /* Logo visible and centered on top */
    .logo {
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      width: 100% !important;
      margin-bottom: 1.5rem !important;
    }
  
    .site-logo {
      max-width: 40vw !important;
      max-height: 20vh !important;
      display: block !important;
    }
  
    /* Nav links stacked vertically */
    nav {
      width: 100% !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      margin-bottom: 1.5rem !important;
    }
  
    nav ul {
      width: 100% !important;
      list-style: none !important;
      padding: 0 !important;
      margin: 0 !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 1rem !important;
    }
  
    nav ul li {
      width: 100% !important;
      text-align: center !important;
    }
  
    nav ul li a {
      display: block !important;
      font-size: 1.2rem !important;
      font-weight: 700 !important;
      color: #222 !important;
      padding: 0.75rem 0 !important;
      text-decoration: none !important;
      border-radius: 6px !important;
      background: #f8f8f8 !important;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05) !important;
      transition: background-color 0.3s ease !important;
    }
  
    nav ul li a:hover {
      background-color: #e0e0e0 !important;
    }
  
    /* Get in Touch button below */
    .get-in-touch {
      width: 100% !important;
      display: flex !important;
      justify-content: center !important;
    }
  
    .get-in-touch .btn {
      padding: 1rem 2rem !important;
      font-size: 1.2rem !important;
      border-radius: 8px !important;
      background: #222 !important;
      color: #fff !important;
      border: none !important;
      font-weight: 700 !important;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
      text-decoration: none !important;
      transition: background-color 0.3s ease !important;
    }
  
    .get-in-touch .btn:hover {
      background-color: #444 !important;
    }
  }
  
/* Hide mobile-only links on desktop, show on mobile */
.mobile-only { display: none; }
@media (max-width: 1024px) {
  .mobile-only { display: list-item !important; }
  .desktop-only { display: none !important; }
}

@media (max-width: 1024px) {
  body, .page-animate, header, .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
  
@media (max-width: 1024px) {
  .logo span {
    display: none !important;
  }
}
@media (max-width: 1024px) {
    header {
      height: auto !important;
      margin-bottom: 0 !important;
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important;
      margin-left: 0 !important;
    }
    
    .container {
      gap: 6px !important;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .logo {
      margin-bottom: 8px !important;
    }
  
    nav ul {
      gap: 8px !important;
      padding: 0 !important;
      margin: 0 !important;
    }
  
    nav ul > li > a {
      padding-top: 6px !important;
      padding-bottom: 6px !important;
    }
  
    .get-in-touch .btn {
      padding: 0.75rem 1.5rem !important;
      font-size: 1rem !important;
    }
  
    html, body {
      margin: 0 !important;
      padding: 0 !important;
      overflow-x: hidden !important;
      overflow-y: auto !important;
      min-height: 100vh !important;
    }
  }
  
@media (max-width: 1024px) {
  nav ul {
    gap: 2rem !important;
  }
}
  
@media (max-width: 1024px) {
  .logo {
    margin-bottom: 2.5rem !important;
  }
}
  
@media (max-width: 1024px) {
  .logo {
    margin-top: 1.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .get-in-touch {
    margin-top: 2.5rem !important;
  }
}
  
@media (min-width: 601px) {
  nav ul {
    gap: 3.5rem;
  }
}
  
@media (min-width: 1025px) {
  nav ul {
    gap: 5rem !important;
  }
}
  
@media (min-width: 1025px) {
  .get-in-touch {
    margin-left: auto !important;
    justify-content: flex-end !important;
    display: flex !important;
    align-items: center !important;
    margin-left: 250px !important;
  }
}
  
@media (min-width: 1025px) {
  .logo {
    margin-left: 200px !important;
  }
}
  /* Login Button Styles */
.login-btn-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .login-btn {
    display: inline-block;
    padding: 10px 28px;
    background: #fff;
    color: #222;
    border: 2px solid #222;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    margin-left: 24px;
    transition: background 0.2s, color 0.2s, border 0.2s;
    cursor: pointer;
  }
  
  .login-btn:hover {
    background: #222;
    color: #fff;
    border-color: #111;
  }
  
  /* Desktop: Login button to the right of the logo */
  @media (min-width: 1025px) {
    .login-btn-wrapper {
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      margin-left: 0;
      margin-top: 0;
    }
    .login-btn {
      margin-left: 24px;
      margin-top: 0;
      width: auto;
    }
  }
  
  /* Mobile/Tablet: Login button below the logo */
  @media (max-width: 1024px) {
    .login-btn-wrapper {
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin-left: 0;
      margin-top: 0;
    }
    .login-btn {
      margin-left: 0;
      margin-top: 16px;
      width: 80vw;
      max-width: 320px;
      text-align: center;
    }
  }

.logo-login-row {
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .logo-login-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .login-btn {
    margin-left: 0;
    margin-top: 16px;
    width: 80vw;
    max-width: 320px;
    text-align: center;
  }
}

@media (min-width: 1025px) {
    .logo-login-row {
      display: flex;
      align-items: center;
      width: 100%;
      flex-direction: row;
    }
    .logo {
      order: 0;
    }
    .login-btn {
      order: 1;
      margin-left: 0;
      margin-right: 12px;
      margin-top: 0;
      width: auto;
      align-self: center;
      padding: 0.8rem 1.5rem;
      font-size: 15px;
    }
    
  }

@media (max-width: 1024px) {
  .logo-login-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .login-btn {
    margin-left: 0;
    margin-top: 12px;
    margin-bottom: 28px;
    width: 90vw;
    max-width: 340px;
    padding: 0.9rem 1.7rem;
    font-size: 16px;
    text-align: center;
    display: inline-block;
  }
}