/* ============================================ */
        /* JD DESIGNS - COMPLETE STYLESHEET
        /* Includes: Header with 3 logos, Responsive Slideshow, Mobile Menu
        /* ============================================ */
        
        /* ---------- RESET & BASE ---------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            color: #2c2c2c;
            background-color: #FFFFFF;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Google Fonts for better mobile typography */
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        a:hover {
            opacity: 0.8;
        }

        /* ---------- TYPOGRAPHY ---------- */
        body, .menu a, .mobile-menu a {
            font-family: 'Poppins', sans-serif;
        }

        h1, h2, h3, .logo-text {
            font-family: 'Playfair Display', serif;
        }

        /* ---------- HEADER DESKTOP (with 3 logos) ---------- */
        .desktop-header {
            background-color: #FFFFFF;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            padding: 1.2rem 2rem;
            position: relative;
            z-index: 100;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        /* Logo Section - 3 logos in center */
        .logo-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            flex: 2;
        }

        .logo-item {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .logo-item:hover {
            transform: translateY(-3px);
        }

        .logo-img {
            max-height: 65px;
            width: auto;
            object-fit: contain;
        }

        .logo-label {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 0.5rem;
            color: #888;
            font-weight: 500;
        }

        /* Main Navigation */
        .main-nav {
            flex: 3;
        }

        .nav-menu {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 600;
            color: #2c2c2c;
            padding: 0.5rem 0;
            display: inline-block;
        }

        /* Dropdown */
        .nav-menu .sub-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #FAF8F8;
            list-style: none;
            padding: 0.75rem 0;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.25s ease;
            z-index: 100;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            text-align: left;
        }

        .nav-menu li:hover > .sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-menu .sub-menu li {
            padding: 0;
        }

        .nav-menu .sub-menu a {
            padding: 0.6rem 1.5rem;
            display: block;
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            white-space: nowrap;
        }

        .nav-menu .sub-menu a:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

        /* ---------- MOBILE HEADER (with 3 logos in row) ---------- */
        .mobile-header {
            display: none;
            background-color: #FFFFFF;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .mobile-header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-logo-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.8rem;
            flex: 1;
        }

        .mobile-logo-item {
            text-align: center;
        }

        .mobile-logo-img {
            max-height: 40px;
            width: auto;
        }

        .mobile-logo-label {
            font-size: 0.55rem;
            letter-spacing: 1px;
            margin-top: 0.25rem;
            color: #888;
        }

        .menu-toggle {
            background: none;
            border: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: #2c2c2c;
            padding: 0.5rem;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #FFFFFF;
            z-index: 2000;
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            overflow-y: auto;
            padding: 1.5rem;
        }

        .mobile-menu-overlay.active {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 2rem;
        }

        .close-menu {
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #2c2c2c;
        }

        .mobile-nav-menu {
            list-style: none;
        }

        .mobile-nav-menu > li {
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .mobile-nav-menu > li > a {
            display: block;
            padding: 1rem 0;
            font-size: 1rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 600;
        }

        .mobile-nav-menu .sub-menu {
            list-style: none;
            padding-left: 1.2rem;
            display: none;
            margin-bottom: 0.5rem;
        }

        .mobile-nav-menu .sub-menu li a {
            display: block;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .menu-item-has-children {
            position: relative;
        }

        .dropdown-toggle {
            position: absolute;
            right: 0;
            top: 0.8rem;
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            color: #888;
            padding: 0.5rem;
        }

        /* Mobile Social & Copyright */
        .mobile-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0 1.5rem;
        }

        .mobile-social img {
            width: 28px;
            height: auto;
        }

        .mobile-copyright {
            text-align: center;
            font-size: 0.65rem;
            letter-spacing: 1px;
            color: #888;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            padding-top: 1.5rem;
            margin-top: 1rem;
        }

        /* ---------- SLIDESHOW (Responsive with Controls & Autoplay) ---------- */
        .slideshow-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            background-color: #f5f5f5;
        }

        .slideshow-wrapper {
            position: relative;
            width: 100%;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
        }

        .slide {
            flex: 0 0 100%;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            display: block;
        }

        /* Navigation Buttons */
        .slide-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.85);
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 20;
            color: #2c2c2c;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .slide-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.05);
        }

        .btn-prev {
            left: 20px;
        }

        .btn-next {
            right: 20px;
        }

        /* Dots / Indicators */
        .dots-container {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 20;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background-color: white;
            width: 28px;
            border-radius: 10px;
        }

        /* Autoplay pause indicator (optional) */
        .autoplay-status {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-family: monospace;
            z-index: 20;
            backdrop-filter: blur(4px);
        }

        /* ---------- FOOTER ---------- */
        .footer-main {
            background-color: #FFFFFF;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            padding: 2rem 1.5rem;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .footer-social img {
            width: 32px;
            height: auto;
            transition: opacity 0.2s;
        }

        .footer-copyright {
            text-align: center;
            font-size: 0.6rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #888;
            margin-top: 1rem;
        }

        .footer-email {
            text-align: center;
            margin-top: 0.8rem;
        }

        .footer-email a {
            font-size: 0.75rem;
            color: #2c2c2c;
            text-decoration: underline;
        }

        /* ---------- RESPONSIVE ---------- */
        @media (max-width: 992px) {
            .nav-menu {
                gap: 1rem;
            }
            .nav-menu a {
                font-size: 0.6rem;
                letter-spacing: 0.15em;
            }
            .logo-img {
                max-height: 50px;
            }
            .logo-label {
                font-size: 0.6rem;
            }
        }

        @media (max-width: 768px) {
            .desktop-header {
                display: none;
            }
            .mobile-header {
                display: block;
            }
            
            .slide img {
                height: 380px;
            }
            
            .slide-btn {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
            
            .btn-prev {
                left: 12px;
            }
            .btn-next {
                right: 12px;
            }
            
            .dots-container {
                bottom: 15px;
                gap: 8px;
            }
            
            .dot {
                width: 8px;
                height: 8px;
            }
            
            .dot.active {
                width: 22px;
            }
            
            .footer-social img {
                width: 28px;
            }
        }

        @media (max-width: 480px) {
            .slide img {
                height: 280px;
            }
            
            .mobile-logo-img {
                max-height: 32px;
            }
            
            .mobile-logo-label {
                font-size: 0.45rem;
            }
            
            .mobile-logo-row {
                gap: 0.5rem;
            }
            
            .slide-btn {
                width: 32px;
                height: 32px;
                font-size: 0.8rem;
            }
            
            .dots-container {
                bottom: 10px;
                gap: 6px;
            }
        }

        /* Animation for fade-in */
        .flo-block {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Utility */
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }