﻿/* ============================================
   MASTER PAGE SPECIFIC STYLES
   Extracted from mutu.master <style> block
   ============================================ */

/* ============================================
   1. FLOATING ACTION BUTTONS (WhatsApp & Call)
   ============================================ */

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    width: auto;
    height: auto;
}

    .whatsapp-icon img {
        width: 45px;
        height: 45px;
    }

.call-icon {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    width: auto;
    height: auto;
}

    .call-icon img {
        width: 45px;
        height: 45px;
    }

/* Show on mobile devices only */
@media (max-width: 768px) {
    .whatsapp-icon {
        display: block;
    }

    .call-icon {
        display: block;
    }
}

/* ============================================
   2. LOGO ANIMATION
   ============================================ */

.logo-img {
    animation: logoFadeIn 1s ease-in-out;
    max-width: 140px;
    height: auto;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

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

@media (max-width: 768px) {
    .logo-img {
        max-width: 90px;
    }
}

/* ============================================
   3. LEGAL NOTICE MENU HIGHLIGHT (Desktop)
   ============================================ */

.desktop-menu .menu-list li a[href="/legal-notice-form.aspx"] {
    color: #e7a838 !important;
    text-decoration: underline;
    animation: pulse 2s infinite ease-in-out !important;
    font-weight: 600 !important;
}

    .desktop-menu .menu-list li a[href="/legal-notice-form.aspx"]:hover {
        color: white !important;
    }

/* Legal Notice Menu Highlight (Mobile) */
@media (max-width: 768px) {
    .mobile-menu .menu-list li a[href="/legal-notice-form.aspx"] {
        color: #e7a838 !important;
        text-decoration: underline;
        animation: pulse 2s infinite ease-in-out !important;
        font-weight: 500 !important;
        display: inline-block !important;
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }

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

/* ============================================
   4. WHATSAPP CTA BUTTON
   ============================================ */

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1a9b4a;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 10px;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .whatsapp-cta-btn:hover {
        background-color: #20b358;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        color: white;
    }

    .whatsapp-cta-btn img {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }

/* ============================================
   5. PAYMENT BUTTON & CONTAINER
   ============================================ */

.payment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D4AF37;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s ease;
}

    .payment-btn:hover {
        background-color: #C19E27;
        color: white;
    }

/* Payment Button Container */
.pymt {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .whatsapp-cta-btn {
        font-size: 11px;
        padding: 6px 7px;
        max-width: 150px;
    }

        .whatsapp-cta-btn img {
            width: 20px;
            height: 20px;
        }

    .payment-btn {
        font-size: 12px;
        padding: 6px 12px;
        max-width: 150px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .pymt {
        flex-direction: row;
        justify-content: flex-start;
    }
}


/* ============================================
   MODERN ATTRACTIVE HEADER MENU (REFINED)
   Subtle enhancements while preserving functionality
   ============================================ */

/* --- Global Fix for Mobile "Swipe" Effect --- */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* --- 1. STICKY HEADER (Enhanced) --- */
.sticky-header {
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, rgba(30, 25, 20, 0.95) 0%, rgba(40, 35, 30, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

    /* Subtle scroll effect */
    .sticky-header.scrolled {
        box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
    }

    .sticky-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        max-width: 1400px;
        margin: 0 auto;
    }

/* --- 2. LOGO (Subtle Glow on Hover) --- */
.navbar-brand {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1101;
    position: relative;
}

    .navbar-brand:hover {
        transform: scale(1.03);
    }

.logo-img {
    max-width: 160px;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(247, 176, 46, 0.2));
    transition: filter 0.3s ease;
}

.navbar-brand:hover .logo-img {
    filter: drop-shadow(0 3px 12px rgba(247, 176, 46, 0.4));
}

@media (max-width: 768px) {
    .logo-img {
        max-width: 110px;
    }
}

/* --- 3. DESKTOP MENU (Refined Interactions) --- */
@media (min-width: 769px) {
    .navbar-toggler,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }

    .desktop-menu {
        display: flex;
        align-items: center;
    }

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

        .menu-list li {
            position: relative;
        }

    .menu-link {
        display: inline-flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.85);
        font-size: 15px;
        font-weight: 500;
        padding: 10px 16px;
        text-decoration: none;
        border-radius: 8px;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        letter-spacing: 0.2px;
    }

        /* Subtle background on hover */
        .menu-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(247, 176, 46, 0.08);
            border-radius: 8px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .menu-link:hover {
            color: #ffffff;
            transform: translateY(-1px);
        }

            .menu-link:hover::before {
                opacity: 1;
            }

        /* Active state indicator */
        .menu-link.active {
            color: #f7b02e;
        }

            .menu-link.active::after {
                content: '';
                position: absolute;
                bottom: 6px;
                left: 50%;
                transform: translateX(-50%);
                width: 4px;
                height: 4px;
                background: #f7b02e;
                border-radius: 50%;
            }

        /* Legal Notice - Subtle pulse */
        .menu-link[href="/legal-notice-form.aspx"] {
            color: #ffd966 !important;
            font-weight: 600 !important;
            animation: gentle-glow 3s ease-in-out infinite;
        }

    @keyframes gentle-glow {
        0%, 100% {
            text-shadow: 0 0 6px rgba(255, 217, 102, 0.2);
        }

        50% {
            text-shadow: 0 0 12px rgba(255, 217, 102, 0.4);
        }
    }
}

/* --- 4. HAMBURGER TOGGLE (Smooth Animation) --- */
.navbar-toggler {
    display: none;
    background: rgba(247, 176, 46, 0.08);
    border: 1px solid rgba(247, 176, 46, 0.25);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
    transition: all 0.3s ease;
}

    .navbar-toggler:hover {
        background: rgba(247, 176, 46, 0.15);
        border-color: rgba(247, 176, 46, 0.4);
    }

@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }

    .desktop-menu {
        display: none !important;
    }
}

.hamburger-icon {
    display: block;
    width: 22px;
    height: 14px;
    position: relative;
}

    .hamburger-icon .line {
        background: linear-gradient(90deg, #fff 0%, #f7b02e 100%);
        height: 2px;
        width: 100%;
        position: absolute;
        left: 0;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .hamburger-icon .line:nth-child(1) {
            top: 0;
        }

        .hamburger-icon .line:nth-child(2) {
            top: 6px;
            width: 70%;
        }

        .hamburger-icon .line:nth-child(3) {
            top: 12px;
        }

/* Expand middle line on hover */
.navbar-toggler:hover .hamburger-icon .line:nth-child(2) {
    width: 100%;
}

.navbar-toggler.active .hamburger-icon .line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.navbar-toggler.active .hamburger-icon .line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.navbar-toggler.active .hamburger-icon .line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* --- 5. MOBILE MENU DRAWER (Refined) --- */
@media (max-width: 768px) {
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #1a1a1c 0%, #2a2a2c 100%);
        z-index: 1050;
        padding: 80px 0 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
        overflow-y: auto;
    }

        .mobile-menu.open {
            right: 0;
        }

        /* Decorative accent at top */
        .mobile-menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120px;
            background: radial-gradient(circle at top center, rgba(247, 176, 46, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

    /* Dark Overlay */
    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(3px);
        z-index: 1040;
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .mobile-menu.open ~ .mobile-menu-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu .menu-list {
        display: flex;
        flex-direction: column;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    /* Mobile Links - Clean & Simple */
    .mobile-menu .menu-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        font-weight: 500;
        padding: 16px 24px;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: left;
        transition: all 0.3s ease;
        position: relative;
    }

        /* Left accent appears on hover/active */
        .mobile-menu .menu-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, #f7b02e 0%, #e0a026 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-menu .menu-link:active,
        .mobile-menu .menu-link.active {
            background: rgba(247, 176, 46, 0.08);
            color: #ffffff;
        }

            .mobile-menu .menu-link:active::before,
            .mobile-menu .menu-link.active::before {
                opacity: 1;
            }

        /* Legal Notice highlight */
        .mobile-menu .menu-link[href="/send-divorce-legal-notice.aspx"] {
            background: rgba(255, 217, 102, 0.06);
            border-left: 2px solid rgba(255, 217, 102, 0.3);
        }

    /* Dropdown Arrow */
    .mobile-menu .dropdown-toggle::after {
        content: '▼';
        font-size: 10px;
        color: rgba(247, 176, 46, 0.8);
        transition: transform 0.3s ease;
        pointer-events: none;
    }

    .mobile-menu .dropdown.open > .menu-link::after {
        transform: rotate(180deg);
        color: #f7b02e;
    }

    .mobile-menu .dropdown-menu {
        display: none;
        background: rgba(0, 0, 0, 0.9);
        padding: 0;
        margin: 0;
    }

    .mobile-menu .dropdown.open .dropdown-menu {
        display: block;
    }

    .mobile-menu .dropdown-item {
        display: block;
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        padding: 13px 24px 13px 44px;
        text-decoration: none;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        transition: all 0.3s ease;
        position: relative;
    }

        .mobile-menu .dropdown-item::before {
            content: '›';
            position: absolute;
            left: 28px;
            color: rgba(247, 176, 46, 0.5);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .mobile-menu .dropdown-item:active {
            background: rgba(247, 176, 46, 0.1);
            color: #ffffff;
            padding-left: 48px;
        }

            .mobile-menu .dropdown-item:active::before {
                color: #f7b02e;
                left: 32px;
            }

    /* Mobile CTA Button */
    .mobile-menu .mdo-btn-login-mob {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f7b02e 0%, #e0a026 100%);
        color: #1a1a1c;
        margin: 24px 20px 0;
        padding: 14px 20px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(247, 176, 46, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

        .mobile-menu .mdo-btn-login-mob::after {
            content: '→';
            margin-left: 8px;
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .mobile-menu .mdo-btn-login-mob:active {
            transform: scale(0.98);
            box-shadow: 0 2px 8px rgba(247, 176, 46, 0.4);
        }

            .mobile-menu .mdo-btn-login-mob:active::after {
                transform: translateX(3px);
            }
}

/* --- 6. DESKTOP CTA BUTTON (Enhanced) --- */
.mdo-btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #f7b02e 0%, #e0a026 100%);
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 10px;
    box-shadow: 0 3px 10px rgba(247, 176, 46, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

    /* Shine effect on hover */
    .mdo-btn-login::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mdo-btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(247, 176, 46, 0.4);
        color: #ffffff;
    }

        .mdo-btn-login:hover::before {
            opacity: 1;
        }

    .mdo-btn-login::after {
        content: '→';
        font-size: 15px;
        transition: transform 0.3s ease;
    }

    .mdo-btn-login:hover::after {
        transform: translateX(3px);
    }

/* Hide on mobile */
@media (max-width: 768px) {
    .mdo-btn-login {
        display: none !important;
    }
}

/* --- 7. ACCESSIBILITY & PERFORMANCE --- */

/* Focus states */
.menu-link:focus,
.mdo-btn-login:focus,
.navbar-toggler:focus {
    outline: 2px solid rgba(247, 176, 46, 0.6);
    outline-offset: 2px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}





/* ============================================
   MEGA FOOTER STYLES
   ============================================ */
.mega-footer {
    background: linear-gradient(180deg, #151210 0%, #1f1a15 100%);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 0;
    position: relative;
}

/* Logo Section */
.footer-logo-section {
    padding: 40px 0 30px;
    border-bottom: 1px solid rgba(247, 176, 46, 0.1);
}

.footer-brand-wrapper {
    text-align: center;
}

.mega-footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 8px rgba(247, 176, 46, 0.3));
}

.footer-tagline {
    font-size: 15px;
    color: rgba(247, 176, 46, 0.9);
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* CTA Section */
.footer-cta-section {
    padding: 35px 0;
    border-bottom: 1px solid rgba(247, 176, 46, 0.1);
}

.footer-cta-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-cta-subtitle {
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.footer-action-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(247, 176, 46, 0.5);
    white-space: nowrap;
}

    .footer-action-btn:hover {
        border-color: #f7b02e;
        color: #f7b02e;
        text-decoration: none;
        background: rgba(247, 176, 46, 0.05);
    }

/* Navigation Section */
.footer-nav-section {
    padding: 35px 0 25px;
    border-bottom: 1px solid rgba(247, 176, 46, 0.1);
}

.footer-nav-title {
    font-size: 13px;
    font-weight: 700;
    color: #f7b02e;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

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

    .footer-nav-list a {
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        display: inline-block;
    }

        .footer-nav-list a:hover {
            color: #f7b02e;
            padding-left: 5px;
        }

/* Support Section */

.footer-section-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
}


/* Offices Section */
.footer-offices-section {
    padding: 35px 0 25px;
    border-bottom: 1px solid rgba(247, 176, 46, 0.1);
}

.office-address {
    padding: 0;
    text-align: left;
    position: relative;
}

/* Desktop: Vertical dividers between offices */
@media (min-width: 992px) {
    .office-address {
        border-right: 1px solid rgba(247, 176, 46, 0.2);
        padding-right: 20px;
    }

    .col-lg-3:last-child .office-address {
        border-right: none;
    }
}

/* Mobile: Horizontal dividers between offices */
@media (max-width: 991px) {
    .office-address {
        border-bottom: 1px solid rgba(247, 176, 46, 0.2);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .footer-offices-section .row > div:last-child .office-address {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

.office-city {
    font-size: 17px;
    font-weight: 600;
    color: #f7b02e;
    margin-bottom: 8px;
}

.office-full-address {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

/* Global Section */
.footer-global-section {
    padding: 35px 0 25px;
    border-bottom: 1px solid rgba(247, 176, 46, 0.1);
}

.global-flags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.flag-item {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    border: 1px solid rgba(247, 176, 46, 0.15);
}

/* Footer Bottom */
.footer-bottom {
    background: #0a0a0a;
    padding: 10px 0;
}

.footer-security {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 1px;
}

    .footer-copyright a {
        color: #f7b02e;
        text-decoration: none;
    }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .mega-footer-logo {
        max-width: 140px;
    }

    .footer-cta-title {
        font-size: 15px;
    }

    .footer-cta-subtitle {
        font-size: 14px;
    }

    .footer-action-btn {
        padding: 9px 20px;
        font-size: 11px;
    }

    .footer-section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-nav-section {
        padding: 30px 0 20px;
    }

    .footer-nav-title {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-nav-list a {
        font-size: 13px;
    }

    .footer-nav-list li {
        margin-bottom: 8px;
    }

    .footer-offices-section,
    .footer-global-section {
        padding: 30px 0 20px;
    }

    .office-city {
        font-size: 16px;
    }

    .office-full-address {
        font-size: 13px;
    }

    .global-flags {
        gap: 10px;
    }

    .flag-item {
        font-size: 11px;
        padding: 6px 10px;
    }

    .footer-security,
    .footer-copyright {
        font-size: 10px;
    }    
}

@media (max-width: 576px) {
    .footer-logo-section {
        padding: 30px 0 20px;
    }

    .mega-footer-logo {
        max-width: 120px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-cta-section {
        padding: 28px 0;
    }

    .footer-cta-title {
        font-size: 18px;
    }

    .footer-action-btns {
        gap: 12px;
    }

    .footer-action-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .footer-nav-section,
    .footer-offices-section,
    .footer-global-section {
        padding: 25px 0 15px;
    }

}
