:root {
    --primary: #0071e3;
    --charcoal: #121212;
    --light: #f5f5f7;
    --card-bg: #1a1a1a;
    --nav-height: 100px;
    --logo-gold: #ffcc33;
}

/* --- SCROLL ANIMATIONS --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation delays for children */
.fade-in-up-delay-1 { transition-delay: 0.1s; }
.fade-in-up-delay-2 { transition-delay: 0.2s; }
.fade-in-up-delay-3 { transition-delay: 0.3s; }
.fade-in-up-delay-4 { transition-delay: 0.4s; }

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Inter', sans-serif; 
    background: var(--charcoal); 
    color: var(--light); 
    line-height: 1.6; 
}

.container { width: 92%; max-width: 1200px; margin: auto; }

/* --- NAVIGATION --- */
#navbar { 
    position: fixed; width: 100%; top: 0; left: 0; z-index: 9999; 
    background: transparent; 
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

#navbar.nav-scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-wrapper { 
    display: flex; justify-content: space-between; align-items: center; 
    height: var(--nav-height); 
}

/* LOGO */
.logo-link { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    gap: 12px; 
    z-index: 10002; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.nav-logo { 
    height: 60px; 
    width: auto; 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(255, 204, 51, 0));
}

.logo-link:hover .nav-logo {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 16px rgba(255, 204, 51, 0.6));
}

.logo-text { 
    font-weight: 700; 
    font-size: 1rem; 
    text-transform: uppercase; 
    color: var(--logo-gold); 
    line-height: 1.1; 
    transition: all 0.3s ease;
}

.logo-link:hover .logo-text {
    color: #ffd966;
    text-shadow: 0 0 10px rgba(255, 204, 51, 0.5);
}

.logo-text span { 
    display: block; 
    font-weight: 300; 
    font-size: 0.7rem; 
    color: #fff; 
    transition: all 0.3s ease;
}

.logo-link:hover .logo-text span {
    color: #f0f0f0;
}

/* DESKTOP NAV */
.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
    align-items: center; 
}

.nav-links li { 
    position: relative; 
    display: flex; 
    align-items: center; 
}

.nav-links a { 
    color: #fff; 
    text-decoration: none; 
    font-size: 0.8rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    padding: 10px 0; 
    position: relative; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.nav-links a:not(.nav-cta):hover {
    color: #ffd966;
}

/* CURRENT PAGE INDICATOR */
.nav-links a.active-link {
    color: var(--logo-gold) !important;
    font-weight: 700;
}

@media (min-width: 901px) {
    .nav-links a:not(.nav-cta):not(.dropbtn)::after {
        content: ''; 
        position: absolute; 
        width: 0; 
        height: 3px; 
        bottom: 0; 
        left: 0;
        background: linear-gradient(90deg, var(--primary), rgba(0, 113, 227, 0.5));
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
    }
    
    .nav-links a:not(.nav-cta):not(.dropbtn):hover::after { 
        width: 100%; 
        box-shadow: 0 0 10px rgba(0, 113, 227, 0.5);
    }

    .nav-links a.active-link:not(.dropbtn)::after {
        width: 100%;
        background: linear-gradient(90deg, var(--logo-gold), rgba(255, 204, 51, 0.5));
        box-shadow: 0 0 12px rgba(255, 204, 51, 0.6);
    }
    
    .nav-links a.active-link:not(.dropbtn)::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -15px;
        transform: translateY(-50%);
        width: 4px;
        height: 4px;
        background: var(--logo-gold);
        border-radius: 50%;
        box-shadow: 0 0 8px rgba(255, 204, 51, 0.8);
        opacity: 0.8;
    }

    .nav-cta { 
        background: #ffcc33 !important; 
        color: #000 !important; 
        padding: 12px 28px !important; 
        border-radius: 24px !important; 
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
        display: inline-block;
        box-shadow: 0 4px 16px rgba(255, 204, 51, 0.4);
        position: relative;
        overflow: hidden;
        font-weight: 700;
        letter-spacing: 0.5px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-cta::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.1);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }
    
    .nav-cta::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 24px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-cta:hover::before {
        width: 250px;
        height: 250px;
    }
    
    .nav-cta:hover::after {
        opacity: 1;
    }
    
    .nav-cta:hover { 
        background: #fff !important; 
        transform: translateY(-4px) scale(1.05); 
        box-shadow: 0 8px 24px rgba(255, 204, 51, 0.6), 0 0 20px rgba(255, 204, 51, 0.4);
        color: #000 !important;
    }
    
    .nav-cta:active {
        transform: translateY(-2px) scale(1.02);
    }

    .dropdown-content { 
        display: block;
        position: absolute; 
        top: calc(100% + 5px); 
        left: 50%; 
        transform: translateX(-50%) translateY(-5px);
        min-width: 240px; 
        padding-top: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    
    /* Create a bridge area to keep dropdown open when moving from button to menu */
    .dropdown-content::before {
        content: '';
        position: absolute;
        top: -5px;
        left: 0;
        right: 0;
        height: 5px;
    }
    
    .dropdown:hover .dropdown-content { 
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: all;
    }
    
    .dropdown-menu-box { 
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px; 
        padding: 12px 0; 
        box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255, 204, 51, 0.1);
    }
    
    .dropdown-content a { 
        padding: 14px 24px; 
        display: block; 
        font-size: 0.85rem; 
        color: #ccc !important; 
        text-transform: none;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        margin: 2px 8px;
        border-radius: 8px;
    }
    
    .dropdown-content a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: var(--logo-gold);
        border-radius: 0 2px 2px 0;
        transition: height 0.3s ease;
    }
    
    .dropdown-content a:hover { 
        color: var(--logo-gold) !important; 
        background: rgba(255, 204, 51, 0.08);
        transform: translateX(4px);
        padding-left: 28px;
    }
    
    .dropdown-content a:hover::before {
        height: 60%;
    }
    
    .dropbtn {
        position: relative;
    }
    
    /* Underline for dropdown button using ::before */
    .dropbtn::before {
        content: ''; 
        position: absolute; 
        width: 0; 
        height: 3px; 
        bottom: 0; 
        left: 0;
        background: linear-gradient(90deg, var(--primary), rgba(0, 113, 227, 0.5));
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
    }
    
    .dropbtn:hover::before {
        width: calc(100% - 20px); /* Account for arrow space */
        box-shadow: 0 0 10px rgba(0, 113, 227, 0.5);
    }
    
    .dropbtn::after {
        content: '▶';
        font-size: 0.55rem;
        margin-left: 6px;
        display: inline-block;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0.7;
        position: relative;
        z-index: 1;
        vertical-align: middle;
    }
    
    .dropdown:hover .dropbtn::after {
        transform: rotate(90deg);
        opacity: 1;
    }
}

/* MOBILE NAV */
.menu-toggle { 
    display: none; 
    cursor: pointer; 
    flex-direction: column; 
    gap: 6px; 
    z-index: 10002; 
    padding: 8px;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle .bar { 
    width: 28px; 
    height: 3px; 
    background-color: #ffffff; 
    border-radius: 2px; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    :root { --nav-height: 80px; }
    #navbar { background: rgba(18, 18, 18, 0.95); }
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed; 
        top: 0; 
        right: -100%; 
        width: 100%; 
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column; 
        justify-content: flex-start; 
        padding-top: 110px; 
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
        z-index: 10001;
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    }
    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; display: flex; flex-direction: column; align-items: center; margin: 15px 0; }
    
    .nav-links a { 
        font-size: 1.4rem; 
        padding: 8px 0; 
        text-align: center; 
        width: auto; 
        display: inline-block;
    }
    
    .nav-links a.active-link {
        border-bottom: 2px solid var(--logo-gold);
        padding-bottom: 4px;
    }

    .dropdown-content { display: block !important; position: static; transform: none; width: 100%; padding: 0; margin-top: 5px; }
    .dropdown-menu-box { background: transparent; border: none; padding: 0; display: flex; flex-direction: column; align-items: center; }
    .dropdown-content a { font-size: 1rem !important; color: #777 !important; padding: 6px 0 !important; text-transform: none; border: none !important; }

    .nav-cta { 
        background: #ffcc33 !important; 
        color: #000 !important;
        padding: 12px 30px !important; 
        font-size: 1.1rem !important; 
        border-radius: 20px !important; 
        margin: 20px auto 0 !important; 
        width: auto !important; 
        display: inline-flex !important; 
        justify-content: center; 
        align-items: center;
    }

    .menu-toggle.active .bar:nth-child(1) { 
        transform: translateY(9px) rotate(45deg); 
        background-color: var(--logo-gold);
        box-shadow: 0 0 8px rgba(255, 204, 51, 0.6);
    }
    .menu-toggle.active .bar:nth-child(2) { 
        opacity: 0; 
        transform: scaleX(0);
    }
    .menu-toggle.active .bar:nth-child(3) { 
        transform: translateY(-9px) rotate(-45deg); 
        background-color: var(--logo-gold);
        box-shadow: 0 0 8px rgba(255, 204, 51, 0.6);
    }
}

/* --- SHARED UTILITIES --- */
.accent-text { color: var(--logo-gold); }
.section-tag {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

/* --- FOOTER --- */
.main-footer { 
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    padding: 120px 0 50px 0; 
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    color: #fff;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 51, 0.3), transparent);
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr; 
    gap: 60px; 
    margin-bottom: 80px; 
}

/* Logo Sizing & Two-Tone Text */
.footer-logo-container { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 30px; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.footer-logo-container:hover {
    transform: translateY(-3px);
}

.footer-logo { 
    height: 66px; 
    width: auto; 
    object-fit: contain; 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(255, 204, 51, 0));
}

.footer-logo-container:hover .footer-logo {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 6px 20px rgba(255, 204, 51, 0.7));
}

.footer-logo-container .logo-text { 
    font-size: 1.1rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    line-height: 1.1; 
    letter-spacing: 1px;
    color: #ffcc33; 
    transition: all 0.3s ease;
}

.footer-logo-container:hover .logo-text {
    color: #ffd966;
    text-shadow: 0 0 12px rgba(255, 204, 51, 0.6);
}

.footer-logo-container .logo-text span { 
    color: #fff; 
    display: block; 
    font-size: 0.65rem; 
    font-weight: 400; 
    margin-top: 2px; 
    letter-spacing: 2px; 
    transition: all 0.3s ease;
}

.footer-logo-container:hover .logo-text span {
    color: #f0f0f0;
}

/* Footer Typography */
.footer-col h4 { 
    color: #ffcc33; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 2.5px; 
    margin-bottom: 35px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffcc33, transparent);
    border-radius: 2px;
}

.footer-col a { 
    display: block; 
    color: #999; 
    text-decoration: none; 
    font-size: 0.9rem; 
    margin-bottom: 12px; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 0;
    line-height: 1.6;
}

.footer-col a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #ffcc33;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-col a:hover { 
    color: #ffcc33; 
    padding-left: 8px;
    transform: translateX(4px);
}

.footer-col a:hover::before {
    width: 4px;
}

/* Footer Active Page Indicator */
.footer-col a.footer-active {
    color: #ffcc33 !important;
    font-weight: 700 !important;
    position: relative;
    text-decoration: underline;
    text-decoration-color: #ffcc33;
    text-underline-offset: 4px;
    pointer-events: none;
}

.footer-col a.footer-active:hover {
    color: #ffcc33 !important;
    padding-left: 0 !important;
    transform: none !important;
}

.footer-col a.footer-active:hover::before {
    width: 0 !important;
}

.footer-col a.footer-active::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ffcc33;
    border-radius: 50%;
    display: block;
}

/* Footer CTA Button - Reusing nav-cta styling */
.footer-cta-btn { 
    background: #ffcc33 !important; 
    color: #000 !important; 
    padding: 12px 28px !important; 
    border-radius: 24px !important; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    display: inline-block;
    box-shadow: 0 4px 16px rgba(255, 204, 51, 0.4);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-align: center;
}

.footer-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.footer-cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-cta-btn:hover::before {
    width: 250px;
    height: 250px;
}

.footer-cta-btn:hover::after {
    opacity: 1;
}

.footer-cta-btn:hover { 
    background: #fff !important; 
    transform: translateY(-4px) scale(1.05); 
    box-shadow: 0 8px 24px rgba(255, 204, 51, 0.6), 0 0 20px rgba(255, 204, 51, 0.4);
    color: #000 !important;
}

.footer-cta-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Center the final column content */
.footer-col.centered-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Social Icons */
.footer-socials { 
    display: flex; 
    gap: 15px; 
    margin-top: 30px; 
    justify-content: center;
}

.footer-socials a { 
    width: 48px; 
    height: 48px; 
    background: rgba(255, 255, 255, 0.05); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transform-origin: center center;
}

.footer-socials a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.footer-socials a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 51, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.footer-socials a:hover::before {
    opacity: 1;
}

.footer-socials a:hover { 
    background: #ffcc33; 
    color: #000; 
    transform: translateY(-6px) scale(1.1);
    transform-origin: center center;
    border-color: #ffcc33;
    box-shadow: 0 8px 20px rgba(255, 204, 51, 0.5), 0 0 15px rgba(255, 204, 51, 0.3);
}

.footer-socials a:hover i {
    transform: none;
}

.footer-bottom { 
    border-top: 1px solid rgba(255, 255, 255, 0.08); 
    padding-top: 50px; 
    text-align: center; 
    color: #666; 
    font-size: 0.85rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 51, 0.5), transparent);
}

.footer-bottom p {
    margin: 0;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .main-footer {
        padding: 80px 0 40px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr 1fr;
        grid-template-areas: 
            "logo expertise"
            "studio get-quote";
        gap: 50px 60px;
        margin-bottom: 60px;
    }
    
    .footer-col:nth-child(1) {
        grid-area: logo;
    }
    
    .footer-col:nth-child(2) {
        grid-area: expertise;
    }
    
    .footer-col:nth-child(3) {
        grid-area: studio;
    }
    
    .footer-col:nth-child(4) {
        grid-area: get-quote;
    }
    
    .footer-col {
        margin-bottom: 20px;
    }
    
    .footer-col h4 {
        margin-bottom: 25px;
    }
    
    .footer-col a {
        margin-bottom: 12px;
    }
}

@media (max-width: 900px) {
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "logo get-quote";
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "logo"
            "get-quote";
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 70px 0 35px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .footer-logo-container {
        margin-bottom: 25px;
    }
    
    .footer-col h4 {
        margin-bottom: 20px;
        font-size: 0.8rem;
    }
    
    .footer-col a {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .footer-cta-btn {
        padding: 12px 24px !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 600px) {
    .main-footer {
        padding: 60px 0 30px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "logo"
            "get-quote";
        gap: 40px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
    }
    
    .footer-logo-container {
        flex-direction: column;
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .footer-col h4 {
        margin-bottom: 20px;
    }
    
    .footer-col a {
        margin-bottom: 12px;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-cta-btn {
        padding: 12px 28px !important;
        font-size: 0.85rem !important;
    }
}

/* --- PLAY BUTTON STYLES --- */
/* Play button for inline buttons (commercial, documentary, realestate, event-cinematography) */
.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: 0.3s ease;
}

.play-btn:hover {
    color: #ffcc33;
}

.play-icon {
    width: 35px;
    height: 35px;
    background: #ffcc33;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

/* CSS-based play triangle arrow */
.play-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid #000;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 3px; /* Slight offset to center the triangle */
}

/* Play overlay for large video boxes (livet.html) */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    z-index: 2;
    transition: transform 0.3s ease;
}

.play-button-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 204, 51, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* CSS-based play triangle for large overlay button */
.play-button-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px; /* Slight offset to center the triangle */
}

.featured-video-link-box:hover .play-overlay {
    transform: translate(-50%, -80%) scale(1.1);
}

/* Responsive adjustments for play buttons */
@media (max-width: 600px) {
    .play-icon {
        width: 30px;
        height: 30px;
    }
    
    .play-icon::before {
        border-left-width: 8px;
        border-top-width: 5px;
        border-bottom-width: 5px;
        margin-left: 2px;
    }
    
    .play-button-icon {
        width: 60px;
        height: 60px;
    }
    
    .play-button-icon::before {
        border-left-width: 16px;
        border-top-width: 10px;
        border-bottom-width: 10px;
        margin-left: 4px;
    }
}