/* ═══════════════════════════════════════════════
   DENI ESTATE ELEMENTOR WIDGETS - MASTER CSS
   v2.0 - Full Mobile + Tablet Responsive
   ═══════════════════════════════════════════════ */

:root {
    --de-gold: #D4A853;
    --de-gold-light: #E8C882;
    --de-gold-dark: #B08B3E;
    --de-black: #0A0A0A;
    --de-black-light: #141414;
    --de-black-card: #1A1A1A;
    --de-white: #FAFAFA;
    --de-gray: #8A8A8A;
    --de-gray-light: #C5C5C5;
    --de-gray-dark: #2A2A2A;
    --de-serif: 'Playfair Display', Georgia, serif;
    --de-sans: 'DM Sans', system-ui, sans-serif;
    --de-section-pad: 120px;
    --de-container-pad: 24px;
    --de-grid-gap: 24px;
    --de-header-gap: 64px;
}

/* ── GLOBAL RESETS ── */
.de-widget { overflow-x: hidden; }
.de-widget * { box-sizing: border-box; }
.de-widget img { max-width: 100%; height: auto; display: block; }
.de-widget a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

.de-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--de-container-pad);
    width: 100%;
}

/* ── SHARED COMPONENTS ── */
.de-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--de-gold);
    font-family: var(--de-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}
.de-section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--de-gold);
}
.de-section-title {
    font-family: var(--de-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--de-white);
}
.de-section-desc {
    font-family: var(--de-sans);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--de-gray-light);
    max-width: 600px;
    line-height: 1.7;
}

/* ── BUTTONS ── */
.de-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--de-gold);
    color: var(--de-black);
    padding: 16px 36px;
    border-radius: 4px;
    font-family: var(--de-sans);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    min-height: 52px;
}
.de-btn-primary:hover {
    background: var(--de-gold-light);
    color: var(--de-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.3);
}
.de-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--de-white);
    padding: 16px 36px;
    border-radius: 4px;
    font-family: var(--de-sans);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    min-height: 52px;
}
.de-btn-secondary:hover {
    border-color: var(--de-gold);
    color: var(--de-gold);
}

/* ═══════════════════════════════════════
   0. HEADER & NAVIGATION WIDGET
   ═══════════════════════════════════════ */
.de-header-widget { position: sticky; top: 0; z-index: 9999; width: 100%; overflow: visible; }

/* Top Bar */
.de-topbar {
    background: var(--de-black-light);
    border-bottom: 1px solid rgba(212,168,83,0.15);
    padding: 10px 0;
    font-family: var(--de-sans);
    font-size: 0.85rem;
    color: var(--de-gray);
}
.de-topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.de-topbar-left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.de-topbar-left a { color: var(--de-gold-light); transition: color 0.2s; }
.de-topbar-left a:hover { color: var(--de-gold); }
.de-topbar-right { display: flex; gap: 12px; align-items: center; }
.de-topbar-social {
    width: 32px; height: 32px;
    border: 1px solid rgba(212,168,83,0.3);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.3s; color: var(--de-gold-light);
}
.de-topbar-social svg { width: 14px; height: 14px; }
.de-topbar-social:hover { background: var(--de-gold); border-color: var(--de-gold); color: var(--de-black); }

/* Navbar */
.de-navbar {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212,168,83,0.1);
}
.de-navbar-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; gap: 24px;
}

/* Logo */
.de-header-logo, .de-hd-logo { display: inline-flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.de-header-logo img, .de-hd-logo img { height: auto; display: block; }
.de-logo-text {
    font-family: var(--de-serif);
    font-size: 1.5rem; font-weight: 700;
    letter-spacing: 0.08em; color: var(--de-white);
    white-space: nowrap;
}
.de-logo-text em { font-style: normal; color: var(--de-gold); }

/* Desktop Nav Wrapper */
.de-nav-desktop { display: flex; align-items: center; }

/* Desktop Menu (from wp_nav_menu) */
.de-nav-menu {
    display: flex; gap: 0;
    list-style: none; margin: 0; padding: 0;
    align-items: center;
}
.de-nav-item { position: relative; list-style: none; }
.de-nav-link {
    display: inline-flex; align-items: center; gap: 4px;
    font-family: var(--de-sans);
    font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--de-gray-light);
    padding: 12px 16px;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
    text-decoration: none;
}
.de-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 16px; right: 16px;
    height: 2px; background: var(--de-gold);
    transform: scaleX(0); transition: transform 0.3s;
}
.de-nav-link:hover { color: var(--de-white); }
.de-nav-link:hover::after { transform: scaleX(1); }
.de-chevron { transition: transform 0.3s; flex-shrink: 0; margin-left: 2px; }

/* Desktop Dropdown Submenu */
.de-submenu {
    position: absolute;
    top: 100%; left: 0;
    min-width: 240px;
    background: var(--de-black-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    list-style: none; margin: 0;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 100;
}
.de-has-submenu:hover > .de-submenu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.de-has-submenu:hover > .de-nav-link .de-chevron { transform: rotate(180deg); }
.de-submenu li { list-style: none; margin: 0; }
.de-submenu a {
    display: block; padding: 10px 20px;
    font-family: var(--de-sans); font-size: 0.85rem;
    color: var(--de-gray-light); transition: all 0.2s;
    text-decoration: none;
}
.de-submenu a:hover { color: var(--de-gold); background: rgba(212,168,83,0.05); }

/* CTA Button in Nav */
.de-nav-cta {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--de-gold); color: var(--de-black);
    padding: 10px 24px; border-radius: 4px;
    font-family: var(--de-sans); font-weight: 600;
    font-size: 0.85rem; letter-spacing: 0.05em;
    text-transform: uppercase; white-space: nowrap;
    transition: all 0.3s; flex-shrink: 0;
    text-decoration: none; border: none; cursor: pointer;
}
.de-nav-cta:hover { background: var(--de-gold-light); transform: translateY(-1px); color: var(--de-black); }

/* Hamburger (hidden on desktop) */
.de-hamburger {
    display: none;
    background: none; border: none; cursor: pointer;
    padding: 8px; flex-direction: column; gap: 5px;
    align-items: center; justify-content: center;
}
.de-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--de-white); border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Overlay (appended to body via JS) */
.de-mob-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999998;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}
.de-mob-overlay.de-open { opacity: 1; visibility: visible; pointer-events: auto; }

/* Mobile Slide Panel (appended to body via JS) */
.de-mob-panel {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 320px; max-width: 85vw;
    background: #141414;
    z-index: 999999;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex; flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.de-mob-panel.de-open { transform: translateX(0); }
.de-mob-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.de-mob-close {
    background: none; border: none; cursor: pointer;
    color: #C5C5C5; padding: 4px;
    transition: color 0.3s; display: flex; align-items: center;
}
.de-mob-close:hover { color: #fff; }
.de-mob-body { flex: 1; overflow-y: auto; }

/* Mobile Nav Items */
.de-mob-nav { list-style: none; margin: 0; padding: 8px 0; }
.de-mob-nav-item { border-bottom: 1px solid rgba(255,255,255,0.04); list-style: none; }
.de-mob-row { display: flex; align-items: center; justify-content: space-between; }
.de-mob-row > a {
    flex: 1; display: block;
    padding: 16px 24px;
    font-family: 'DM Sans', system-ui, sans-serif; font-size: 1rem;
    font-weight: 500; color: #FAFAFA;
    text-decoration: none; transition: color 0.2s;
}
.de-mob-row > a:hover { color: #D4A853; }
.de-mob-toggle {
    background: none; border: none; cursor: pointer;
    padding: 16px 20px; color: #D4A853;
    display: flex; align-items: center;
}
.de-mob-toggle.de-expanded svg { transform: rotate(180deg); }
.de-mob-toggle svg { transition: transform 0.3s; }

/* Mobile Submenu Accordion */
.de-mob-sub {
    list-style: none; margin: 0; padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(0,0,0,0.25);
}
.de-mob-sub.de-sub-open { max-height: 600px; }
.de-mob-sub li { list-style: none; }
.de-mob-sub li a {
    display: block;
    padding: 10px 24px 10px 40px;
    font-family: 'DM Sans', system-ui, sans-serif; font-size: 0.9rem;
    color: #C5C5C5; text-decoration: none; transition: color 0.2s;
}
.de-mob-sub li a:hover { color: #D4A853; }

/* Mobile CTA + Phone */
.de-mob-cta-btn {
    display: block !important; margin: 16px 24px; text-align: center;
    padding: 14px 24px !important;
    background: #D4A853 !important; color: #0A0A0A !important;
    border-radius: 4px; font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 600; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 0.05em; text-decoration: none;
}
.de-mob-cta-btn:hover { background: #E8C882 !important; }
.de-mob-phone {
    display: block; text-align: center;
    padding: 12px 24px 24px;
    font-family: 'DM Sans', system-ui, sans-serif; font-size: 1rem;
    color: #D4A853; font-weight: 600;
    text-decoration: none;
}

/* ═══════════════════════════════════════
   1. HERO WIDGET
   ═══════════════════════════════════════ */
.de-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--de-black);
    padding-top: 60px;
    padding-bottom: 40px;
}
.de-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1510 40%, #0d0d0d 100%);
}
.de-hero-bg::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(212,168,83,0.08) 0%, transparent 60%);
}
.de-hero-pattern {
    position: absolute; inset: 0; opacity: 0.03;
    background-image:
        linear-gradient(rgba(212,168,83,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,168,83,0.5) 1px, transparent 1px);
    background-size: 80px 80px;
}
.de-hero .de-container {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}
.de-hero-content { max-width: 600px; }
.de-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,168,83,0.1);
    border: 1px solid rgba(212,168,83,0.25);
    padding: 8px 16px; border-radius: 100px;
    font-family: var(--de-sans); font-size: 0.8rem;
    font-weight: 500; color: var(--de-gold-light);
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 32px;
    animation: de-fadeInUp 0.8s ease;
}
.de-hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.de-hero h1 {
    font-family: var(--de-serif);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 900; line-height: 1.1;
    margin-bottom: 24px; color: var(--de-white);
    animation: de-fadeInUp 0.8s ease 0.1s both;
}
.de-hero h1 em { font-style: italic; color: var(--de-gold); }
.de-hero-desc {
    font-family: var(--de-sans);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--de-gray-light); line-height: 1.7;
    margin-bottom: 40px; max-width: 520px;
    animation: de-fadeInUp 0.8s ease 0.2s both;
}
.de-hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: de-fadeInUp 0.8s ease 0.3s both;
}
.de-hero-stats {
    display: flex; gap: 40px;
    margin-top: 56px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: de-fadeInUp 0.8s ease 0.4s both;
}
.de-hero-stat-num {
    font-family: var(--de-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--de-gold); line-height: 1;
}
.de-hero-stat-label {
    font-family: var(--de-sans); font-size: 0.8rem;
    color: var(--de-gray); text-transform: uppercase;
    letter-spacing: 0.1em; margin-top: 6px;
}

/* Hero Visual — Team Image */
.de-hero-visual { position: relative; animation: de-fadeInRight 1s ease 0.3s both; }
.de-hero-team-img {
    position: relative;
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(212,168,83,0.15);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    animation: de-hero-img-in 1.2s cubic-bezier(0.22,1,0.36,1) 0.4s both;
}
.de-hero-team-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 8s ease;
}
.de-hero-team-img:hover img { transform: scale(1.03); }
.de-hero-team-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.35) 0%, transparent 50%);
    pointer-events: none;
}
.de-hero-team-img-placeholder {
    width: 100%; height: 100%; min-height: 480px;
    background: linear-gradient(135deg, #2a2318, #1a1a1a);
    display: flex; align-items: center; justify-content: center;
}
.de-hero-team-img-placeholder svg { width: 80px; height: 80px; opacity: 0.2; color: var(--de-gold); }

@keyframes de-hero-img-in {
    from { opacity: 0; transform: scale(0.97) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Floating elements */
.de-hero-float {
    position: absolute;
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 16px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3); z-index: 3;
}
.de-float-review { top: 40px; left: -40px; animation: de-float 4s ease-in-out infinite; }
.de-float-review-stars { color: var(--de-gold); font-size: 0.85rem; letter-spacing: 2px; }
.de-float-review-text { font-family: var(--de-sans); font-size: 0.78rem; color: var(--de-gray-light); }
.de-float-review-text strong { color: var(--de-white); display: block; }

/* ═══════════════════════════════════════
   2. TRUST BAR
   ═══════════════════════════════════════ */
.de-trust-bar { background: var(--de-black-light); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); padding: 28px 0; }
.de-trust-bar .de-container { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.de-trust-item { display: flex; align-items: center; gap: 12px; font-family: var(--de-sans); font-size: 0.85rem; color: var(--de-gray); white-space: nowrap; }
.de-trust-item svg { width: 20px; height: 20px; color: var(--de-gold); flex-shrink: 0; }
.de-trust-item strong { color: var(--de-white); }

/* ═══════════════════════════════════════
   3. ABOUT
   ═══════════════════════════════════════ */
.de-about { padding: var(--de-section-pad) 0; background: var(--de-black); position: relative; }
.de-about .de-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.de-about-visual { position: relative; }
.de-about-img-box { border-radius: 12px; height: 480px; overflow: hidden; position: relative; border: 1px solid rgba(212,168,83,0.1); }
.de-about-img-box img { width: 100%; height: 100%; object-fit: cover; }
.de-about-img-box .de-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--de-black-card), #1f1a12); display: flex; align-items: center; justify-content: center; }
.de-about-img-box .de-placeholder svg { width: 80px; height: 80px; opacity: 0.2; color: var(--de-gold); }
.de-about-accent { position: absolute; bottom: -20px; right: -20px; width: 160px; height: 160px; border: 2px solid var(--de-gold); border-radius: 12px; opacity: 0.2; pointer-events: none; }
.de-about-text .de-section-desc { max-width: 100%; }
.de-about-text .de-section-desc p { margin-bottom: 12px; color: var(--de-gray-light); font-size: clamp(0.95rem, 1.5vw, 1.05rem); line-height: 1.7; }
.de-about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.de-about-feature { display: flex; gap: 14px; align-items: flex-start; }
.de-about-feature-icon { width: 40px; height: 40px; background: rgba(212,168,83,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.de-about-feature-icon svg { width: 18px; height: 18px; color: var(--de-gold); }
.de-about-feature h4 { font-family: var(--de-sans); font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; color: var(--de-white); }
.de-about-feature p { font-family: var(--de-sans); font-size: 0.8rem; color: var(--de-gray); line-height: 1.5; }

/* ═══════════════════════════════════════
   4. SERVICES
   ═══════════════════════════════════════ */
.de-services { padding: var(--de-section-pad) 0; background: var(--de-black-light); position: relative; }
.de-services::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,168,83,0.3), transparent); }
.de-services-header { text-align: center; margin-bottom: var(--de-header-gap); }
.de-services-header .de-section-desc { margin: 0 auto; }
.de-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--de-grid-gap); }
.de-services-grid.de-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.de-service-card { background: var(--de-black-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 40px 32px; transition: all 0.4s ease; position: relative; overflow: hidden; }
.de-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--de-gold); transform: scaleX(0); transition: transform 0.4s ease; }
.de-service-card:hover { border-color: rgba(212,168,83,0.2); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.de-service-card:hover::before { transform: scaleX(1); }
a.de-service-card { text-decoration: none; display: block; color: inherit; }
.de-service-card--linked { cursor: pointer; }
.de-service-card--linked:hover .de-service-card-arrow { opacity: 1; transform: translateX(4px); }
.de-service-card-arrow { display: inline-flex; align-items: center; margin-top: 20px; color: var(--de-gold); opacity: 0; transform: translateX(0); transition: opacity 0.3s ease, transform 0.3s ease; }
.de-service-icon { width: 56px; height: 56px; background: rgba(212,168,83,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.de-service-icon svg { width: 24px; height: 24px; color: var(--de-gold); }
.de-service-icon i { font-size: 24px; color: var(--de-gold); }
.de-service-card h2, .de-service-card .de-service-card-title { font-family: var(--de-serif); font-size: 1.2rem; font-weight: 700; margin: 0 0 12px 0; color: var(--de-white); }
.de-service-card p { font-family: var(--de-sans); font-size: 0.9rem; color: var(--de-gray); line-height: 1.6; }

/* ═══════════════════════════════════════
   5. PROCESS
   ═══════════════════════════════════════ */
.de-process { padding: var(--de-section-pad) 0; background: var(--de-black); }
.de-process-header { text-align: center; margin-bottom: 72px; }
.de-process-header .de-section-desc { margin: 0 auto; }
.de-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.de-process-steps::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,168,83,0.3), rgba(212,168,83,0.3), transparent); }
.de-process-step { text-align: center; position: relative; }
.de-process-num { width: 80px; height: 80px; background: var(--de-black-card); border: 2px solid rgba(212,168,83,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: var(--de-serif); font-size: 1.5rem; font-weight: 700; color: var(--de-gold); position: relative; z-index: 2; transition: all 0.3s ease; }
.de-process-step:hover .de-process-num { background: var(--de-gold); color: var(--de-black); border-color: var(--de-gold); }
.de-process-step h3 { font-family: var(--de-serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--de-white); }
.de-process-step p { font-family: var(--de-sans); font-size: 0.85rem; color: var(--de-gray); line-height: 1.6; }

/* ═══════════════════════════════════════
   6. CATEGORIES
   ═══════════════════════════════════════ */
.de-categories { padding: var(--de-section-pad) 0; background: var(--de-black-light); }
.de-categories-header { text-align: center; margin-bottom: var(--de-header-gap); }
.de-categories-header .de-section-desc { margin: 0 auto; }
.de-categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--de-grid-gap); }
.de-cat-card { background: var(--de-black-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; transition: all 0.4s ease; cursor: pointer; display: block; }
.de-cat-card:hover { transform: translateY(-4px); border-color: rgba(212,168,83,0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.de-cat-card-img { height: 200px; background: linear-gradient(135deg, #222, #1a1a1a); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.de-cat-card-img img { width: 100%; height: 100%; object-fit: cover; }
.de-cat-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.8), transparent 50%); pointer-events: none; }
.de-cat-card-body { padding: 24px; }
.de-cat-card h3 { font-family: var(--de-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--de-white); }
.de-cat-card p { font-family: var(--de-sans); font-size: 0.85rem; color: var(--de-gray); line-height: 1.5; }
.de-cat-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-family: var(--de-sans); font-size: 0.85rem; font-weight: 600; color: var(--de-gold); transition: gap 0.3s ease; }
.de-cat-card:hover .de-cat-card-link { gap: 12px; }
.de-cat-card-link svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════
   7. REVIEWS (Google Shortcode wrapper)
   ═══════════════════════════════════════ */
.de-reviews { padding: var(--de-section-pad) 0; background: var(--de-black); }
.de-reviews-header { text-align: center; margin-bottom: var(--de-header-gap); }
.de-reviews-header .de-section-desc { margin: 0 auto; }
.de-reviews-shortcode-wrap { width: 100%; overflow: hidden; }
.de-reviews-shortcode-wrap > * { max-width: 100% !important; }
.de-reviews-shortcode-wrap iframe { max-width: 100% !important; width: 100% !important; }

/* ═══════════════════════════════════════
   8. FAQ
   ═══════════════════════════════════════ */
.de-faq { padding: var(--de-section-pad) 0; background: var(--de-black-light); }
.de-faq .de-container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: flex-start; }
.de-faq-list { display: flex; flex-direction: column; gap: 12px; }
.de-faq-item { background: var(--de-black-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; overflow: hidden; transition: border-color 0.3s ease; }
.de-faq-item.de-active { border-color: rgba(212,168,83,0.2); }
.de-faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; font-family: var(--de-sans); font-weight: 600; font-size: 0.95rem; color: var(--de-white); transition: color 0.3s ease; background: none; border: none; width: 100%; text-align: left; gap: 16px; }
.de-faq-q:hover { color: var(--de-gold); }
.de-faq-q svg { width: 20px; height: 20px; color: var(--de-gold); flex-shrink: 0; transition: transform 0.3s ease; }
.de-faq-item.de-active .de-faq-q svg { transform: rotate(180deg); }
.de-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.de-faq-item.de-active .de-faq-a { max-height: 300px; }
.de-faq-a-inner { padding: 0 24px 20px; font-family: var(--de-sans); font-size: 0.9rem; color: var(--de-gray); line-height: 1.7; }

/* ═══════════════════════════════════════
   9. CTA
   ═══════════════════════════════════════ */
.de-cta-section { padding: var(--de-section-pad) 0; position: relative; overflow: hidden; background: var(--de-black); }
.de-cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(212,168,83,0.06) 0%, transparent 60%); }
.de-cta-box { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.de-cta-box h2 { font-family: var(--de-serif); font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.15; margin-bottom: 20px; color: var(--de-white); }
.de-cta-box h2 em { font-style: italic; color: var(--de-gold); }
.de-cta-box > p { font-family: var(--de-sans); font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--de-gray-light); margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.de-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.de-cta-phone { display: flex; align-items: center; gap: 12px; margin-top: 32px; justify-content: center; font-family: var(--de-sans); font-size: 0.9rem; color: var(--de-gray); flex-wrap: wrap; }
.de-cta-phone a { color: var(--de-gold); font-weight: 600; font-size: 1.1rem; }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes de-fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes de-fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes de-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.de-animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.de-animate-on-scroll.de-visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════════
   RESPONSIVE: SMALL DESKTOP (≤1280px)
   ═══════════════════════════════════════════════ */
@media (max-width: 1280px) {
    .de-hero .de-container { gap: 48px; }
    .de-about .de-container { gap: 48px; }
    .de-faq .de-container { gap: 48px; }
    .de-hero-float.de-float-review { left: -20px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE: TABLET LANDSCAPE (≤1024px)
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root { --de-section-pad: 96px; --de-header-gap: 48px; }

    /* Header */
    .de-nav-desktop { display: none; }
    .de-cta-desktop { display: none; }
    .de-hamburger { display: flex; }

    .de-hero { min-height: auto; padding: 80px 0 60px; }
    .de-hero .de-container { grid-template-columns: 1fr; gap: 40px; }
    .de-hero-content { max-width: 100%; }
    .de-hero-visual { order: -1; }
    .de-hero-team-img { max-height: 360px; }
    .de-hero-team-img img { max-height: 360px; }
    .de-float-review { top: 16px; left: 16px; }

    .de-about .de-container { grid-template-columns: 1fr; gap: 48px; }
    .de-about-visual { order: -1; }
    .de-about-img-box { height: 360px; }
    .de-about-accent { display: none; }

    .de-services-grid,
    .de-services-grid.de-grid-cols-2,
    .de-services-grid.de-grid-cols-3 { grid-template-columns: repeat(2, 1fr); }

    .de-process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
    .de-process-steps::before { display: none; }
    .de-process-num { width: 70px; height: 70px; font-size: 1.3rem; }

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

    .de-faq .de-container { grid-template-columns: 1fr; gap: 40px; }
    .de-faq-left { text-align: center; }
    .de-faq-left .de-section-desc { margin: 0 auto; }

    .de-trust-bar .de-container { gap: 32px; }
    .de-trust-item { white-space: normal; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE: TABLET PORTRAIT (≤768px)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root { --de-section-pad: 72px; --de-container-pad: 20px; --de-grid-gap: 16px; --de-header-gap: 40px; }

    /* Header */
    .de-topbar-left { flex-direction: column; gap: 4px; align-items: flex-start; }
    .de-topbar-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .de-topbar { padding: 8px 0; font-size: 0.8rem; }
    .de-mob-panel { width: 300px; }

    .de-hero { min-height: auto; padding: 72px 0 48px; }
    .de-hero h1 { margin-bottom: 20px; }
    .de-hero-badge { font-size: 0.7rem; padding: 6px 12px; margin-bottom: 24px; }
    .de-hero-desc { margin-bottom: 32px; }
    .de-hero-actions { flex-direction: column; }
    .de-hero-actions .de-btn-primary,
    .de-hero-actions .de-btn-secondary { width: 100%; justify-content: center; padding: 14px 24px; }
    .de-hero-stats { gap: 24px; margin-top: 40px; padding-top: 24px; flex-wrap: wrap; }
    .de-hero-stat-num { font-size: 1.8rem; }

    .de-trust-bar { padding: 24px 0; }
    .de-trust-bar .de-container { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; justify-items: start; }
    .de-trust-item { font-size: 0.8rem; gap: 8px; }
    .de-trust-item svg { width: 18px; height: 18px; }

    .de-about-img-box { height: 280px; }
    .de-about-features { grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }

    .de-services-grid,
    .de-services-grid.de-grid-cols-2,
    .de-services-grid.de-grid-cols-3 { grid-template-columns: 1fr; }
    .de-service-card { padding: 32px 24px; }

    .de-process-steps { grid-template-columns: 1fr; gap: 32px; }
    .de-process-header { margin-bottom: 48px; }
    .de-process-num { width: 64px; height: 64px; font-size: 1.2rem; }

    .de-categories-grid { grid-template-columns: 1fr; }
    .de-cat-card-img { height: 180px; }

    .de-faq-q { padding: 16px 20px; font-size: 0.9rem; }
    .de-faq-a-inner { padding: 0 20px 16px; font-size: 0.85rem; }
    .de-faq-item.de-active .de-faq-a { max-height: 350px; }

    .de-cta-actions { flex-direction: column; align-items: stretch; }
    .de-cta-actions .de-btn-primary,
    .de-cta-actions .de-btn-secondary { width: 100%; justify-content: center; padding: 14px 24px; }
    .de-cta-phone { flex-direction: column; gap: 4px; }

    .de-section-tag { font-size: 0.7rem; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE: MOBILE (≤480px)
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {
    :root { --de-section-pad: 56px; --de-container-pad: 16px; --de-grid-gap: 12px; --de-header-gap: 32px; }

    .de-topbar { display: none; }
    .de-mob-panel { width: 100%; max-width: 100vw; }
    .de-navbar-inner { padding: 12px 0; }

    .de-hero { padding: 64px 0 36px; }
    .de-hero-badge { font-size: 0.65rem; letter-spacing: 0.04em; }
    .de-hero-desc { font-size: 0.9rem; margin-bottom: 28px; }
    .de-hero-stats { gap: 16px; margin-top: 32px; padding-top: 20px; }
    .de-hero-stat-num { font-size: 1.5rem; }
    .de-hero-stat-label { font-size: 0.7rem; letter-spacing: 0.06em; }
    .de-hero-actions .de-btn-primary,
    .de-hero-actions .de-btn-secondary { padding: 12px 20px; font-size: 0.8rem; min-height: 48px; }

    .de-trust-bar .de-container { grid-template-columns: 1fr; gap: 12px; }
    .de-trust-item { font-size: 0.78rem; }

    .de-about-img-box { height: 220px; }
    .de-about-feature h4 { font-size: 0.85rem; }
    .de-about-feature p { font-size: 0.75rem; }

    .de-service-card { padding: 28px 20px; }
    .de-service-icon { width: 48px; height: 48px; margin-bottom: 20px; }
    .de-service-icon svg { width: 20px; height: 20px; }
    .de-service-card h3 { font-size: 1.05rem; }
    .de-service-card p { font-size: 0.85rem; }

    .de-process-num { width: 56px; height: 56px; font-size: 1.1rem; }
    .de-process-step h3 { font-size: 1rem; }
    .de-process-step p { font-size: 0.8rem; }

    .de-cat-card-img { height: 160px; }
    .de-cat-card-body { padding: 20px; }
    .de-cat-card h3 { font-size: 1.05rem; }
    .de-cat-card p { font-size: 0.8rem; }

    .de-faq-q { padding: 14px 16px; font-size: 0.85rem; gap: 12px; }
    .de-faq-a-inner { padding: 0 16px 14px; font-size: 0.8rem; }
    .de-faq-item.de-active .de-faq-a { max-height: 400px; }

    .de-cta-box h2 { margin-bottom: 16px; }
    .de-cta-box > p { margin-bottom: 28px; }
    .de-cta-actions .de-btn-primary,
    .de-cta-actions .de-btn-secondary { padding: 12px 20px; font-size: 0.8rem; min-height: 48px; }
    .de-cta-phone { margin-top: 24px; font-size: 0.85rem; }
    .de-cta-phone a { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE: TINY SCREENS (≤360px)
   ═══════════════════════════════════════════════ */
@media (max-width: 360px) {
    :root { --de-section-pad: 44px; --de-container-pad: 12px; }

    .de-hero { padding: 40px 0; }
    .de-hero-stats { flex-direction: column; gap: 16px; }
    .de-hero-badge { font-size: 0.6rem; padding: 5px 10px; }

    .de-about-img-box { height: 180px; }
    .de-about-features { gap: 16px; margin-top: 24px; }

    .de-service-card { padding: 24px 16px; }
    .de-cat-card-img { height: 140px; }
    .de-cat-card-body { padding: 16px; }

    .de-faq-q { padding: 12px 14px; font-size: 0.8rem; }
}

/* ═══════════════════════════════════════════════
   TOUCH DEVICE OPTIMIZATIONS
   ═══════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
    .de-service-card:hover, .de-cat-card:hover { transform: none; box-shadow: none; }
    .de-service-card:active, .de-cat-card:active { transform: scale(0.98); }
    .de-process-step:hover .de-process-num { background: var(--de-black-card); color: var(--de-gold); border-color: rgba(212,168,83,0.3); }
    .de-btn-primary:hover { transform: none; box-shadow: none; }
    .de-btn-primary:active { transform: scale(0.97); }
}

/* ═══════════════════════════════════════════════
   LANDSCAPE PHONE FIX
   ═══════════════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
    .de-hero { min-height: auto; padding: 40px 0; }
    .de-hero-stats { margin-top: 24px; padding-top: 16px; }
}

/* ═══════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════ */
@media print {
    .de-hero-bg, .de-hero-pattern, .de-hero-float, .de-animate-on-scroll { display: none !important; }
    .de-widget { padding: 24px 0 !important; }
    .de-section-title, .de-hero h1 { color: #000 !important; }
}
