/* ============================================
   DETECTIVE DAVE - PREMIUM STYLES
   Gold Theme: #D4AF37
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

.detective-dave-new {
    width: 100%;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
.dd-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.dd-nav-scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dd-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.dd-nav-logo {
    flex-shrink: 0;
}

.dd-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.dd-logo-svg {
    width: 45px;
    height: 45px;
    color: #D4AF37;
}

.dd-logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.dd-logo-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 1px;
    line-height: 1.2;
}

.dd-logo-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dd-nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.dd-nav-hamburger span {
    width: 25px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.dd-nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.dd-nav-links li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.dd-nav-links li a:hover {
    color: #D4AF37;
}

.dd-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.dd-nav-links li a:hover::after {
    width: 100%;
}

.dd-nav-cta {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4B0 100%);
    color: #1a1a1a !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dd-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.dd-nav-cta::after {
    display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.dd-hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.dd-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dd-hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(42, 42, 42, 0.88) 100%);
}

.dd-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}

.dd-hero-content-new {
    max-width: 800px;
}

.dd-hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.dd-hero-h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.dd-hero-p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.dd-hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.dd-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dd-btn-hero-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4B0 100%);
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.dd-btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.dd-btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dd-btn-hero-secondary:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    transform: translateY(-3px);
}

.dd-hero-stats {
    display: flex;
    gap: 4rem;
}

.dd-stat {
    text-align: left;
}

.dd-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.dd-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.dd-hero-tagline-bottom {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(212, 175, 55, 0.5);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   SECTION SHARED STYLES
   ============================================ */
.dd-section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.dd-section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.dd-section-h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.dd-section-p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.dd-section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.dd-section-p-center {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.dd-about-new {
    background: #ffffff;
}

.dd-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dd-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.dd-about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.dd-about-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    color: #D4AF37;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.dd-about-content-new {
    padding: 2rem 0;
}

.dd-about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.dd-about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1.05rem;
}

.dd-about-feature svg {
    color: #D4AF37;
    flex-shrink: 0;
}

.dd-btn-about {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4B0 100%);
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.dd-btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.dd-services-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.dd-services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.dd-service-card-new {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dd-service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.dd-service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.dd-service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.4) 100%);
}

.dd-service-content {
    padding: 2rem;
}

.dd-service-icon-new {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.dd-service-title-new {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.dd-service-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.dd-service-link {
    color: #D4AF37;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.dd-service-link:hover {
    gap: 0.5rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.dd-why-us {
    background: #ffffff;
}

.dd-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.dd-why-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.dd-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.dd-why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.dd-why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.dd-why-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.dd-faq-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.dd-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.dd-faq-left {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.dd-btn-faq {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4B0 100%);
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.dd-btn-faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.dd-faq-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dd-faq-item-new {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dd-faq-item-new:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.dd-faq-q {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.dd-faq-q:hover {
    color: #D4AF37;
}

.dd-faq-chevron {
    color: #D4AF37;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.dd-faq-active .dd-faq-chevron {
    transform: rotate(180deg);
}

.dd-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dd-faq-active .dd-faq-a {
    max-height: 500px;
}

.dd-faq-a p {
    padding: 0 2rem 1.5rem;
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

/* ============================================
   COVERAGE AREA
   ============================================ */
.dd-coverage-new {
    background: #ffffff;
}

.dd-coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.dd-coverage-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dd-coverage-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #D4AF37;
}

.dd-city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.dd-city-tag-new {
    background: #ffffff;
    color: #1a1a1a;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.dd-city-tag-new:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4B0 100%);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border-color: transparent;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.dd-contact-new {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
}

.dd-contact-new .dd-section-tag {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.dd-contact-new .dd-section-h2 {
    color: #ffffff;
}

.dd-contact-new .dd-section-p {
    color: rgba(255, 255, 255, 0.8);
}

.dd-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.dd-contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.dd-contact-info-item {
    display: flex;
    gap: 1rem;
}

.dd-contact-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.dd-contact-info-item h4 {
    font-size: 1.1rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.dd-contact-info-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.dd-contact-info-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dd-contact-info-item a:hover {
    color: #D4AF37;
}

.dd-contact-form-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.dd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dd-form-field {
    margin-bottom: 1.5rem;
}

.dd-form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.dd-form-field input,
.dd-form-field select,
.dd-form-field textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.dd-form-field input::placeholder,
.dd-form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.dd-form-field input:focus,
.dd-form-field select:focus,
.dd-form-field textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.1);
}

.dd-form-field select {
    cursor: pointer;
}

.dd-form-field select option {
    background: #1a1a1a;
    color: #ffffff;
}

.dd-btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4B0 100%);
    color: #1a1a1a;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.dd-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.dd-form-privacy {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.dd-footer-new {
    background: #0d0d0d;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.dd-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.dd-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dd-footer-logo-svg {
    width: 35px;
    height: 35px;
    color: #D4AF37;
}

.dd-footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 1px;
}

.dd-footer-tagline-new {
    font-size: 0.9rem;
    color: rgba(212, 175, 55, 0.7);
    font-style: italic;
    margin-bottom: 1rem;
}

.dd-footer-col h4 {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.dd-footer-col ul {
    list-style: none;
}

.dd-footer-col ul li {
    margin-bottom: 0.75rem;
}

.dd-footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dd-footer-col ul li a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

.dd-footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.dd-footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dd-footer-col a:hover {
    color: #D4AF37;
}

.dd-footer-disclaimer-new {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.dd-footer-disclaimer-new h4 {
    color: #D4AF37;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.dd-footer-disclaimer-new p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.dd-footer-bottom-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dd-footer-bottom-new p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.dd-footer-links-bottom {
    display: flex;
    gap: 2rem;
}

.dd-footer-links-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.dd-footer-links-bottom a:hover {
    color: #D4AF37;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.dd-scroll-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4B0 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.dd-scroll-btn.dd-scroll-visible {
    opacity: 1;
    visibility: visible;
}

.dd-scroll-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.dd-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.dd-modal-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dd-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4B0 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    font-weight: bold;
}

.dd-modal-content h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.dd-modal-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.dd-modal-sub {
    font-size: 1rem;
    color: #999;
    margin-bottom: 2rem;
}

.dd-modal-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4B0 100%);
    color: #1a1a1a;
    padding: 1rem 3rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dd-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .dd-hero-h1 {
        font-size: 2.75rem;
    }

    .dd-section-h2 {
        font-size: 2.25rem;
    }

    .dd-services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .dd-about-grid {
        gap: 3rem;
    }

    .dd-contact-grid {
        gap: 3rem;
    }

    .dd-contact-info-grid {
        grid-template-columns: 1fr;
    }

    .dd-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .dd-nav-hamburger {
        display: flex;
    }

    .dd-nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .dd-nav-links.dd-nav-open {
        transform: translateX(0);
    }

    .dd-nav-links li a {
        font-size: 1.25rem;
    }

    .dd-hero-h1 {
        font-size: 2.25rem;
    }

    .dd-hero-p {
        font-size: 1.1rem;
    }

    .dd-hero-actions {
        flex-direction: column;
    }

    .dd-btn-hero {
        width: 100%;
        justify-content: center;
    }

    .dd-hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .dd-section-container {
        padding: 4rem 1.5rem;
    }

    .dd-section-h2 {
        font-size: 2rem;
    }

    .dd-about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dd-about-image img {
        height: 400px;
    }

    .dd-services-grid-new {
        grid-template-columns: 1fr;
    }

    .dd-why-grid {
        grid-template-columns: 1fr;
    }

    .dd-faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dd-faq-left {
        position: static;
    }

    .dd-coverage-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dd-coverage-card {
        padding: 2rem;
    }

    .dd-contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dd-form-row {
        grid-template-columns: 1fr;
    }

    .dd-contact-form-new {
        padding: 2rem;
    }

    .dd-footer-grid {
        grid-template-columns: 1fr;
    }

    .dd-footer-bottom-new {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .dd-logo-brand {
        font-size: 1.1rem;
    }

    .dd-logo-svg {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    .dd-hero-h1 {
        font-size: 1.85rem;
    }

    .dd-hero-p {
        font-size: 1rem;
    }

    .dd-section-h2 {
        font-size: 1.75rem;
    }

    .dd-section-p {
        font-size: 1rem;
    }

    .dd-stat-number {
        font-size: 2rem;
    }

    .dd-modal-content {
        padding: 2rem;
    }

    .dd-modal-content h3 {
        font-size: 1.5rem;
    }
}
